:root {
    /* Premium Editorial Light Theme */
    --bg-main: #FAFAFA;
    --bg-darker: #FFFFFF;
    
    --text-pure: #111827;
    --text-muted: #6B7280;
    
    /* Original SORTED Amber */
    --accent-primary: #F59E0B;
    --accent-primary-hover: #D97706;
    --accent-glow: rgba(245, 158, 11, 0.15);
    
    --badge-premium: #10b981;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.05);
    
    /* Light Frosted Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.06);
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-main);
    color: var(--text-pure);
    font-family: var(--font-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
a { text-decoration: none; color: var(--text-pure); }

.mt-2 { margin-top: 12px; }
.mt-4 { margin-top: 24px; }
.text-accent { color: var(--accent-primary) !important; }
.border-y { border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.text-center { text-align: center; }

/* SVG Logo Styling */
.logo-link { display: flex; align-items: center; }
.logo-svg { width: 140px; height: 48px; display: block; }
@media (max-width: 768px) { .logo-svg { width: 110px; height: 38px; } }

/* Buttons */
.btn-primary {
    background-color: var(--accent-primary); color: #111827;
    padding: 14px 28px; border-radius: 8px; font-weight: 700; border: none;
    cursor: pointer; transition: var(--transition-smooth);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-primary:hover {
    background-color: var(--accent-primary-hover); transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--accent-glow); color: #FFFFFF !important;
}
.btn-secondary {
    background-color: transparent; color: var(--text-pure);
    padding: 14px 28px; border-radius: 8px; font-weight: 600;
    border: 1px solid var(--border-color); cursor: pointer;
    transition: var(--transition-smooth); display: inline-flex;
    align-items: center; justify-content: center; gap: 8px;
}
.btn-secondary:hover { border-color: var(--accent-primary); color: var(--accent-primary); }
.btn-text {
    background: none; border: none; color: var(--accent-primary);
    font-weight: 600; font-family: var(--font-main); font-size: 1rem;
    cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
    transition: var(--transition-smooth); white-space: nowrap !important;
}
.btn-text:hover { color: var(--text-pure); }
.btn-text i { transition: transform 0.3s ease; }
.btn-text:hover i { transform: translateX(5px); }
.btn-large { padding: 18px 36px; font-size: 1.1rem; }
.btn-block { display: flex; width: 100%; }
.btn-outline {
    background-color: transparent; color: var(--accent-primary);
    border: 1px solid var(--accent-primary); padding: 14px 28px;
    border-radius: 8px; font-weight: 600; cursor: pointer;
    transition: var(--transition-smooth); display: block;
}
.btn-outline:hover { background-color: var(--accent-primary); color: #FFFFFF; transform: translateY(-2px); }

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}
.glass-card {
    background: #FFFFFF;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}
@supports (backdrop-filter: blur(16px)) {
    .glass-card {
        background: var(--glass-bg);
        backdrop-filter: blur(16px);
    }
}
.glass-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    background: #FFFFFF;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}
.floating-anim:hover { animation: float 3s ease-in-out infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.pulse-anim { animation: pulse 2s infinite; }

/* Navigation */
.navbar { position: fixed; width: 100%; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a:not(.btn-primary) { font-weight: 600; color: #374151 !important; transition: var(--transition-smooth); font-size: 0.95rem; }
.nav-links a:not(.btn-primary):hover { color: var(--accent-primary) !important; }

/* Hero */
.hero { position: relative; padding-top: 180px; padding-bottom: 100px; min-height: 85vh; display: flex; align-items: center; overflow: hidden; }
.hero-glow { position: absolute; top: -20%; left: 10%; width: 60vw; height: 60vw; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%); z-index: -1; border-radius: 50%; }
.hero-content { max-width: 850px; position: relative; z-index: 1; }
.trust-badge { display: inline-block; padding: 8px 16px; border-radius: 30px !important; font-size: 0.9rem; font-weight: 600; margin-bottom: 24px; color: var(--accent-primary); }
.hero h1 { font-size: 4rem; margin-bottom: 24px; letter-spacing: -1.5px; line-height: 1.1; }
.hero h1 span { color: var(--accent-primary); }
.hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; font-weight: 300; }
.hero-actions { display: flex; gap: 20px; }

/* Area Banner */
.area-banner { padding: 20px 0; font-size: 1.05rem; border-radius: 0 !important; }

/* Sections */
.section { padding: 100px 0; }
.bg-darker { background-color: var(--bg-darker); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 650px; margin: 0 auto; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { padding: 40px 30px; }
.warranty-badge {
    position: absolute; top: 16px; right: 16px;
    background: rgba(16, 185, 129, 0.1); color: var(--badge-premium);
    border: 1px solid rgba(16, 185, 129, 0.3); padding: 4px 10px;
    border-radius: 20px; font-size: 0.75rem; font-weight: 700;
}
.icon-wrapper {
    width: 60px; height: 60px; background: rgba(245, 158, 11, 0.1);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px; transition: var(--transition-smooth);
}
.service-icon { font-size: 1.8rem; color: var(--accent-primary); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.service-card h3 { margin-bottom: 12px; font-size: 1.4rem; }
.service-snippet { color: var(--text-muted); margin-bottom: 24px; font-size: 0.95rem; }
.service-card:hover .icon-wrapper { background: var(--accent-primary); }
.service-card:hover .service-icon { color: #FFFFFF; transform: scale(1.15); }

/* Testimonial Grid */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.testimonial-card { padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.stars { color: var(--accent-primary); margin-bottom: 16px; font-size: 1.1rem; }
.review-text { font-size: 1.05rem; color: var(--text-pure); font-style: italic; margin-bottom: 20px; line-height: 1.6; flex-grow: 1; }
.reviewer-name { font-weight: 700; color: var(--text-muted); font-size: 0.9rem; }

/* Gallery Icons (RESTORED) */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 40px; }
.gallery-item { height: 260px; display: flex; align-items: center; justify-content: center; text-align: center; }
.icon-showcase { display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; height: 100%; justify-content: center; }
.cinematic-icon, .cinematic-icon-small { color: var(--text-pure); filter: grayscale(100%) opacity(0.25); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.cinematic-icon { font-size: 5rem; }
.showcase-content { opacity: 0.7; transition: all 0.5s ease; }
.showcase-content h4 { margin-top: 12px; font-size: 1.2rem; font-weight: 600; color: var(--text-pure); }
.badge { padding: 6px 14px; font-size: 0.75rem; font-weight: 700; color: #FFFFFF; border-radius: 6px; text-transform: uppercase; }
.badge-premium { background-color: var(--accent-primary); }
.gallery-item:hover .cinematic-icon, .founder-card:hover .cinematic-icon-small, .amc-card:hover .cinematic-icon-small {
    color: var(--accent-primary);
    filter: grayscale(0%) opacity(1) drop-shadow(0 6px 12px rgba(245, 158, 11, 0.25));
    transform: scale(1.1) translateY(-5px);
}
.gallery-item:hover .showcase-content { opacity: 1; transform: translateY(5px); }


/* Corporate AMC & Founder */
.about-amc-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.founder-card, .amc-card { padding: 40px; display: flex; flex-direction: column; }
.card-icon-header { display: flex; align-items: center; gap: 16px; border-bottom: 1px solid var(--border-light); padding-bottom: 20px; }
.cinematic-icon-small { font-size: 2rem; }
.card-icon-header h3 { font-size: 1.6rem; margin: 0; }
.founder-card p, .amc-card p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.6; }
.signature { margin-top: auto; padding-top: 24px; }
.font-bold { font-weight: 700; }
.block { display: block; }
.text-sm { font-size: 0.85rem; }
.amc-perks { list-style: none; margin-bottom: 24px; flex-grow: 1; }
.amc-perks li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; color: var(--text-muted); font-size: 0.95rem; }
.amc-perks i { color: var(--badge-premium); margin-top: 4px; }
.amc-perks strong { color: var(--text-pure); }

/* FAQ Section */
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { padding: 0; }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; padding: 24px;
    font-size: 1.1rem; font-weight: 600; color: var(--text-pure); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; font-family: var(--font-main);
}
.faq-question i { color: var(--accent-primary); transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; background: #F3F4F6; }
.faq-answer p { padding: 0 24px 24px; color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

/* Booking Section */
.booking-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.booking-content h2 { font-size: 3rem; margin-bottom: 20px; }
.booking-content p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; }
.booking-perks { list-style: none; }
.booking-perks li { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 1.05rem; font-weight: 500; }
.booking-perks i { color: var(--badge-premium); font-size: 1.2rem; }
.booking-form-container { padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-pure); font-weight: 600; }
input, select, textarea {
    width: 100%; background-color: #FFFFFF; border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-pure); padding: 14px 16px; border-radius: 10px; font-family: var(--font-main); font-size: 1rem;
    transition: var(--transition-smooth); box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.select-wrapper { position: relative; }
.select-wrapper::after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: #9CA3AF; pointer-events: none; transition: color 0.3s ease; }
select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.select-wrapper:focus-within::after { color: var(--accent-primary); }

/* Form Validation */
input:not(:placeholder-shown):invalid, textarea:not(:placeholder-shown):invalid { border-color: #ef4444; }
input:not(:placeholder-shown):valid, select:valid { border-color: #10b981; }
::placeholder { color: #9CA3AF; font-weight: 400; opacity: 1; }
select:invalid { color: #9CA3AF; }
select option { color: var(--text-pure); }
input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible { outline: 2px solid var(--accent-primary); outline-offset: 2px; }

/* Footer */
.footer { background-color: var(--bg-darker); padding: 60px 0 30px; border-top: 1px solid var(--border-light); }
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand p { color: var(--text-muted); margin-top: 16px; max-width: 400px; font-size: 1rem; }
.footer-areas { font-size: 0.9rem; font-weight: 600; }
.footer-contact h4 { margin-bottom: 20px; font-size: 1.2rem; }
.footer-contact p { color: #4B5563; margin-bottom: 12px; display: flex; gap: 12px; align-items: center; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border-light); color: var(--text-muted); font-size: 0.9rem; }

/* Modal */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); z-index: 2000; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.modal.show { display: flex; opacity: 1; }
.modal-content { background-color: #ffffff !important; padding: 30px; max-width: 500px; width: 92%; position: relative; transform: translateY(20px) scale(0.95); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
.modal.show .modal-content { transform: translateY(0) scale(1); }
.close-modal { position: absolute; top: 4px; right: 8px; padding: 12px; font-size: 24px; cursor: pointer; color: #111827 !important; transition: color 0.3s; background: none; border: none; }
.close-modal:hover { color: var(--accent-primary) !important; }
.modal-header h2 { color: var(--accent-primary); font-size: 1.8rem; margin-bottom: 12px; }
.modal-divider { height: 1px; background: var(--border-light); margin-bottom: 20px; }
.modal-section { margin-bottom: 20px; }
.modal-section h4 { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; color: #111827 !important; font-size: 1.05rem; }
.modal-section h4 i { color: var(--text-muted); font-size: 1rem; }
.modal-section p, #modalDesc, #modalProcess, #modalBenefits { color: #4B5563 !important; font-size: 0.95rem; line-height: 1.5; white-space: pre-line; }
.highlight-text { color: var(--badge-premium) !important; font-weight: 600; }

/* Mobile Floating Bar */
.float-wa-desktop { position: fixed; bottom: 30px; right: 30px; background-color: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; z-index: 100; transition: transform 0.3s; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
.float-wa-desktop:hover { transform: scale(1.1); }
.mobile-bottom-bar { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-top: 1px solid rgba(0, 0, 0, 0.08); z-index: 1500; }
.mobile-bottom-bar a { flex: 1; text-align: center; padding: 16px; font-weight: 700; font-size: 1rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-mobile-call { background-color: var(--accent-primary); color: #111827 !important; }
.btn-mobile-wa { background-color: #25D366; color: white !important; }

/* Responsive Mobile Layout (WITH HORIZONTAL SWIPE INCLUDED) */
@media (max-width: 992px) {
    .booking-wrapper, .about-amc-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .booking-content { text-align: center; }
    .booking-perks { display: inline-block; text-align: left; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-brand p { margin: 16px auto; }
    .footer-contact p { justify-content: center; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { padding-top: 120px; text-align: center; min-height: auto; }
    .hero h1 { font-size: 2.8rem; }
    .hero-actions { flex-direction: column; }
    .hero p { margin-left: auto; margin-right: auto; }
    .float-wa-desktop { display: none; }
    .mobile-bottom-bar { display: flex; }
    body { padding-bottom: 60px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .booking-form-container { padding: 24px; }
    .modal-content { padding: 24px 16px; }
    
    /* HORIZONTAL SWIPE LOGIC FOR SERVICES */
    .services-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hides scrollbar in Firefox */
        -ms-overflow-style: none; /* Hides scrollbar in IE/Edge */
    }
    
    /* Hides the scrollbar for Chrome/Safari/Opera for a cleaner look */
    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .services-grid > .service-card {
        min-width: 280px;
    }
}

/* PREMIUM MICRO-INTERACTIONS */
::selection { background-color: var(--accent-primary); color: #FFFFFF; }
::-moz-selection { background-color: var(--accent-primary); color: #FFFFFF; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-primary); }

