/* ========================================
   ARUNALAYA MARRIAGE HALL - PREMIUM CSS
   ======================================== */

/* ----- IMPORT GOOGLE FONTS ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,700&family=DM+Sans:wght@400;500;700&display=swap');

/* ----- ROOT VARIABLES ----- */
:root {
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --gold-dark: #a8872e;
    --cream: #fcf8f0;
    --charcoal: #1a1a1a;
    --warm-white: #fefcf7;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.12);
    --radius: 30px;
    --radius-sm: 16px;
    --transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
}

.cursor-dot.active {
    width: 16px;
    height: 16px;
    background: var(--gold-light);
}

.cursor-outline.active {
    width: 60px;
    height: 60px;
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

/* ===== LOADER ===== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(201, 168, 76, 0.1);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 4px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS PREMIUM ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.3);
}

.btn-white {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-white:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background: #1ebe5c;
    transform: translateY(-3px);
}
.btn-call {
    background: #34b7f1;
    color: #fff;
    box-shadow: 0 8px 30px rgba(52, 183, 241, 0.3);
}
.btn-call:hover {
    background: #1fa3da;
    transform: translateY(-3px);
}
.btn-sms {
    background: #ffb74d;
    color: #fff;
    box-shadow: 0 8px 30px rgba(255, 183, 77, 0.3);
}
.btn-sms:hover {
    background: #f5a623;
    transform: translateY(-3px);
}

/* ===== NAVIGATION PREMIUM ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    z-index: 999;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 252, 247, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.navbar.scrolled .logo {
    color: var(--charcoal);
}

.logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.5px;
}

.navbar.scrolled .nav-links a {
    color: var(--charcoal);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-links .nav-cta {
    background: var(--gold);
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 144px;
    padding: 12px 30px;
    border-radius: 60px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    text-align: center;
}

.nav-links .nav-cta::after {
    display: none;
}

.nav-links .nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.hamburger {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #fff;
    background: none;
    border: none;
}

.navbar.scrolled .hamburger {
    color: var(--charcoal);
}

/* ===== HERO SLIDER PREMIUM ===== */
.hero-slider {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
    text-align: center;
    color: #fff;
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-content .badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 20px;
    border-radius: 60px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(201, 168, 76, 0.2);
    margin-bottom: 20px;
}

.slide-content h1 {
    font-size: 4.8rem;
    line-height: 1.05;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.slide-content h1 span {
    color: var(--gold);
    position: relative;
}

.slide-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
    border-radius: 4px;
}

.slide-content .typing-text {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    font-weight: 300;
}

.slide-content .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: 30px; }
.slider-btn.next { right: 30px; }

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.slider-dots .dot.active {
    background: var(--gold);
    border-color: #fff;
    transform: scale(1.3);
}

.slider-dots .dot:hover {
    background: var(--gold-light);
}

/* ===== SECTION TITLES ===== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.section-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title span {
    color: var(--gold);
}

.section-sub {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
}

/* ===== ABOUT PREMIUM ===== */
.about-preview {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    z-index: -1;
}

.about-text h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.about-text p {
    color: #555;
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.about-stat h3 {
    font-size: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--gold);
}

.about-stat p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

/* ===== SERVICES PREMIUM ===== */
.services {
    padding: 100px 0;
    background: var(--cream);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .icon-wrapper {
    background: var(--gold);
    transform: rotate(360deg);
}

.service-card .icon-wrapper i {
    font-size: 2.2rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .icon-wrapper i {
    color: #fff;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== FACILITIES PREMIUM ===== */
.facilities {
    padding: 100px 0;
    background: #fff;
}

.facility-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.facility-item {
    padding: 35px 20px;
    border-radius: var(--radius-sm);
    background: var(--cream);
    transition: var(--transition);
    border: 1px solid transparent;
}

.facility-item:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.facility-item .icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.facility-item .icon-wrap i {
    font-size: 1.8rem;
    color: var(--gold);
}

.facility-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

/* ===== QR SECTION PREMIUM ===== */
.qr-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
}

.qr-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.qr-box {
    background: #fff;
    padding: 40px 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.qr-box img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 16px;
}

.qr-box .qr-label {
    margin-top: 12px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
}

/* ===== CONTACT PREMIUM ===== */
.contact-preview {
    padding: 100px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.contact-info .contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 16px 0;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.contact-info .contact-detail:hover {
    background: var(--cream);
}

.contact-info .contact-detail i {
    color: var(--gold);
    width: 24px;
    font-size: 1.2rem;
}

.contact-info .contact-detail a {
    color: var(--charcoal);
    text-decoration: none;
}

.contact-info .contact-detail a:hover {
    color: var(--gold);
}

/* ===== FOOTER PREMIUM ===== */
.footer-premium {
    background: var(--charcoal);
    color: #aaa;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer-logo span {
    color: var(--gold);
}

.footer-desc {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #aaa;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.6rem;
    color: var(--gold);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #888;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 3px;
    width: 18px;
}

.footer-contact a {
    color: #888;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: #fff;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-cta-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.footer-payment-icons {
    display: flex;
    gap: 14px;
    margin-top: 16px;
}

.footer-payment-icons i {
    font-size: 1.8rem;
    color: #555;
    transition: var(--transition);
}

.footer-payment-icons i:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.footer-bottom p strong {
    color: #fff;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

.footer-bottom-links .divider {
    color: #444;
}

/* ===== FLOATING BUTTONS ===== */
.float-buttons {
    position: fixed;
    bottom: 24px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 900;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.float-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: var(--transition);
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.whatsapp {
    background: #25d366;
}
.float-btn.call {
    background: #34b7f1;
}
.float-btn.sms {
    background: #ffb74d;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    left: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    background: var(--gold-dark);
}

/* ===== GLASS CARD ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* ===== FLOATING HEARTS ===== */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.heart {
    position: absolute;
    bottom: -60px;
    font-size: 1.2rem;
    opacity: 0;
    animation: floatHeart 6s ease-in infinite;
    color: var(--gold);
    filter: drop-shadow(0 0 4px rgba(201, 168, 76, 0.4));
}

@keyframes floatHeart {
    0%   { transform: translateY(0) scale(0.8); opacity: 0; }
    10%  { opacity: 0.7; }
    90%  { opacity: 0.2; }
    100% { transform: translateY(-110vh) scale(1.2) rotate(20deg); opacity: 0; }
}

/* ===== COUNTDOWN SECTION ===== */
.countdown-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, #2d1a0e 100%);
    position: relative;
    overflow: hidden;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.countdown-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-sm);
    padding: 32px 40px;
    text-align: center;
    min-width: 140px;
    transition: var(--transition);
}

.countdown-item:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    transform: translateY(-6px);
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
}

.countdown-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    font-weight: 500;
}

/* ===== PRICING PACKAGES ===== */
.pricing-section {
    padding: 100px 0;
    background: var(--cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 48px 36px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold-light);
}

.pricing-card.featured {
    background: linear-gradient(145deg, var(--charcoal) 0%, #2d2010 100%);
    border-color: var(--gold);
    transform: scale(1.04);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.pricing-badge {
    display: inline-block;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 60px;
    margin-bottom: 16px;
}

.pricing-card.featured .pricing-badge {
    background: rgba(201, 168, 76, 0.25);
}

.pricing-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.pricing-card.featured h3 {
    color: #fff;
}

.pricing-price {
    font-size: 2.6rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    color: var(--gold);
    margin-bottom: 28px;
    line-height: 1;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.75);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.pricing-features li i {
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 40px 32px;
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 8rem;
    font-family: 'Playfair Display', serif;
    color: rgba(201, 168, 76, 0.1);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.testimonial-stars {
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.testimonial-author h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: #999;
}

/* ===== OFFER BANNER ===== */
.offer-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    background-size: 200% 200%;
    animation: shimmerBg 4s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes shimmerBg {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.offer-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.offer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.offer-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 20px;
    border-radius: 60px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.offer-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.offer-content h2 span {
    background: rgba(255, 255, 255, 0.25);
    padding: 0 8px;
    border-radius: 6px;
}

.offer-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.offer-content p strong {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 10px;
    border-radius: 4px;
    color: #fff;
    font-family: 'Inter', monospace;
    letter-spacing: 2px;
}

.offer-content .btn-primary {
    background: #fff;
    color: var(--gold-dark);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.offer-content .btn-primary:hover {
    background: var(--charcoal);
    color: #fff;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: var(--cream);
}

.faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
    gap: 16px;
    user-select: none;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-question i {
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 22px;
}

.faq-answer p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .countdown-grid { gap: 16px; }
    .countdown-item { padding: 24px 28px; min-width: 120px; }
    .countdown-number { font-size: 3rem; }
    .offer-content h2 { font-size: 2.2rem; }
}
@media (max-width: 1024px) {
    .slide-content h1 { font-size: 3.6rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; text-align: center; }
    .about-stats { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-col:first-child { grid-column: 1 / -1; }
    .footer-desc { max-width: 100%; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 16px;
        background: rgba(255,252,247,0.98);
        backdrop-filter: blur(20px);
        position: absolute;
        top: 70px;
        left: 20px;
        right: 20px;
        padding: 30px;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow);
        border: 1px solid rgba(0,0,0,0.04);
    }
    .nav-links.open { display: flex; }
    .hamburger { display: block; }
    .navbar.scrolled .nav-links { background: rgba(255,252,247,0.98); }

    .slide-content h1 { font-size: 2.6rem; }
    .section-title { font-size: 2.2rem; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .footer-col:first-child { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .slider-btn { width: 40px; height: 40px; font-size: 1rem; }
    .slider-btn.prev { left: 12px; }
    .slider-btn.next { right: 12px; }
    .about-stats { grid-template-columns: repeat(3, 1fr); }

    .countdown-item { padding: 20px 24px; min-width: 100px; }
    .countdown-number { font-size: 2.4rem; }
    .pricing-grid { max-width: 100%; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .offer-content h2 { font-size: 1.8rem; }
    .faq-question { padding: 18px 20px; font-size: 0.95rem; }
    .faq-answer { padding: 0 20px; }
    .faq-item.active .faq-answer { padding: 0 20px 18px; }
}

@media (max-width: 480px) {
    .slide-content h1 { font-size: 2rem; }
    .slide-content .typing-text { font-size: 1rem; }
    .hero-slider { min-height: 500px; height: 80vh; }
    .service-grid { grid-template-columns: 1fr; }
    .float-buttons { right: 14px; bottom: 16px; gap: 8px; }
    .float-btn { width: 46px; height: 46px; font-size: 1.25rem; }
    .qr-box { padding: 20px; }
    .qr-box img { width: 150px; height: 150px; }
    .btn { padding: 12px 24px; font-size: 0.9rem; }
    .facility-list { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-premium { padding: 40px 0 0; }
    .footer-cta-btn { width: 100%; justify-content: center; }
    .back-to-top { bottom: 16px; left: 16px; width: 44px; height: 44px; font-size: 1rem; }
    .about-stats { grid-template-columns: 1fr 1fr; }

    .countdown-grid { gap: 10px; }
    .countdown-item { padding: 16px 18px; min-width: 80px; }
    .countdown-number { font-size: 2rem; }
    .countdown-label { font-size: 0.65rem; letter-spacing: 1px; }
    .countdown-section { padding: 70px 0; }
    .pricing-card { padding: 36px 24px; }
    .pricing-price { font-size: 2rem; }
    .testimonial-card { padding: 28px 20px; }
    .offer-banner { padding: 60px 0; }
    .offer-content h2 { font-size: 1.5rem; }
    .faq-section { padding: 70px 0; }
}