/* ==========================================================================
   Premium Stylesheet for Location Landing Pages (Kindle Womb)
   Uses variables from global.css
   ========================================================================== */

/* Base & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

main {
    background-color: var(--bg-pure-white, #FFFFFF);
    color: var(--color-dark-charcoal, #3A2E2F);
    font-family: var(--font-body, 'Lato', sans-serif);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading, 'Marcellus', serif);
    color: var(--color-primary-blue, #5A739C);
    margin-bottom: 20px;
    font-weight: 600;
}

h2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-golden-yellow, #F2B830);
    border-radius: 2px;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #4a4a4a;
}

a {
    color: var(--color-primary-blue, #5A739C);
    text-decoration: none;
    transition: var(--transition-main, all 0.3s ease);
}

a:hover {
    color: var(--color-warm-red, #A94E46);
}

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--bg-cream-soft, #F8F8F8);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(90, 115, 156, 0.05) 0%, rgba(245, 213, 193, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--color-primary-blue);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--color-dark-charcoal);
}

.hero-image img, .hero-image-full img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-soft, 0 8px 24px rgba(90, 115, 156, 0.15));
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-alt {
    text-align: center;
}

.hero-alt .container {
    grid-template-columns: 1fr;
    max-width: 900px;
}

.hero-text-center h1 {
    font-size: 3.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--color-warm-red, #A94E46);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(169, 78, 70, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--color-primary-blue, #5A739C);
    box-shadow: 0 6px 20px rgba(90, 115, 156, 0.4);
    transform: translateY(-2px);
    color: white;
}

/* Quick Answer Box */
.quick-answer-box, .highlight-box {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow-soft, 0 10px 30px rgba(0,0,0,0.05));
    border-left: 5px solid var(--color-golden-yellow, #F2B830);
    transition: transform 0.3s ease;
}

.quick-answer-box:hover, .highlight-box:hover {
    transform: translateY(-5px);
}

.quick-answer-box ul, .highlight-box ul, .feature-list {
    list-style: none;
}

.quick-answer-box li, .highlight-box li, .feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
    padding-left: 30px;
}

.quick-answer-box li:last-child, .highlight-box li:last-child, .feature-list li:last-child {
    border-bottom: none;
}

.quick-answer-box li::before, .highlight-box li::before, .feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-warm-red);
    position: absolute;
    left: 0;
    top: 14px;
}

/* Grid Layout */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.grid-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft, 0 5px 20px rgba(0,0,0,0.04));
    transition: all 0.3s ease;
    border-top: 4px solid var(--color-primary-blue);
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.grid-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-dark-charcoal);
}

/* Timeline */
.timeline-list {
    list-style: none;
    position: relative;
    padding-left: 20px;
    margin-top: 30px;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--color-light-peach, #F5D5C1);
}

.timeline-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
}

.timeline-list li::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-golden-yellow, #F2B830);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--color-light-peach);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: white;
    box-shadow: var(--shadow-soft, 0 5px 20px rgba(0,0,0,0.04));
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th {
    background: var(--color-primary-blue);
    color: white;
    padding: 20px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--color-dark-charcoal);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background-color: rgba(245, 213, 193, 0.1);
}

/* FAQs */
.faqs .faq-item {
    background: white;
    padding: 25px 30px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border-left: 4px solid var(--color-primary-blue);
    transition: all 0.3s ease;
}

.faqs .faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    transform: translateX(5px);
}

.faqs h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-dark-charcoal);
}

/* Medical Disclaimer & E-E-A-T */
.eeat-block {
    background: var(--color-light-grey);
    padding: 20px 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}

.eeat-block p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.disclaimer-text {
    padding: 20px;
    background: rgba(169, 78, 70, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--color-warm-red);
}

.disclaimer-text p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary-blue) 0%, #3a4b66 100%);
    color: white;
    padding: 100px 0;
}

.cta-section h2 {
    color: white;
}

.cta-section h2::after {
    background-color: var(--color-golden-yellow);
    left: 50%;
    transform: translateX(-50%);
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.cta-section .btn-primary {
    background-color: var(--color-golden-yellow);
    color: var(--color-dark-charcoal);
}

.cta-section .btn-primary:hover {
    background-color: white;
    color: var(--color-primary-blue);
}

/* Local Footer */
.location-footer {
    padding: 60px 24px;
    background-color: var(--color-dark-charcoal);
    color: white;
    border-top: 5px solid var(--color-golden-yellow);
}

.location-footer h3 {
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.location-footer h3::after {
    left: 50%;
    transform: translateX(-50%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    color: var(--color-golden-yellow);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .comparison-table {
        display: block;
        overflow-x: auto;
    }
}
