/* ============================================
   ANDIPATTI ADAIKALA MATHA CHURCH - PREMIUM DESIGN
   Perfect, Professional, Responsive
   ============================================ */

:root {
    --primary-blue: #1e3a5f;
    --accent-gold: #d4af37;
    --soft-white: #f5f3f0;
    --dark-text: #2c3e50;
    --light-text: #ffffff;
    --border-light: #e0ddd8;
    
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Lato', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--dark-text);
    background-color: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--primary-blue);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    text-align: justify;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: #e5c158;
}

:lang(ta), .tamil-text {
    font-family: 'Noto Sans Tamil', var(--font-sans);
    line-height: 1.9;
    word-spacing: 0.15em;
    letter-spacing: 0.02em;
}

/* PRELOADER */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--soft-white) 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.preloader-content {
    text-align: center;
}

.spinner {
    border: 5px solid rgba(212, 175, 55, 0.2);
    border-top: 5px solid var(--accent-gold);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader-content p {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0f2438 0%, #1e3a5f 100%);
    padding: 0.8rem 0;
    box-shadow: 0 6px 30px rgba(0,0,0,0.2);
    z-index: 1000;
    border-bottom: 3px solid var(--accent-gold);
}

/* Mobile menu overlay */
.nav-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.nav-menu.active::before {
    opacity: 1;
    pointer-events: auto;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 900;
    color: var(--light-text);
    transition: all var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
    box-shadow: 0 4px 16px rgba(212,175,55,0.4);
    transition: all var(--transition);
}

.logo:hover .logo-img {
    box-shadow: 0 8px 24px rgba(212,175,55,0.6);
    transform: scale(1.08);
}

.logo-text {
    font-family: var(--font-heading);
    color: var(--accent-gold);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--light-text);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--light-text);
    font-weight: 600;
    position: relative;
    transition: color var(--transition);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), #e5c158);
    transition: width var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.youtube-link {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    padding: 0.6rem 1.4rem;
    border-radius: 25px;
    color: white !important;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255,68,68,0.3);
    transition: all var(--transition);
}

.youtube-link:hover {
    background: linear-gradient(135deg, #ff6666 0%, #ff0000 100%);
    box-shadow: 0 6px 18px rgba(255,68,68,0.5);
    transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.3s ease-in-out;
    filter: brightness(0.7) saturate(1.2);
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(15,36,56,0.3) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light-text);
    padding: 0 2rem;
    animation: fadeInUp 1.2s ease-out;
    max-width: 900px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 8px 32px rgba(0,0,0,0.6);
    color: var(--light-text);
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.1;
    font-family: 'Cormorant Garamond', serif;
}

.hero-subtitle {
    font-family: var(--font-serif);
    color: var(--accent-gold);
    font-size: 2.4rem;
    margin-bottom: 1.8rem;
    text-align: center;
    font-weight: 500;
    text-shadow: 0 4px 16px rgba(0,0,0,0.5);
    letter-spacing: 2.5px;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
    color: rgba(255,255,255,0.98);
    text-shadow: 0 3px 12px rgba(0,0,0,0.5);
    letter-spacing: 0.8px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.4rem 3.5rem;
    font-size: 1.05rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 800;
    transition: all var(--transition);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    -webkit-tap-highlight-color: transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .btn:active {
        opacity: 1;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #e8b856 0%, #d4af37 50%, #c9a227 100%);
    color: var(--primary-blue);
    box-shadow: 0 12px 40px rgba(232,184,86,0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(232,184,86,0.6);
    background: linear-gradient(135deg, #f0c563 0%, #e8b856 50%, #d4af37 100%);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-gold);
    border: 3px solid var(--accent-gold);
    box-shadow: 0 8px 20px rgba(212,175,55,0.3);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(212,175,55,0.5);
}

.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(232,184,86,0.95) 0%, rgba(212,175,55,0.85) 100%);
    color: var(--primary-blue);
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 3;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    font-weight: 900;
}

.carousel-prev:hover, .carousel-next:hover {
    background: linear-gradient(135deg, #f0c563 0%, #e8b856 100%);
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 16px 50px rgba(232,184,86,0.7);
}

.carousel-prev { left: 30px; }
.carousel-next { right: 30px; }

/* SECTIONS */
.section {
    padding: 5.5rem 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.section-title {
    font-size: 3.2rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    position: relative;
    display: block;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
}

.title-underline {
    width: 140px;
    height: 6px;
    background: linear-gradient(90deg, #d4af37 0%, #1e3a5f 50%, #d4af37 100%);
    margin: 2rem auto 0;
    border-radius: 3px;
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

/* HISTORY SECTION */
.history-section {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 5.5rem 0;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.history-image img,
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.history-image:hover img,
.about-image:hover img {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.28);
}

.history-text h3,
.about-text h3 {
    color: var(--primary-blue);
    font-size: 2.4rem;
    margin-bottom: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
}

.history-text p,
.about-text p {
    color: var(--dark-text);
    margin-bottom: 1.8rem;
    line-height: 1.95;
    font-size: 1.08rem;
    letter-spacing: 0.3px;
}

/* ABOUT SECTION */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f5f0 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

/* SERVICES SECTION */
.services-section {
    background: linear-gradient(135deg, #0f2438 0%, #1e3a5f 50%, #0f2438 100%);
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232,184,86,0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.services-section .section-title {
    color: var(--light-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3.5rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 2.8rem;
    border-radius: 16px;
    border: 1.5px solid rgba(232,184,86,0.35);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232,184,86,0.12), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
    border-color: var(--accent-gold);
    transform: translateY(-18px) scale(1.03);
    box-shadow: 0 24px 60px rgba(232,184,86,0.35);
}

.service-icon {
    font-size: 4.5rem;
    margin-bottom: 1.8rem;
    transition: all 0.4s ease;
    z-index: 1;
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.25) rotate(8deg);
}

.service-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    font-size: 1.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 1;
    position: relative;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.service-time {
    font-weight: 800;
    color: rgba(255,255,255,0.98);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    z-index: 1;
    position: relative;
}

.service-desc {
    color: rgba(255,255,255,0.88);
    margin-bottom: 1.8rem;
    line-height: 1.85;
    font-size: 0.98rem;
    z-index: 1;
    position: relative;
}

.service-tamil {
    color: var(--accent-gold);
    font-style: italic;
    font-size: 0.92rem;
    opacity: 0.9;
    z-index: 1;
    position: relative;
}

/* GALLERY SECTION */
.gallery-section {
    background: linear-gradient(135deg, #f5f3f0 0%, #ffffff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    background: #e0ddd8;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.12) rotate(2deg);
}

.gallery-item:hover {
    box-shadow: 0 18px 50px rgba(0,0,0,0.28);
    transform: translateY(-8px);
}

/* LIGHTBOX */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.97);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalZoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2.5px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 2.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2001;
    font-weight: bold;
}

.modal-close:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.15) rotate(90deg);
}

/* CONTACT SECTION */
.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 6rem 0;
}

.contact-section .section-title {
    font-size: 3.2rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    min-height: 500px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* GOOGLE MAP */
.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
}

.contact-map iframe {
    border-radius: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 1.3rem;
    border: 2px solid #e8e5e0;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--dark-text);
    transition: all var(--transition);
    background: #fafaf8;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bbb;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 180px;
    font-family: var(--font-sans);
}

.contact-form button {
    margin-top: 0.5rem;
}

.info-item {
    background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0.02) 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    transition: all var(--transition);
}

.info-item:hover {
    background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.15);
}

.info-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
    font-family: 'Cormorant Garamond', serif;
}

.info-item p {
    color: var(--dark-text);
    margin: 0;
    line-height: 1.9;
    text-align: justify;
}

.info-item a {
    color: var(--accent-gold);
    font-weight: 800;
    transition: all var(--transition);
    display: inline-block;
}

.info-item a:hover {
    transform: translateX(5px);
    text-shadow: 0 2px 8px rgba(212,175,55,0.3);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.8rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f2438 100%);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    transition: all var(--transition);
    box-shadow: 0 8px 24px rgba(30,58,95,0.3);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    min-width: 140px;
    text-align: center;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c9a227 100%);
    color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(212,175,55,0.4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.3rem;
    border: 2px solid #e8e5e0;
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--dark-text);
    transition: all var(--transition);
    background: #fafaf8;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bbb;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
    transform: translateY(-2px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 180px;
    font-family: var(--font-sans);
}

.contact-form button {
    margin-top: 0.5rem;
}

/* FOOTER */
.footer {
    background: #1e3a5f;
    color: var(--light-text);
    padding: 3.5rem 0 2rem;
    border-top: 3px solid var(--accent-gold);
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md) 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Cormorant Garamond', serif;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
}

.footer-section a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: #f0c563;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.footer-section ul li a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f0c563;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212,175,55,0.2);
    color: rgba(255,255,255,0.7);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    text-align: center;
}

.footer-bottom a {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #f0c563;
}

/* SCROLL TO TOP */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c9a227 100%);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

.scroll-top::before {
    content: '↑';
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: linear-gradient(135deg, #f0c563 0%, var(--accent-gold) 100%);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 14px 40px rgba(212,175,55,0.6);
}

/* RESPONSIVE - TABLET (768px) */
@media (max-width: 768px) {
    :root {
        --spacing-2xl: 2.5rem;
        --spacing-xl: 2rem;
        --spacing-lg: 1.5rem;
    }
    
    h1 { font-size: 2.4rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.4rem; }
    
    .navbar {
        padding: 0.7rem 0;
    }
    
    .logo-img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border-width: 2px;
    }
    
    .logo-text {
        font-size: 1.35rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -50%;
        width: 50%;
        height: 100vh;
        background: linear-gradient(180deg, #1e3a5f 0%, #0f2438 100%);
        flex-direction: column;
        gap: 1.2rem;
        padding: 6rem 1.5rem 1.5rem;
        box-shadow: -8px 0 30px rgba(0,0,0,0.3);
        z-index: 999;
        border-left: 3px solid var(--accent-gold);
        display: flex;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        margin-top: 0;
        height: 85vh;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 1.1rem 1.5rem;
        font-size: 0.95rem;
        min-width: auto;
    }
    
    .carousel-prev, .carousel-next {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .carousel-prev { left: 15px; }
    .carousel-next { right: 15px; }
    
    .section {
        padding: 3.5rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .title-underline {
        width: 100px;
        height: 5px;
        margin: 1.2rem auto 0;
    }
    
    .history-content,
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
        min-height: auto;
    }
    
    .contact-map {
        height: 350px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 var(--spacing-md) 2rem;
    }
    
    .footer-section h4 {
        font-size: 1.05rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
}

/* RESPONSIVE - MOBILE (480px) */
@media (max-width: 480px) {
    :root {
        --spacing-2xl: 1.5rem;
        --spacing-xl: 1.5rem;
        --spacing-lg: 1rem;
        --spacing-md: 0.75rem;
    }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    p { font-size: 0.9rem; }
    
    .navbar {
        padding: 0.6rem 0;
        border-bottom-width: 2px;
    }
    
    .logo-img {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 2px solid var(--accent-gold);
    }
    
    .logo-text {
        font-size: 1.1rem;
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .hero {
        margin-top: 0;
        height: 75vh;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
        min-height: 42px;
        min-width: 140px;
    }
    
    .carousel-prev, .carousel-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .carousel-prev { left: 8px; }
    .carousel-next { right: 8px; }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .title-underline {
        width: 80px;
        height: 4px;
        margin: 1rem auto 0;
    }
    
    .history-content,
    .about-content,
    .contact-wrapper {
        gap: 1.8rem;
    }
    
    .history-text h3,
    .about-text h3 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .service-card {
        padding: 1.8rem;
    }
    
    .service-icon {
        font-size: 3.2rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .gallery-item {
        border-radius: 8px;
    }
    
    .modal-close {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .contact-wrapper {
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-map {
        height: 300px;
    }
    }
    
    .info-item {
        padding: 1.5rem;
    }
    
    .info-item h3 {
        font-size: 1.3rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        padding: 0.85rem 1.5rem;
        font-size: 0.8rem;
        min-width: 120px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .contact-form textarea {
        min-height: 150px;
    }
    
    .footer-content {
        gap: 1.5rem;
        padding: 0 var(--spacing-md) 1.5rem;
        grid-template-columns: 1fr;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 1rem;
    }
    
    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.4rem;
    }
}


/* ============================================
   HISTORY PAGE STYLES
   ============================================ */

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, #0f2438 0%, #1e3a5f 50%, #0f2438 100%);
    color: var(--light-text);
    padding: 8rem 0 6rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232,184,86,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--light-text);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-shadow: 0 8px 32px rgba(0,0,0,0.4);
    font-family: 'Cormorant Garamond', serif;
}

.page-header p {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-style: italic;
    text-shadow: 0 4px 16px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

/* HISTORY FULL CONTENT */
.history-full {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    padding: 5.5rem 0;
}

.history-full-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 var(--spacing-md);
}

.history-block {
    background: white;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-left: 5px solid var(--accent-gold);
    transition: all 0.4s ease;
}

.history-block:hover {
    box-shadow: 0 18px 60px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.history-block h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.history-block h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-family: 'Cormorant Garamond', serif;
}

.history-block h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Cormorant Garamond', serif;
}

.history-block p {
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.95;
    font-size: 1.05rem;
    text-align: justify;
}

.history-block strong {
    color: var(--primary-blue);
    font-weight: 800;
}

/* MIRACULOUS OIL CONTENT */
.miraculous-oil-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.oil-text h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.oil-text h4 {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.oil-text p {
    color: var(--dark-text);
    margin-bottom: 1.3rem;
    line-height: 1.9;
    font-size: 1.05rem;
    text-align: justify;
}

.oil-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    transition: all 0.5s ease;
}

.oil-image:hover img {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 28px 80px rgba(0,0,0,0.25);
}

/* OIL TIMELINE */
.oil-timeline {
    background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0.02) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    margin-top: 3rem;
}

.oil-timeline h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-transform: capitalize;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.oil-timeline ul {
    list-style: none;
    padding: 0;
}

.oil-timeline li {
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: white;
    border-left: 3px solid var(--accent-gold);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.oil-timeline li:hover {
    background: linear-gradient(135deg, rgba(212,175,55,0.05), white);
    transform: translateX(8px);
}

.oil-timeline li strong {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.3rem;
}

/* MIRACLE STATS */
.miracle-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #c9a227 100%);
    color: var(--primary-blue);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(232,184,86,0.3);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 60px rgba(232,184,86,0.5);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stat-label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.8px;
}

/* FEAST SECTION */
.feast-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f3f0 100%);
    padding: 5.5rem 0;
}

.feast-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0 var(--spacing-md);
}

.feast-content p {
    color: var(--dark-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.feast-content h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin: 2.5rem 0 2rem;
    text-align: center;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.feast-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.feast-item {
    background: white;
    padding: 2.2rem;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    border-top: 4px solid var(--accent-gold);
    transition: all 0.4s ease;
}

.feast-item:hover {
    box-shadow: 0 16px 50px rgba(0,0,0,0.15);
    transform: translateY(-8px);
}

.feast-item h4 {
    color: var(--accent-gold);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}
}

.feast-item p {
    color: var(--dark-text);
    font-size: 0.98rem;
    line-height: 1.8;
    text-align: left;
}

/* LEGACY SECTION */
.legacy-section {
    background: linear-gradient(135deg, #f5f3f0 0%, #ffffff 100%);
    padding: 5.5rem 0;
}

.legacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.legacy-card {
    background: white;
    padding: 2.8rem;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-left: 5px solid var(--accent-gold);
    transition: all 0.4s ease;
    text-align: left;
}

.legacy-card:hover {
    box-shadow: 0 18px 60px rgba(0,0,0,0.15);
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(212,175,55,0.02), white);
}

.legacy-card h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.legacy-card p {
    color: var(--dark-text);
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0f2438 50%, var(--primary-blue) 100%);
    color: var(--light-text);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232,184,86,0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.2rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE - TABLET (768px)
   ============================================ */

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .page-header {
        padding: 5rem 0 4rem;
        margin-top: 65px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .history-block {
        padding: 2rem;
        margin-bottom: 2.5rem;
        border-left-width: 4px;
    }
    
    .history-block h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .history-block h3 {
        font-size: 1.3rem;
    }
    
    .miraculous-oil-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .feast-details {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .feast-item {
        padding: 1.8rem;
    }
    
    .legacy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .legacy-card {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        gap: 1.2rem;
    }
    
    .stat-card {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (480px)
   ============================================ */

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .page-header {
        padding: 3.5rem 0 2.5rem;
        margin-top: 60px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }
    
    .page-header p {
        font-size: 0.95rem;
    }
    
    .history-full {
        padding: 2.5rem 0;
    }
    
    .history-block {
        padding: 1.5rem;
        margin-bottom: 1.8rem;
        border-radius: 8px;
    }
    
    .history-block h2 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .history-block h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .history-block h4 {
        font-size: 1rem;
    }
    
    .history-block p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    }
    
    .miraculous-oil-content {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .oil-text h3 {
        font-size: 1.3rem;
    }
    
    .oil-text h4 {
        font-size: 1.05rem;
        margin-top: 1.5rem;
    }
    
    .oil-text p {
        font-size: 0.95rem;
    }
    
    .oil-timeline {
        padding: 1.5rem;
    }
    
    .oil-timeline h4 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .oil-timeline li {
        padding: 1rem;
        margin-bottom: 0.8rem;
        font-size: 0.9rem;
    }
    
    .miracle-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        margin: 2rem 0;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .feast-section {
        padding: 2.5rem 0;
    }
    
    .feast-content h3 {
        font-size: 1.4rem;
        margin: 1.8rem 0 1.5rem;
    }
    
    .feast-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .feast-item {
        padding: 1.5rem;
        border-top-width: 3px;
        border-radius: 8px;
    }
    
    .feast-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
    }
    
    .feast-item p {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .legacy-section {
        padding: 2.5rem 0;
    }
    
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .legacy-card {
        padding: 1.8rem;
        border-left-width: 4px;
    }
    
    .legacy-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .legacy-card p {
        font-size: 0.9rem;
    }
    
    .cta-section {
        padding: 3.5rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
    }
    
    .cta-buttons {
        gap: 0.8rem;
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
}
