/* =================================================================
   Amharic Bible App Website - Styles
   ================================================================= */

/* ------------------------------------------------------------------
   Global Reset & Custom Theme Variables
------------------------------------------------------------------ */
:root {
    --clr-primary: #D4AF37;      /* Rich gold for accents */
    --clr-primary-dark: #B8860B; /* Darker gold */
    --clr-primary-light: #F4E4BC; /* Light gold */
    --clr-bg: #0F0F0F;          /* Deep black background */
    --clr-surface: #1A1A1A;     /* Dark surface for cards */
    --clr-surface-light: #2A2A2A; /* Lighter dark surface */
    --clr-text: #F5F5F5;        /* Light text */
    --clr-muted: #B0B0B0;       /* Muted text */
    --clr-accent: #FFD700;      /* Bright gold accent */
    --radius: 1rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.3);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.4);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Light Mode Variables */
[data-theme="light"] {
    --clr-bg: #FFFFFF;          /* White background */
    --clr-surface: #F8F9FA;     /* Light surface for cards */
    --clr-surface-light: #E9ECEF; /* Lighter surface */
    --clr-text: #212529;        /* Dark text */
    --clr-muted: #6C757D;       /* Muted text */
    --shadow-sm: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* Light Mode Specific Styles */
[data-theme="light"] header {
    background: rgba(255,255,255,.9);
    border-bottom: 1px solid var(--clr-primary);
}

[data-theme="light"] .logo {
    color: var(--clr-text);
}

[data-theme="light"] .nav-menu a {
    color: var(--clr-muted);
}

[data-theme="light"] .nav-menu a:hover,
[data-theme="light"] .nav-menu a.active {
    color: var(--clr-text);
}

[data-theme="light"] #hero {
    background-image: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 10%, rgba(255,255,255,0.1) 100%), url('hero2.jpg');
}

[data-theme="light"] .cursor-trail {
    background: var(--clr-primary);
    box-shadow: 0 0 15px var(--clr-primary);
}

*, *::before, *::after { 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body, html { 
    margin: 0; 
    padding: 0; 
    font-family: 'Inter', sans-serif; 
    background: var(--clr-bg); 
    color: var(--clr-text); 
    line-height: 1.6; 
    overflow-x: hidden; 
}

a { 
    color: var(--clr-primary); 
    text-decoration: none; 
    transition: var(--transition); 
}

a:hover { 
    color: #fff; 
}

img { 
    max-width: 100%; 
    display: block; 
}

h1, h2, h3, h4 { 
    font-family: 'Playfair Display', serif; 
    margin: 0 0 .5rem; 
}

button, .btn {
    cursor: pointer; 
    border: none; 
    border-radius: .5rem; 
    padding: .75rem 1.5rem;
    background: var(--clr-primary); 
    color: #fff; 
    font-weight: 600;
    transition: var(--transition); 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem;
}

button:hover, .btn:hover { 
    background: var(--clr-primary-dark); 
    transform: translateY(-2px); 
}

/* ------------------------------------------------------------------
   Store Buttons (Google Play & App Store)
------------------------------------------------------------------ */
.store-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 180px;
    height: 60px;
    position: relative;
    overflow: hidden;
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.store-button-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.store-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-icon svg {
    width: 28px;
    height: 28px;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.store-subtitle {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    margin-bottom: 2px;
}

.store-title {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Google Play Store Button */
.google-play {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    border: 1px solid #333;
}

.google-play:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    border-color: var(--clr-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.3);
}

.google-play .store-icon {
    color: #ffffff;
}

/* App Store Button */
.app-store {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    border: 1px solid #333;
}

.app-store:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    border-color: var(--clr-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.3);
}

.app-store .store-icon {
    color: #ffffff;
}

/* Light mode adjustments for store buttons */
[data-theme="light"] .google-play,
[data-theme="light"] .app-store {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    border: 1px solid #333;
}

[data-theme="light"] .google-play:hover,
[data-theme="light"] .app-store:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-color: var(--clr-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Responsive adjustments for store buttons */
@media (max-width: 768px) {
    .store-button {
        min-width: 160px;
        height: 55px;
        padding: 10px 16px;
    }
    
    .store-icon {
        width: 24px;
        height: 24px;
    }
    
    .store-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .store-subtitle {
        font-size: 10px;
    }
    
    .store-title {
        font-size: 16px;
    }
}

/* ------------------------------------------------------------------
   Layout Containers & Section Title
------------------------------------------------------------------ */
.container { 
    width: 90%; 
    max-width: 1240px; 
    margin: auto; 
}

section { 
    padding: 6rem 0; 
}

.section-title { 
    font-size: 2.5rem; 
    text-align: center; 
    margin-bottom: 3rem; 
    position: relative; 
}

.section-title::after { 
    content: ''; 
    width: 80px; 
    height: 4px; 
    background: var(--clr-primary); 
    position: absolute; 
    bottom: -1rem; 
    left: 50%; 
    transform: translateX(-50%); 
}

/* ------------------------------------------------------------------
   Header / Navigation
------------------------------------------------------------------ */
header {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 999;
    background: rgba(15,15,15,.9); 
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clr-primary);
    transition: var(--transition);
}

header.scrolled { 
    box-shadow: var(--shadow-sm); 
}

.nav-wrapper { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 1rem 0; 
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: #fff; 
}

.nav-menu { 
    display: flex; 
    gap: 2rem; 
}

.nav-menu a { 
    color: var(--clr-muted); 
    font-weight: 500; 
    position: relative; 
}

.nav-menu a::after { 
    content: ''; 
    position: absolute; 
    bottom: -4px; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: var(--clr-primary); 
    transition: var(--transition); 
}

.nav-menu a:hover, .nav-menu a.active { 
    color: #fff; 
}

.nav-menu a:hover::after, .nav-menu a.active::after { 
    width: 100%; 
}

.mobile-toggle { 
    display: none; 
    cursor: pointer; 
}

/* Theme Toggle Button */
.theme-toggle {
    position: relative;
    width: 50px;
    height: 25px;
    background: var(--clr-surface);
    border: 2px solid var(--clr-primary);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px;
}

.theme-toggle:hover {
    box-shadow: var(--shadow-gold);
    border-color: var(--clr-accent);
}

.theme-toggle .sun-icon,
.theme-toggle .moon-icon {
    width: 18px;
    height: 18px;
    color: var(--clr-primary);
    transition: var(--transition);
}

.theme-toggle .sun-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.theme-toggle .moon-icon {
    opacity: 0;
    transform: rotate(180deg);
    position: absolute;
    right: 2px;
}

[data-theme="light"] .theme-toggle .sun-icon {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="light"] .theme-toggle .moon-icon {
    opacity: 1;
    transform: rotate(0deg);
}

@media (max-width: 992px) {
    .nav-menu { 
        position: fixed; 
        top: 0; 
        right: -100%; 
        width: 280px; 
        height: 100vh; 
        background: var(--clr-surface); 
        flex-direction: column; 
        padding: 5rem 2rem; 
        transition: right .4s ease; 
    }
    .nav-menu.active { 
        right: 0; 
    }
    .mobile-toggle { 
        display: block; 
    }
    
    .theme-toggle {
        width: 45px;
        height: 22px;
    }
    
    .theme-toggle .sun-icon,
    .theme-toggle .moon-icon {
        width: 16px;
        height: 16px;
    }
}

/* ------------------------------------------------------------------
   Hero Section
------------------------------------------------------------------ */
#hero {
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: flex-start;
    position: relative; 
    overflow: hidden;
    background-image: linear-gradient(135deg, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.4) 20%, rgba(15,15,15,0.1) 100%), url('hero2.jpg');
    background-size: cover;
    background-position: center;
    padding-left: 122rem;
}

.hero-content { 
    position: relative; 
    z-index: 10; 
    max-width: 800px; 
    background: rgba(0,0,0,0.3);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin-left: auto;
    margin-right: auto;
}

/* Desktop specific positioning */
@media (min-width: 993px) {
    .hero-content {
        margin-left: -300px;
        margin-right: auto;
    }
}

[data-theme="light"] .hero-content {
    background: rgba(255,255,255,0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-greeting { 
    font-size: 1.2rem; 
    color: var(--clr-primary); 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-name { 
    font-size: clamp(2.5rem, 8vw, 5rem); 
    margin: .5rem 0; 
    color: #fff; 
    text-shadow: 0 4px 8px rgba(0,0,0,0.7);
    font-weight: 700;
}

.hero-typed { 
    font-size: 1.8rem; 
    color: var(--clr-accent); 
    min-height: 2.2rem; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-weight: 600;
}

.hero-desc { 
    font-size: 1.1rem; 
    margin: 1.5rem 0; 
    max-width: 600px; 
    color: #fff; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.7;
}

.hero-cta { 
    display: flex; 
    gap: 1rem; 
    flex-wrap: wrap; 
    margin-top: 2rem; 
}

.cursor-trail { 
    position: fixed; 
    width: 20px; 
    height: 20px; 
    background: var(--clr-accent); 
    border-radius: 50%; 
    pointer-events: none; 
    transform: translate(-50%, -50%); 
    mix-blend-mode: difference; 
    z-index: 9999; 
    opacity: .8; 
    transition: transform .1s; 
    box-shadow: 0 0 20px var(--clr-primary);
}

/* Mobile Responsive Styles for Hero Section */
@media (max-width: 992px) {
    #hero {
        background-position: center center;
        background-size: cover;
        padding: 2rem 1rem;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }
    
    .hero-content {
        margin: 0 auto;
        max-width: 95%;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .hero-name {
        font-size: clamp(2.2rem, 7vw, 3.5rem);
    }
    
    .hero-typed {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }
    
    .hero-desc {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
        gap: 0.8rem;
    }
}

@media (max-width: 768px) { 
    #hero { 
        background-position: center center; 
        background-size: cover;
        background-attachment: scroll; /* Fix for mobile Safari */
        padding: 1.5rem 1rem;
        min-height: 100vh;
    } 
    
    .hero-content {
        padding: 1.5rem;
        margin: 0;
        max-width: 100%;
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(8px);
    }
    
    .hero-name { 
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.1;
    }
    
    .hero-typed {
        font-size: clamp(1rem, 5vw, 1.4rem);
        min-height: 1.8rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 1rem 0;
    }
    
    .hero-greeting {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    #hero {
        background-position: center center;
        background-size: cover;
        padding: 1rem 0.5rem;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 1.2rem;
        border-radius: 15px;
        max-width: 95%;
        margin: 0 auto;
    }
    
    .hero-name {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
        margin: 0.3rem 0;
    }
    
    .hero-typed {
        font-size: clamp(0.9rem, 6vw, 1.2rem);
        min-height: 1.5rem;
    }
    
    .hero-desc {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0.8rem 0;
    }
    
    .hero-greeting {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .hero-cta {
        margin-top: 1.2rem;
    }
}

/* ------------------------------------------------------------------
   About Section
------------------------------------------------------------------ */
#about .about-grid { 
    display: grid; 
    grid-template-columns: 1fr 2fr; 
    gap: 3rem; 
    align-items: center; 
}

#about .about-img { 
    border-radius: var(--radius); 
    overflow: hidden; 
    box-shadow: var(--shadow-md); 
}

#about .about-img img { 
    border-radius: var(--radius); 
}

#about .about-info h3 { 
    font-size: 1.8rem; 
    margin-bottom: 1rem; 
}

@media (max-width: 768px) { 
    #about .about-grid { 
        grid-template-columns: 1fr; 
    } 
}

/* ------------------------------------------------------------------
   Features Section
------------------------------------------------------------------ */
#features { 
    background: var(--clr-surface); 
}

.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem; 
}

.feature-card { 
    background: var(--clr-surface); 
    padding: 2rem; 
    border-radius: var(--radius); 
    text-align: center; 
    transition: var(--transition);
    border: 1px solid var(--clr-primary);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--clr-primary), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--shadow-gold);
    border-color: var(--clr-accent);
}

.feature-icon { 
    color: var(--clr-primary); 
    margin-bottom: 1rem; 
}

.feature-card h3 { 
    font-size: 1.25rem; 
}

/* ------------------------------------------------------------------
   Screenshots Section - Google Play Store Style
------------------------------------------------------------------ */
#screenshots { 
    background: var(--clr-surface); 
}

.screenshots-intro { 
    text-align: center; 
    max-width: 600px; 
    margin: 0 auto 3rem; 
    color: var(--clr-muted); 
    font-size: 1.1rem; 
}

/* Carousel Container */
.screenshot-carousel {
    position: relative;
    max-width: 100%;
    margin: 3rem auto;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dark) 50%, #000 100%);
    padding: 2rem;
    box-shadow: var(--shadow-gold);
    border: 2px solid var(--clr-primary);
}

.screenshot-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    padding: 1rem 0;
}

.screenshot-slide {
    flex: 0 0 auto;
    width: 250px;
    display: flex;
    justify-content: center;
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    width: 200px;
    height: 400px;
    background: linear-gradient(145deg, #1a1a1a, #000);
    border-radius: 25px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px var(--clr-primary);
    transition: transform 0.3s ease;
    border: 2px solid var(--clr-primary);
}

.phone-mockup:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.6), 0 0 30px var(--clr-primary);
}

.phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--clr-primary);
}

/* Navigation Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255,255,255,0.6);
}

/* Navigation Arrows */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--clr-primary);
    border: 2px solid var(--clr-primary-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #000;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-gold);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-prev:hover, .carousel-next:hover {
    background: var(--clr-accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 25px var(--clr-primary);
}

/* Feature Highlights */
.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--clr-surface);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid var(--clr-primary);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--clr-accent);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    color: var(--clr-text);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.highlight-item p {
    color: var(--clr-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .screenshot-carousel {
        padding: 1rem;
    }
    
    .screenshot-slide {
        width: 200px;
    }
    
    .phone-mockup {
        width: 160px;
        height: 320px;
    }
    
    .carousel-prev, .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

/* ------------------------------------------------------------------
   Video Section
------------------------------------------------------------------ */
.video-wrapper { 
    position: relative; 
    padding-bottom: 56.25%; /* 16:9 aspect ratio */ 
    height: 0; 
    overflow: hidden; 
    max-width: 100%; 
    background: #000; 
    border-radius: var(--radius); 
    box-shadow: var(--shadow-md); 
}

.video-wrapper iframe { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    border: 0; 
}

/* ------------------------------------------------------------------
   Stats Section
------------------------------------------------------------------ */
#stats { 
    background: var(--clr-bg); 
}

.stats-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 2rem; 
    margin-top: 3rem; 
}

.stat-item { 
    text-align: center; 
    padding: 2rem 1rem; 
}

.stat-number { 
    font-size: 3rem; 
    font-weight: 700; 
    color: var(--clr-primary); 
    margin-bottom: 0.5rem; 
    font-family: 'Playfair Display', serif; 
}

.stat-label { 
    font-size: 1.1rem; 
    color: var(--clr-muted); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

/* ------------------------------------------------------------------
   Reviews Section
------------------------------------------------------------------ */
#reviews { 
    background: var(--clr-surface); 
}

.reviews-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 2rem; 
    margin-top: 3rem; 
}

.review-card { 
    background: var(--clr-surface); 
    padding: 2rem; 
    border-radius: var(--radius); 
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--clr-primary);
}

.review-card:hover { 
    transform: translateY(-5px); 
    box-shadow: var(--shadow-gold);
    border-color: var(--clr-accent);
}

.review-rating { 
    color: var(--clr-accent); 
    font-size: 1.2rem; 
    margin-bottom: 1rem; 
    text-shadow: 0 0 10px var(--clr-primary);
}

.review-text { 
    font-style: italic; 
    line-height: 1.7; 
    margin-bottom: 1.5rem; 
    color: var(--clr-text);
    position: relative;
}

.review-text::before { 
    content: '"'; 
    font-size: 3rem; 
    color: var(--clr-primary); 
    position: absolute; 
    top: -10px; 
    left: -10px; 
    font-family: 'Playfair Display', serif;
}

.review-author { 
    display: flex; 
    flex-direction: column; 
    gap: 0.25rem; 
}

.review-author strong { 
    color: var(--clr-primary); 
    font-size: 1rem; 
}

.review-author span { 
    color: var(--clr-muted); 
    font-size: 0.9rem; 
}

.reviews-cta { 
    text-align: center; 
    margin-top: 3rem; 
}

/* ------------------------------------------------------------------
   Contact Section
------------------------------------------------------------------ */
#contact .contact-grid { 
    text-align: center; 
}

#contact p { 
    max-width: 600px; 
    margin: 0 auto 2rem auto; 
}

/* ------------------------------------------------------------------
   Footer
------------------------------------------------------------------ */
footer { 
    background: var(--clr-bg); 
    padding: 2rem 0; 
    text-align: center; 
    font-size: .9rem; 
    color: var(--clr-muted); 
    border-top: 1px solid var(--clr-surface); 
}

.social-links a { 
    margin: 0 .5rem; 
    color: var(--clr-muted); 
    font-size: 1.2rem; 
    transition: var(--transition); 
}

.social-links a:hover { 
    color: var(--clr-primary); 
}

/* ------------------------------------------------------------------
   Loading State & Accessibility
------------------------------------------------------------------ */
.loading { 
    opacity: 0; 
    transition: opacity 0.3s ease; 
}

.loaded { 
    opacity: 1; 
}

/* Focus states for accessibility */
a:focus, button:focus { 
    outline: 2px solid var(--clr-primary); 
    outline-offset: 2px; 
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--clr-primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus { 
    top: 6px; 
}
