/**
 * Standard Air Conditioners
 * Ultra-Modern Luxury Premium Styles
 * Version 2.0
 */

/* ============================================
   CSS CUSTOM PROPERTIES
============================================ */
:root {
    /* Premium Color Palette */
    --navy: #0a1628;
    --navy-light: #132038;
    --navy-dark: #060d17;
    --royal: #1e40af;
    --royal-light: #3b82f6;
    --royal-dark: #1e3a8a;
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --gold: #f59e0b;
    --white: #ffffff;
    --light: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --success: #10b981;
    --whatsapp: #25D366;
    
    /* Premium Gradients */
    --gradient-royal: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    --gradient-dark: linear-gradient(135deg, #0a1628 0%, #132038 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Inter', 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing */
    --section-py: 100px;
    --section-py-sm: 60px;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 40px rgba(59,130,246,0.3);
    --shadow-glow-accent: 0 0 40px rgba(6,182,212,0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE STYLES
============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

body.luxury-theme {
    background: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

/* ============================================
   PRELOADER
============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    font-size: 4rem;
    color: var(--royal-light);
    margin-bottom: 1rem;
}

.preloader-text {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* ============================================
   TOP BAR
============================================ */
.top-bar {
    background: var(--gradient-dark);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.top-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    transition: var(--transition-fast);
}

.top-link:hover {
    color: var(--accent-light);
}

.top-link i {
    color: var(--accent);
    font-size: 12px;
}

.top-bar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 13px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--royal-light);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link.whatsapp:hover { background: var(--whatsapp); }
.social-link.google:hover { background: #ea4335; }

/* ============================================
   MAIN HEADER
============================================ */
.main-header {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.main-header.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: var(--shadow-lg);
}

.main-header .navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-text i {
    color: var(--accent);
    font-size: 1.5rem;
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px !important;
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
    background: rgba(255,255,255,0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--accent);
    border-radius: var(--radius-full);
}

/* Mega Menu */
.mega-dropdown {
    position: static;
}

.mega-menu {
    width: 100%;
    left: 0;
    padding: 30px;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.mega-title {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    padding: 8px 0;
    font-size: 14px;
    transition: var(--transition-fast);
}

.mega-link:hover {
    color: var(--white);
    padding-left: 5px;
}

.mega-link i {
    width: 20px;
    color: var(--royal-light);
}

.mega-cta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Header CTA */
.header-cta {
    display: flex;
    gap: 10px;
    margin-left: 30px;
}

.btn-call {
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
}

.btn-call:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

.btn-call i {
    margin-right: 8px;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    border: none;
}

.btn-whatsapp:hover {
    background: #22c55e;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.toggler-icon span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ============================================
   MOBILE MENU
============================================ */
.mobile-menu {
    background: var(--navy);
    border-left: 1px solid rgba(255,255,255,0.1);
    width: 320px;
}

.mobile-menu .offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.mobile-logo i {
    color: var(--accent);
}

.mobile-menu .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.mobile-nav {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    margin-bottom: 5px;
}

.mobile-nav > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mobile-nav > li > a:hover,
.mobile-nav > li > a.active {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.mobile-nav > li > a i {
    width: 20px;
    color: var(--accent);
}

.has-submenu .submenu {
    list-style: none;
    padding: 10px 0 10px 35px;
    display: none;
}

.has-submenu.open .submenu {
    display: block;
}

.submenu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.submenu li a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
}

.submenu li a i {
    font-size: 12px;
    color: var(--royal-light);
}

.mobile-cta {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-contact {
    padding: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.mobile-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.mobile-contact i {
    color: var(--accent);
    margin-top: 3px;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: var(--transition);
}

.mobile-social a:hover {
    background: var(--royal-light);
    transform: translateY(-3px);
}

/* ============================================
   BUTTONS
============================================ */
.btn {
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-gradient {
    background: var(--gradient-royal);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30, 64, 175, 0.4);
    color: var(--white);
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid var(--royal-light);
    color: var(--royal-light);
}

.btn-outline-gradient:hover {
    background: var(--gradient-royal);
    border-color: transparent;
    color: var(--white);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy-light);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
}

.btn-white:hover {
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* ============================================
   SECTION STYLES
============================================ */
.section {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.section-sm {
    padding: var(--section-py-sm) 0;
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.section-gray {
    background: var(--gray-100);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--royal-light);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-dark .section-badge {
    background: rgba(255,255,255,0.1);
    color: var(--accent);
}

.section-title h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gradient-royal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-dark .section-title h2 {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-title p {
    color: rgba(255,255,255,0.7);
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,22,40,0.95) 0%, rgba(30,64,175,0.8) 100%);
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.1;
    filter: blur(80px);
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: var(--gradient-gold);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    padding: 120px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--royal-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-feature i {
    color: var(--accent);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-buttons .btn {
    padding: 18px 35px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-top: 5px;
}

/* ============================================
   GLASS CARDS
============================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* ============================================
   SERVICE CARDS
============================================ */
.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--gray-100);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-royal);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--royal-light);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient-royal);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--navy);
}

.service-card p {
    color: var(--gray-500);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--royal-light);
    font-weight: 600;
    font-size: 14px;
}

.service-link:hover {
    color: var(--royal);
    gap: 12px;
}

/* ============================================
   STATS SECTION
============================================ */
.stats-section {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient-royal);
    opacity: 0.1;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.stat-box {
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--accent);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number span {
    color: var(--accent);
}

.stat-label {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* ============================================
   REVIEW CARDS
============================================ */
.review-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 35px;
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--gray-100);
    line-height: 1;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.review-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.review-service {
    font-size: 13px;
    color: var(--royal-light);
    font-weight: 500;
}

.star-rating {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 15px;
}

.star-rating i {
    margin-right: 2px;
}

.review-text {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================
   BRANDS SECTION
============================================ */
.brands-section {
    background: var(--gray-100);
    padding: 60px 0;
}

.brand-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--royal-light);
}

.brand-item span {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg) !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    padding: 20px 25px;
    background: var(--white);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--gradient-royal);
    color: var(--white);
}

.faq-accordion .accordion-button::after {
    background-size: 16px;
    filter: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
    padding: 20px 25px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
    background: var(--gradient-royal);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--navy);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--accent);
    font-size: 2rem;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.social-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.social-btn:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.social-btn.facebook:hover { background: #1877f2; }
.social-btn.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.whatsapp:hover { background: var(--whatsapp); }
.social-btn.google:hover { background: #ea4335; }
.social-btn.justdial:hover { background: #007aff; }

.footer-review-btns {
    display: flex;
    gap: 10px;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.google-btn {
    background: #ea4335;
}

.jd-btn {
    background: #007aff;
}

.review-btn:hover {
    transform: translateY(-2px);
    color: var(--white);
    opacity: 0.9;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-text {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.contact-text a {
    color: rgba(255,255,255,0.7);
}

.contact-text a:hover {
    color: var(--accent);
}

.footer-areas {
    background: rgba(0,0,0,0.2);
    padding: 30px 0;
}

.areas-title {
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.areas-list a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    padding: 5px 12px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.areas-list a:hover {
    background: var(--royal-light);
    color: var(--white);
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
}

.copyright {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

.footer-bottom-links .separator {
    color: rgba(255,255,255,0.3);
    margin: 0 10px;
}

/* ============================================
   FLOATING BUTTONS
============================================ */
.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 120px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-float {
    background: var(--whatsapp);
    animation: pulse-whatsapp 2s infinite;
}

.call-float {
    background: var(--gradient-royal);
    animation: pulse-call 2s infinite;
}

.float-label {
    position: absolute;
    right: 70px;
    background: var(--navy);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
}

.float-btn:hover .float-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

@keyframes pulse-call {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
}

/* ============================================
   BACK TO TOP
============================================ */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: var(--gradient-dark);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gradient-royal);
    transform: translateY(-3px);
}

/* ============================================
   MOBILE STICKY BAR
============================================ */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
    z-index: 999;
    border-top: 1px solid var(--gray-200);
}

.sticky-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--gray-600);
    font-size: 11px;
    font-weight: 500;
    padding: 5px 15px;
    transition: var(--transition-fast);
}

.sticky-item i {
    font-size: 20px;
}

.sticky-item.whatsapp {
    color: var(--whatsapp);
}

.sticky-item.booking {
    color: var(--royal-light);
}

.sticky-item:hover {
    color: var(--royal);
}

/* ============================================
   PAGE HEADER
============================================ */
.page-header {
    background: var(--gradient-dark);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: var(--gradient-royal);
    opacity: 0.1;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white);
}

.breadcrumb {
    justify-content: center;
    margin: 0;
    background: none;
    padding: 0;
}

.breadcrumb-item {
    font-size: 15px;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-item.active {
    color: var(--accent);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

/* ============================================
   FORMS
============================================ */
.form-control,
.form-select {
    padding: 15px 20px;
    font-size: 15px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    background: var(--white);
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--royal-light);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.input-icon-group {
    position: relative;
}

.input-icon-group i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

.input-icon-group .form-control,
.input-icon-group .form-select {
    padding-left: 50px;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

.form-success h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--gray-500);
}

/* ============================================
   PREMIUM MODAL
============================================ */
.premium-modal .modal-content {
    background: var(--white);
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.premium-modal .modal-header {
    background: var(--gradient-royal);
    color: var(--white);
    border: none;
    padding: 20px 25px;
}

.premium-modal .modal-title {
    font-weight: 700;
}

.premium-modal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.premium-modal .modal-body {
    padding: 30px;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1199px) {
    .floating-buttons {
        bottom: 100px;
    }
    
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 991px) {
    :root {
        --section-py: 70px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: auto;
        padding: 100px 0 80px;
    }
    
    .hero-content {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .floating-buttons {
        right: 15px;
        bottom: 90px;
    }
    
    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .float-label {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-feature {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* ============================================
   PRINT STYLES
============================================ */
@media print {
    .top-bar,
    .main-header,
    .floating-buttons,
    .back-to-top,
    .mobile-sticky-bar,
    .footer {
        display: none !important;
    }
    
    body {
        padding: 0;
        background: white;
    }
}
