/* =========================================
   GOOGLE FONTS IMPORT
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================================
   CSS VARIABLES & RESET
   ========================================= */
:root {
    --primary-teal: #0A1A3C;
    --dark-teal: #060E26;
    --accent-gold: #F4C431;
    --accent-dark-gold: #D9A81E;
    --text-dark: #1B1B1B;
    --text-muted: #666666;
    --bg-light: #F4F6FA;
    --bg-white: #FFFFFF;
    --border-color: #E2E6EF;

    --font-main: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 4px rgba(10,26,60,0.06);
    --shadow-md: 0 10px 30px rgba(10,26,60,0.10);
    --shadow-lg: 0 20px 40px rgba(10,26,60,0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-family: var(--font-main); color: var(--text-dark); background: var(--bg-white); overflow-x: hidden; }
body { line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; }
p { color: var(--text-muted); font-size: 1rem; margin-bottom: 1rem; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-padding { padding: 6rem 0; }
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-teal { color: var(--primary-teal); }

.section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--accent-dark-gold); font-weight: 600; text-transform: uppercase;
    letter-spacing: 1px; font-size: 0.875rem; margin-bottom: 0.75rem;
}
.section-label::before, .section-label::after {
    content: ''; display: block; width: 30px; height: 2px; background: var(--accent-gold);
}

/* Micro-conversion text */
.micro-text { font-size: 0.875rem; font-weight: 500; display: inline-flex; align-items: center; gap: 0.5rem; }
.micro-text i { color: var(--accent-gold); width: 16px; height: 16px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 1rem 2rem; font-weight: 600; border-radius: 4px; cursor: pointer;
    transition: var(--transition); border: none; font-family: var(--font-main);
    text-align: center;
}
.btn-gold { background: var(--accent-gold); color: var(--text-dark); }
.btn-gold:hover { background: var(--accent-dark-gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-teal { background: var(--primary-teal); color: var(--bg-white); }
.btn-teal:hover { background: var(--dark-teal); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-black { background: var(--text-dark); color: var(--bg-white); width: 100%; padding: 1.25rem; margin-top: 1rem; }
.btn-black:hover { background: #333; transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Page fade-in animation */
@keyframes fadeInView { from { opacity: 0; } to { opacity: 1; } }
body { animation: fadeInView 0.4s ease; }

/* =========================================
   BREADCRUMB
   ========================================= */
.breadcrumb-nav {
    background: var(--bg-light); padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb a { color: var(--primary-teal); font-weight: 500; }
.breadcrumb a:hover { color: var(--accent-dark-gold); }
.breadcrumb-sep { color: var(--border-color); }
.breadcrumb .current { color: var(--text-muted); }

/* =========================================
   HEADER AREA & NAVIGATION
   ========================================= */
.top-bar {
    background: var(--dark-teal); color: rgba(255,255,255,0.9);
    padding: 0.5rem 0; font-size: 0.875rem;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;}
.top-bar-item { display: flex; align-items: center; gap: 0.5rem; transition: var(--transition); }
.top-bar-item a { display: flex; align-items: center; gap: 0.5rem; }
.top-bar-item a:hover { color: var(--accent-gold); }
.top-bar-item i { color: var(--accent-gold); width: 16px; height: 16px; }

.header {
    background: var(--bg-white); position: sticky; top: 0; z-index: 1000;
    box-shadow: var(--shadow-sm); transition: var(--transition);
}
.header-container { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-icon { color: var(--accent-gold); }
.logo-img { height: 56px; width: auto; display: block; object-fit: contain; max-width: 260px; }
.footer-logo-img { height: 46px; width: auto; background: white; padding: 6px 14px; border-radius: 8px; display: block; object-fit: contain; max-width: 230px; }

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a.nav-link { font-weight: 600; color: var(--text-dark); text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 0.25rem; }
.nav-links a.nav-link:hover { color: var(--accent-dark-gold); }

/* Dropdown Styling */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; background: var(--bg-white);
    box-shadow: var(--shadow-lg); border-radius: 4px; padding: 1rem 0;
    min-width: 260px; opacity: 0; visibility: hidden; transition: var(--transition);
    transform: translateY(15px); z-index: 1000; border: 1px solid var(--border-color);
    border-top: 3px solid var(--accent-gold);
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
    display: block; padding: 0.75rem 1.5rem; text-transform: none;
    font-size: 0.95rem; font-weight: 500; color: var(--text-dark); transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--primary-teal); padding-left: 2rem; }
.mobile-dropdown-toggle { display: none; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--dark-teal); padding: 0.5rem; }

/* =========================================
   HOME PAGE: HERO SECTION
   ========================================= */
.hero {
    position: relative; padding: 10rem 0 12rem;
    background: linear-gradient(rgba(10, 26, 60, 0.85), rgba(10, 26, 60, 0.7)),
                url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&q=80&w=1920') center/cover;
    text-align: center; color: var(--bg-white);
}
.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero h1 { color: var(--bg-white); margin-bottom: 1.5rem; }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.125rem; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1.5rem; justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 1.5rem; }

/* =========================================
   HOME PAGE: STATS STRIP
   ========================================= */
.stats-wrapper { position: relative; margin-top: -4rem; z-index: 10; }
.stats-container { display: flex; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-md); }

.stats-left {
    background: var(--accent-gold); width: 30%; padding: 2.5rem;
    display: flex; align-items: center; gap: 1rem; color: var(--text-dark);
}
.play-btn {
    width: 60px; height: 60px; border-radius: 50%; background: var(--bg-white);
    display: flex; align-items: center; justify-content: center; color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); cursor: pointer; transition: transform 0.3s; flex-shrink: 0;
}
.play-btn:hover { transform: scale(1.1); }

.stats-right {
    background: var(--primary-teal); width: 70%; padding: 2.5rem;
    display: flex; justify-content: space-around; align-items: center; color: var(--bg-white); flex-wrap: wrap; gap: 1.5rem;
}
.stat-item { display: flex; align-items: center; gap: 1rem; }
.stat-icon { color: var(--accent-gold); width: 40px; height: 40px; }
.stat-text h4 { color: var(--bg-white); font-size: 1.5rem; margin-bottom: 0; line-height: 1;}
.stat-text p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px;}
#why-us .stat-text h4 { color: var(--text-dark); }
#why-us .stat-text p { color: var(--text-muted); }

/* =========================================
   HOME PAGE: ABOUT SECTION
   ========================================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-images { position: relative; padding-bottom: 3rem; padding-right: 3rem; }
.about-img-main { border-radius: 4px; width: 85%; box-shadow: var(--shadow-md); position: relative; z-index: 2; }
.about-img-sub {
    position: absolute; bottom: 0; right: 0; width: 55%;
    border: 8px solid var(--bg-white); border-radius: 4px; box-shadow: var(--shadow-lg); z-index: 3;
}
.about-shape {
    position: absolute; top: -20px; left: -20px; width: 60%; height: 60%;
    border: 4px solid var(--accent-gold); z-index: 1;
}
.about-content h2 { margin-bottom: 1.5rem; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; }
.feature-icon {
    width: 50px; height: 50px; background: #FFF9E6; color: var(--accent-dark-gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-item h4 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.about-author { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border-color); }
.author-info img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }

/* =========================================
   HOME PAGE: SERVICES SECTION
   ========================================= */
.services-section { background: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.service-card {
    background: var(--bg-white); border-radius: 8px; overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid #F3F4F6;
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-img { position: relative; height: 220px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-icon-box {
    position: absolute; bottom: -25px; right: 20px; width: 50px; height: 50px;
    background: var(--accent-gold); color: var(--text-dark); border-radius: 4px;
    display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md);
}
.service-content { padding: 2.5rem 1.5rem 1.5rem; flex-grow: 1; display: flex; flex-direction: column;}
.service-content h3 { margin-bottom: 1rem; font-size: 1.25rem; }
.service-content p { flex-grow: 1; }
.service-read-more {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--primary-teal); font-weight: 600; text-transform: uppercase; font-size: 0.875rem;
    margin-top: 1rem; align-self: flex-start;
}
.service-card:hover .service-read-more { color: var(--accent-dark-gold); }

/* =========================================
   HOME PAGE: PROMO & BRANDS
   ========================================= */
.promo-section {
    background: linear-gradient(rgba(6, 14, 38, 0.9), rgba(6, 14, 38, 0.9)),
                url('https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?auto=format&fit=crop&q=80&w=1920') center/cover;
    padding: 7rem 0; text-align: center; color: var(--bg-white); position: relative;
}
.promo-section .section-label { color: var(--accent-gold); }
.promo-section .section-label::before, .promo-section .section-label::after { background: var(--bg-white); }
.promo-section h2 { color: var(--bg-white); margin-bottom: 2rem; }
.brands-strip { background: var(--dark-teal); padding: 3rem 0; border-top: 1px solid rgba(255,255,255,0.1); }
.brands-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.brand-item { color: rgba(255,255,255,0.6); font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; transition: var(--transition); }
.brand-item:hover { color: var(--bg-white); }

/* =========================================
   HOME PAGE: TEAM SECTION
   ========================================= */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-card {
    background: var(--bg-white); border-radius: 8px; overflow: hidden;
    box-shadow: var(--shadow-sm); text-align: center; border: 1px solid var(--border-color);
}
.team-card img { width: 100%; height: 300px; object-fit: cover; }
.team-info { padding: 1.5rem; }
.team-info h4 { margin-bottom: 0.25rem; }
.team-info span { color: var(--accent-dark-gold); font-weight: 500; font-size: 0.9rem; }

/* =========================================
   HOME PAGE: CITIES SERVED
   ========================================= */
.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; text-align: center;}
.city-item { background: var(--bg-white); padding: 1.5rem; border-radius: 8px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); font-weight: 600; color: var(--dark-teal); display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: var(--transition); }
.city-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); color: var(--accent-dark-gold); border-color: var(--accent-gold); }

/* =========================================
   HOME PAGE: BOOKING & TESTIMONIALS
   ========================================= */
.booking-test-section { background: var(--primary-teal); padding: 8rem 0; position: relative; }
.bt-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }

.booking-form-wrapper {
    background: var(--accent-gold); padding: 3rem; border-radius: 4px;
    box-shadow: var(--shadow-lg); position: relative; z-index: 2;
}
.booking-form-wrapper h2 { color: var(--text-dark); margin-bottom: 0.5rem; font-size: 2rem; }
.booking-form-wrapper p { color: var(--dark-teal); margin-bottom: 2rem; font-weight: 500;}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-control {
    width: 100%; padding: 1rem; border: none; border-radius: 4px;
    font-family: var(--font-main); font-size: 1rem; background: var(--bg-white); color: var(--text-dark);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus { outline: none; box-shadow: 0 0 0 2px var(--dark-teal); }
select.form-control { appearance: none; background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E'); background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px; padding-right: 2.5rem;}

.test-content { color: var(--bg-white); padding-left: 2rem; }
.test-content .section-label { color: var(--accent-gold); }
.test-content .section-label::before { display: none; }
.test-content h2 { color: var(--bg-white); margin-bottom: 2rem; }
.test-card { position: relative; }
.quote-icon-large { color: rgba(244, 196, 49, 0.2); width: 80px; height: 80px; position: absolute; top: -20px; right: 0; z-index: 0; }
.test-text { font-size: 1.125rem; font-style: italic; line-height: 1.8; position: relative; z-index: 1; margin-bottom: 2rem; color: rgba(255,255,255,0.9); }
.client-profile { display: flex; align-items: center; gap: 1rem; }
.client-profile img { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--accent-gold); object-fit: cover;}
.client-info h4 { color: var(--bg-white); margin-bottom: 0.25rem; }
.client-info .stars { color: var(--accent-gold); display: flex; gap: 0.2rem; }

/* =========================================
   HOME PAGE: BLOG SECTION
   ========================================= */
.blog-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; margin-top: 3rem; }
.blog-card-large { background: var(--bg-white); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); display: flex; flex-direction: column;}
.blog-card-large img { width: 100%; height: 350px; object-fit: cover; }
.blog-content { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column;}
.blog-meta { display: flex; gap: 1.5rem; margin-bottom: 1rem; font-size: 0.875rem; color: var(--text-muted); flex-wrap: wrap;}
.blog-meta span { display: flex; align-items: center; gap: 0.5rem; }
.blog-meta i { color: var(--accent-dark-gold); }
.blog-content h3 { font-size: 1.5rem; margin-bottom: 1rem; transition: var(--transition); }
.blog-content h3:hover { color: var(--primary-teal); }
.blog-content p { flex-grow: 1; }

.blog-list { display: flex; flex-direction: column; gap: 1.5rem; }
.blog-card-small { display: flex; gap: 1.5rem; background: var(--bg-white); padding: 1rem; border-radius: 8px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); align-items: center;}
.blog-card-small img { width: 120px; height: 120px; object-fit: cover; border-radius: 4px; flex-shrink: 0;}
.blog-small-content h4 { font-size: 1.125rem; margin-bottom: 0.5rem; transition: var(--transition); line-height: 1.4;}
.blog-small-content h4:hover { color: var(--primary-teal); }

/* =========================================
   SERVICE PAGES COMMON STYLES
   ========================================= */
.service-hero {
    padding: 8rem 0 6rem; text-align: center; color: var(--bg-white); position: relative;
    background-size: cover; background-position: center; background-attachment: fixed;
}
.service-hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(10, 26, 60, 0.9), rgba(10, 26, 60, 0.7)); z-index: 1;
}
.service-hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; padding: 0 1.5rem;}
.service-hero h1 { color: var(--bg-white); margin-bottom: 1.5rem; font-size: clamp(2.5rem, 5vw, 3.5rem); }
.service-hero p { color: rgba(255,255,255,0.9); font-size: 1.125rem; margin-bottom: 2rem; max-width: 700px; margin-left: auto; margin-right: auto;}

.service-content-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: start;}
.service-main-details h2 { color: var(--dark-teal); margin-bottom: 1.5rem; font-size: 2.25rem;}
.service-main-details h3 { color: var(--dark-teal); margin-top: 2rem; margin-bottom: 1rem; font-size: 1.5rem;}
.service-main-details p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.5rem; color: #4B5563;}

.check-list { margin: 1.5rem 0 2.5rem; }
.check-list li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; font-size: 1.05rem; font-weight: 500; color: var(--text-dark);}
.check-list i { color: var(--accent-gold); flex-shrink: 0; margin-top: 3px; }

.pricing-box {
    background: #FFF9E6; border-left: 4px solid var(--accent-gold); padding: 1.5rem;
    border-radius: 4px; margin: 2rem 0; font-size: 1.125rem; font-weight: 600; color: var(--dark-teal);
    display: flex; align-items: center; gap: 1rem;
}

.service-sidebar { position: sticky; top: 120px; }
.mini-lead-form {
    background: var(--bg-white); border-radius: 8px; box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color); overflow: hidden;
}
.mini-lead-header { background: var(--dark-teal); color: var(--bg-white); padding: 2rem; text-align: center; }
.mini-lead-header h3 { color: var(--accent-gold); margin-bottom: 0.5rem; }
.mini-lead-header p { margin: 0; font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.mini-lead-body { padding: 2rem; }

.cta-banner { background: var(--bg-light); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 4rem 0; text-align: center; margin-top: 3rem;}

/* Internal links section */
.internal-links-section { padding: 3rem 0; background: var(--bg-light); }
.internal-links-section h3 { margin-bottom: 1.5rem; color: var(--dark-teal); }
.link-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; }
.link-pill {
    display: block; padding: 0.75rem 1.25rem; background: var(--bg-white);
    border: 1px solid var(--border-color); border-radius: 4px; font-weight: 600;
    color: var(--primary-teal); font-size: 0.9rem; text-align: center; transition: var(--transition);
}
.link-pill:hover { background: var(--primary-teal); color: var(--bg-white); border-color: var(--primary-teal); }

/* FAQ Section */
.faq-section { padding: 4rem 0; }
.faq-section h2 { margin-bottom: 2rem; color: var(--dark-teal); }
.faq-item { border-bottom: 1px solid var(--border-color); padding: 1.5rem 0; }
.faq-question { font-weight: 700; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.75rem; }
.faq-answer { color: var(--text-muted); line-height: 1.7; }

/* Location hero */
.location-hero {
    padding: 7rem 0 5rem; text-align: center; color: var(--bg-white); position: relative;
    background: linear-gradient(rgba(10, 26, 60, 0.9), rgba(10, 26, 60, 0.75)),
                url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&q=80&w=1920') center/cover;
}
.location-hero::before { display: none; }
.location-hero h1 { color: var(--bg-white); margin-bottom: 1rem; }
.location-hero p { color: rgba(255,255,255,0.9); font-size: 1.125rem; max-width: 650px; margin: 0 auto 2rem; }

/* Legal pages */
.legal-content { max-width: 860px; margin: 0 auto; padding: 4rem 1.5rem; }
.legal-content h1 { font-size: 2.25rem; margin-bottom: 0.5rem; }
.legal-date { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 3rem; display: block; }
.legal-content h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; color: var(--dark-teal); }
.legal-content p, .legal-content li { color: #4B5563; line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; }

/* 404 page */
.not-found { text-align: center; padding: 8rem 1.5rem; }
.not-found .code { font-size: 8rem; font-weight: 800; color: var(--accent-gold); line-height: 1; }
.not-found h2 { font-size: 2rem; margin: 1rem 0; }
.not-found p { font-size: 1.125rem; max-width: 500px; margin: 0 auto 2.5rem; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--dark-teal); color: rgba(255,255,255,0.7); padding-top: 5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; margin-bottom: 4rem; }
.footer-logo { display: flex; align-items: center; margin-bottom: 1.5rem; text-decoration: none; }
.footer-logo i { color: var(--accent-gold); }
.footer-contact { margin-top: 1.5rem; }
.footer-contact p { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; color: rgba(255,255,255,0.9); }
.footer-contact i { color: var(--accent-gold); flex-shrink: 0; margin-top: 4px;}
.footer-contact a:hover { color: var(--accent-gold); }
.footer h4 { color: var(--bg-white); font-size: 1.25rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 0.5rem; }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--accent-gold); }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a:hover { color: var(--accent-gold); padding-left: 5px; }
.footer-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.footer-gallery img { width: 100%; height: 70px; object-fit: cover; border-radius: 4px; cursor: pointer; transition: opacity 0.3s; }
.footer-gallery img:hover { opacity: 0.7; }
.footer-bottom { background: var(--accent-gold); padding: 1.5rem 0; color: var(--text-dark); font-weight: 500; font-size: 0.9rem;}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;}
.footer-bottom a { color: var(--text-dark); font-weight: 600; }
.footer-bottom a:hover { text-decoration: underline; }
.payment-icons { display: flex; gap: 0.5rem; }

/* Alerts */
.alert { display: none; padding: 1rem; border-radius: 4px; margin-bottom: 1rem; font-weight: 500; }
.alert-success { background: #10B981; color: white; display: block; animation: fadeInView 0.3s ease;}

/* =========================================
   STICKY CTA BAR
   ========================================= */
.sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--primary-teal); color: white;
    padding: 0.875rem 1.5rem;
    display: flex; align-items: center; justify-content: center; gap: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    transform: translateY(100%); transition: transform 0.4s ease;
    flex-wrap: wrap;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta p { margin: 0; color: rgba(255,255,255,0.9); font-size: 0.95rem; font-weight: 500; }
.sticky-cta p strong { color: var(--accent-gold); }
.sticky-cta .btn { padding: 0.625rem 1.5rem; font-size: 0.9rem; white-space: nowrap; }
.sticky-cta-close {
    position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
    background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer;
    padding: 0.5rem; font-size: 1.25rem; line-height: 1;
}
.sticky-cta-close:hover { color: white; }
@media (max-width: 576px) {
    .sticky-cta { gap: 0.75rem; padding: 0.75rem 2.5rem 0.75rem 1rem; }
    .sticky-cta p { font-size: 0.85rem; text-align: center; }
}

/* Spin animation for loader */
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin 1s linear infinite; }

/* =========================================
   TRUST STRIP
   ========================================= */
.trust-strip {
    background: var(--primary-teal);
    padding: 0.875rem 0;
    border-bottom: 3px solid var(--accent-gold);
}
.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.95);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}
.trust-item i { color: var(--accent-gold); width: 16px; height: 16px; }

/* =========================================
   HERO RATING BADGE
   ========================================= */
.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(244,196,49,0.15);
    border: 1px solid rgba(244,196,49,0.4);
    padding: 0.5rem 1.125rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero-rating .stars { color: var(--accent-gold); letter-spacing: 2px; font-size: 0.95rem; }
.hero-rating span { color: rgba(255,255,255,0.9); font-size: 0.875rem; font-weight: 500; }

/* =========================================
   PROCESS STEPS (How It Works)
   ========================================= */
.process-section { background: var(--bg-light); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 3rem;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 1.75rem;
    left: 16%;
    right: 16%;
    height: 2px;
    background: var(--accent-gold);
    z-index: 0;
}
.step-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--accent-gold);
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}
.step-card h3 { color: var(--dark-teal); margin-bottom: 0.75rem; font-size: 1.2rem; }
.step-card p { font-size: 0.95rem; margin: 0; }

/* =========================================
   SERVICE PAGE TESTIMONIALS
   ========================================= */
.service-testimonials { background: var(--bg-white); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars-row {
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.test-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.test-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}
.test-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-teal);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}
.test-author strong { display: block; color: var(--text-dark); font-size: 0.9rem; line-height: 1.3; }
.test-author span { color: var(--text-muted); font-size: 0.8rem; }

/* =========================================
   ENHANCED CTA BANNER
   ========================================= */
.cta-banner-enhanced {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-teal) 100%);
    padding: 5rem 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.cta-text h2 { color: var(--bg-white); margin-bottom: 0.5rem; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.cta-text p { color: rgba(255,255,255,0.75); margin: 0; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }
.btn-outline-white {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255,255,255,0.45);
    padding: 1rem 2rem;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--bg-white);
    transform: translateY(-2px);
}
