/* ============================================================
   DN SECURITY SERVICES - MAIN STYLESHEET
   Designed for UK audience | Hikvision Certified Installers
   ============================================================ */

/* ---------- CSS RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* ---------- CSS VARIABLES ---------- */
:root {
    /* Colours */
    --navy-primary: #0A2540;
    --navy-dark: #061a30;
    --navy-light: #14355c;
    --gold-accent: #D4A017;
    --gold-light: #e8bc3a;
    --gold-dark: #b08612;
    --white: #ffffff;
    --off-white: #f8f9fb;
    --light-grey: #eef1f5;
    --medium-grey: #8a95a5;
    --dark-grey: #4a5568;
    --text-dark: #1a2332;
    --text-body: #3d4a5c;
    --text-muted: #6b7688;
    --border-color: #e1e6ed;
    --success: #2d9b4d;
    --error: #d63638;

    /* Typography */
    --font-heading: 'Rajdhani', 'Arial Narrow', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
    --shadow-md: 0 6px 20px rgba(10, 37, 64, 0.1);
    --shadow-lg: 0 12px 40px rgba(10, 37, 64, 0.15);
    --shadow-xl: 0 20px 60px rgba(10, 37, 64, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Layout */
    --container-width: 1200px;
    --container-padding: 24px;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* ---------- BODY & TYPOGRAPHY ---------- */
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--white);
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

h6 {
    font-size: 16px;
    margin-bottom: 8px;
}

p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-body);
}

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

a:hover {
    color: var(--gold-accent);
}

ul, ol {
    margin-bottom: 16px;
    padding-left: 22px;
}

li {
    margin-bottom: 8px;
    line-height: 1.7;
}

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

/* ---------- UTILITY CLASSES ---------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-accent); }
.text-navy { color: var(--navy-primary); }
.bg-navy { background-color: var(--navy-primary); color: var(--white); }
.bg-light { background-color: var(--off-white); }

.section {
    padding: 80px 0;
}

.section-lg {
    padding: 100px 0;
}

.section-sm {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    color: var(--navy-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: var(--gold-accent);
    margin: 20px auto 0;
    border-radius: 2px;
}

.subtitle-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-accent);
    margin-bottom: 12px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--gold-accent);
    color: var(--navy-primary);
    border-color: var(--gold-accent);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-outline-navy {
    background: transparent;
    color: var(--navy-primary);
    border-color: var(--navy-primary);
}

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

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

/* ---------- TOP BAR ---------- */
.top-bar {
    background: var(--navy-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-bar a {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.top-bar a:hover {
    color: var(--gold-accent);
}

.top-bar-icon {
    color: var(--gold-accent);
    font-size: 14px;
}

/* ---------- HEADER / NAVIGATION ---------- */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-size: 24px;
    box-shadow: var(--shadow-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-primary);
    letter-spacing: 1px;
}

.logo-tag {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.main-nav li {
    position: relative;
    margin: 0;
}

.main-nav > ul > li > a {
    display: block;
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--navy-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
    color: var(--gold-accent);
    background: var(--off-white);
}

.dropdown-toggle::after {
    content: ' ▾';
    font-size: 10px;
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.main-nav li:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* ===== MEGA MENU DROPDOWN ===== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: var(--white);
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.2), 0 0 0 1px rgba(10, 37, 64, 0.05);
    border-radius: 14px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    list-style: none;
    z-index: 1001;
    margin: 0;
    overflow: hidden;
}

/* Services dropdown: 2 columns */
.dropdown-menu.menu-services {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 6px;
    width: 560px;
}

/* Locations dropdown: 3 columns */
.dropdown-menu.menu-locations {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 6px;
    width: 640px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--gold-light), var(--gold-accent));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    grid-column: 1 / -1;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.main-nav li:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
    margin: 0;
    list-style: none;
    padding: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--text-body);
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.08), rgba(10, 37, 64, 0.03));
    color: var(--navy-primary);
    border-left-color: var(--gold-accent);
    padding-left: 16px;
}

.dropdown-menu a .menu-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
    color: var(--gold-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover .menu-icon {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    color: var(--navy-primary);
    transform: scale(1.08) rotate(-3deg);
}

.dropdown-menu a .menu-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
}

.dropdown-menu a .menu-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-primary);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu a .menu-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-menu a:hover .menu-title {
    color: var(--gold-dark);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy-primary);
    font-weight: 600;
    font-size: 15px;
}

.header-phone-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-accent);
    color: var(--navy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.header-phone-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.header-phone-number {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-primary);
    line-height: 1.2;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--navy-primary);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 20px;
}

/* ---------- HERO SECTION ---------- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 60%, var(--navy-light) 100%);
    color: var(--white);
    overflow: hidden;
    padding: 80px 0 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(212, 160, 23, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212, 160, 23, 0.06) 0%, transparent 40%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 100px;
    color: var(--gold-accent);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    color: var(--white);
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero h1 .highlight {
    color: var(--gold-accent);
    display: inline-block;
    position: relative;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 560px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-size: 14px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold-accent);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- HERO INQUIRY FORM ---------- */
.hero-form {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.hero-form::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.hero-form-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--off-white);
}

.hero-form-header h3 {
    color: var(--navy-primary);
    font-size: 26px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.hero-form-header p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    margin-top: 6px;
}

.form-message {
    padding: 14px 18px;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}

.form-message.success {
    background: rgba(45, 155, 77, 0.1);
    color: var(--success);
    border-left: 4px solid var(--success);
}

.form-message.error {
    background: rgba(214, 54, 56, 0.1);
    color: var(--error);
    border-left: 4px solid var(--error);
}

/* Honeypot field (hidden from humans, visible to bots) */
.honeypot-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
    color: var(--gold-accent);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.trust-content h5 {
    font-size: 16px;
    color: var(--navy-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.trust-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-accent);
}

.service-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--light-grey);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 37, 64, 0.6) 100%);
}

.service-card-icon {
    position: absolute;
    bottom: -26px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--gold-accent);
    color: var(--navy-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.service-card-body {
    padding: 36px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 22px;
    color: var(--navy-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.service-card-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.service-card-link:hover {
    color: var(--gold-accent);
}

.service-card-link::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.service-card-link:hover::after {
    transform: translateX(5px);
}

/* ---------- WHY CHOOSE US ---------- */
.why-us {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-us-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-us-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.why-us-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gold-accent);
    color: var(--navy-primary);
    padding: 20px 28px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.why-us-image-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 1;
}

.why-us-image-badge span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 600;
}

.why-us h2 {
    color: var(--navy-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.why-us-intro {
    font-size: 17px;
    color: var(--text-body);
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-check {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--navy-primary);
    color: var(--gold-accent);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.feature-text h4 {
    color: var(--navy-primary);
    font-size: 18px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.feature-text p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ---------- LOCATIONS GRID ---------- */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.location-card {
    background: var(--white);
    padding: 24px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all var(--transition);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-accent);
    transform: translateX(-4px);
    transition: transform var(--transition);
}

.location-card:hover {
    border-color: var(--navy-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--navy-primary);
    color: var(--white);
}

.location-card:hover::before {
    transform: translateX(0);
}

.location-card-icon {
    font-size: 28px;
    color: var(--gold-accent);
    margin-bottom: 12px;
}

.location-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--navy-primary);
    text-transform: uppercase;
    transition: color var(--transition);
}

.location-card:hover h4 {
    color: var(--white);
}

.location-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    transition: color var(--transition);
}

.location-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* ---------- PROCESS STEPS ---------- */
.process-section {
    background: var(--navy-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 160, 23, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 160, 23, 0.06) 0%, transparent 50%);
}

.process-section .section-title h2 {
    color: var(--white);
}

.process-section .section-title p {
    color: rgba(255, 255, 255, 0.75);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-accent);
    transform: translateY(-4px);
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: var(--gold-accent);
    color: var(--navy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 8px rgba(212, 160, 23, 0.15);
}

.process-step h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.process-step p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-size: 60px;
    color: var(--gold-accent);
    line-height: 1;
    font-family: Georgia, serif;
    position: absolute;
    top: 16px;
    right: 28px;
    opacity: 0.3;
}

.testimonial-stars {
    color: var(--gold-accent);
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
    color: var(--gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

.testimonial-author-info h5 {
    font-size: 16px;
    color: var(--navy-primary);
    margin-bottom: 2px;
}

.testimonial-author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
}

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

/* ---------- FAQ SECTION ---------- */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 14px;
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.active {
    border-color: var(--gold-accent);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--navy-primary);
    user-select: none;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--off-white);
    color: var(--navy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    transition: all var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--gold-accent);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ---------- PAGE HEADER (for inner pages) ---------- */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
    color: var(--white);
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(212, 160, 23, 0.06) 0%, transparent 40%);
}

.page-header-inner {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 14px;
    flex-wrap: wrap;
}

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

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: rgba(255, 255, 255, 0.75);
}

/* ---------- CONTENT SECTIONS ---------- */
.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    color: var(--navy-primary);
    margin-top: 40px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.content-block h2:first-child {
    margin-top: 0;
}

.content-block h3 {
    color: var(--navy-primary);
    margin-top: 30px;
    margin-bottom: 14px;
}

.content-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 18px;
}

.content-block ul li {
    padding-left: 10px;
    margin-bottom: 10px;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.content-main h2,
.content-main h3 {
    color: var(--navy-primary);
    margin-top: 30px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.content-main img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    margin: 30px 0;
    box-shadow: var(--shadow-md);
}

.content-sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-widget {
    background: var(--off-white);
    border-radius: var(--border-radius-lg);
    padding: 30px 26px;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
}

.sidebar-widget-navy {
    background: var(--navy-primary);
    color: var(--white);
    border: none;
}

.sidebar-widget h4 {
    font-size: 20px;
    color: var(--navy-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold-accent);
}

.sidebar-widget-navy h4 {
    color: var(--white);
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    margin-bottom: 10px;
    padding: 0;
}

.sidebar-widget ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: var(--border-radius);
    color: var(--navy-primary);
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.sidebar-widget ul li a:hover {
    border-left-color: var(--gold-accent);
    color: var(--gold-accent);
    transform: translateX(4px);
}

.sidebar-widget ul li a::before {
    content: '▸';
    color: var(--gold-accent);
    font-size: 14px;
}

.sidebar-contact-widget {
    text-align: center;
}

.sidebar-contact-widget .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    text-align: left;
}

.sidebar-contact-widget .contact-item i {
    width: 40px;
    height: 40px;
    background: var(--gold-accent);
    color: var(--navy-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.sidebar-contact-widget .contact-item-content {
    flex: 1;
}

.sidebar-contact-widget .contact-item-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.sidebar-contact-widget .contact-item-value {
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
    word-break: break-word;
}

.sidebar-contact-widget .contact-item-value a {
    color: var(--white);
}

.sidebar-contact-widget .contact-item-value a:hover {
    color: var(--gold-accent);
}

/* ---------- HIGHLIGHT BOX ---------- */
.highlight-box {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    margin: 30px 0;
    border-left: 5px solid var(--gold-accent);
}

.highlight-box h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.highlight-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 30px;
}

.feature-pill {
    padding: 8px 18px;
    background: var(--off-white);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy-primary);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* ---------- CONTACT PAGE ---------- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info {
    background: var(--navy-primary);
    color: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    position: relative;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.contact-info-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 0;
    align-items: flex-start;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-accent);
    color: var(--navy-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 14px;
    color: var(--gold-accent);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info-content p,
.contact-info-content a {
    color: var(--white);
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
}

.contact-info-content a:hover {
    color: var(--gold-accent);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h3 {
    color: var(--navy-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-form-wrapper > p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.map-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    background: var(--off-white);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.map-info {
    padding: 24px 30px;
    background: var(--white);
    border-top: 4px solid var(--gold-accent);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.map-info h4 {
    font-size: 18px;
    color: var(--navy-primary);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.map-info p {
    color: var(--text-muted);
    margin: 0;
    font-size: 14px;
}

/* ---------- FLOATING WHATSAPP ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- COOKIE POPUP ---------- */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 440px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 24px 28px;
    z-index: 999;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--gold-accent);
    transform: translateY(calc(100% + 40px));
    transition: transform 0.5s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-popup h5 {
    font-size: 17px;
    color: var(--navy-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-popup p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.cookie-popup p a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.cookie-btn-accept {
    background: var(--gold-accent);
    color: var(--navy-primary);
    border-color: var(--gold-accent);
}

.cookie-btn-accept:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--navy-primary);
    border-color: var(--border-color);
}

.cookie-btn-decline:hover {
    border-color: var(--navy-primary);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 70px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent) 0%, var(--gold-dark) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h5 {
    color: var(--white);
    font-size: 17px;
    margin-bottom: 20px;
    text-transform: uppercase;
    padding-bottom: 12px;
    position: relative;
    letter-spacing: 1px;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-accent);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-dark) 100%);
    color: var(--navy-primary);
}

.footer-logo .logo-name {
    color: var(--white);
}

.footer-logo .logo-tag {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    padding: 0;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--gold-accent);
    transform: translateX(3px);
}

.footer-col ul li a::before {
    content: '▸';
    color: var(--gold-accent);
    font-size: 11px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact-item i {
    width: 32px;
    height: 32px;
    background: rgba(212, 160, 23, 0.15);
    color: var(--gold-accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.footer-contact-item p {
    margin: 0;
    font-size: 14px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.85);
    word-break: break-word;
}

.footer-contact-item a:hover {
    color: var(--gold-accent);
}

.footer-certification {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: var(--border-radius);
    color: var(--gold-accent);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 10px;
}

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

/* ---------- RESPONSIVE ---------- */

/* Large Desktop */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }

    .section { padding: 60px 0; }
    .section-lg { padding: 80px 0; }

    .hero {
        padding: 60px 0 70px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-image img {
        height: 400px;
    }

    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Mobile Nav */
    .main-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 80px 20px 20px;
        transition: right 0.4s ease;
        overflow-y: auto;
        z-index: 999;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav > ul > li {
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav > ul > li > a {
        padding: 14px 12px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--off-white);
        padding: 8px;
        display: none;
        border-top: none;
        border-radius: 8px;
        width: 100% !important;
        grid-template-columns: 1fr !important;
        margin: 8px 0;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu.mobile-open {
        display: grid !important;
    }

    .dropdown-menu a {
        padding: 10px 14px;
    }

    .dropdown-menu a .menu-icon {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-phone {
        display: none;
    }

    .page-header {
        padding: 60px 0 50px;
    }

    .page-header h1 {
        font-size: 38px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }

    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    h3 { font-size: 22px; }
    h4 { font-size: 18px; }

    body { font-size: 15px; }
    p { font-size: 15px; }

    .section { padding: 50px 0; }
    .section-lg { padding: 60px 0; }

    .top-bar {
        font-size: 12px;
    }

    .top-bar-inner {
        justify-content: center;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        gap: 16px;
        justify-content: center;
    }

    .top-bar a {
        font-size: 12px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .hero-stat-number {
        font-size: 26px;
    }

    .hero-stat-label {
        font-size: 11px;
    }

    .hero-form {
        padding: 28px 22px;
    }

    .trust-bar-inner {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .cta-section h2 {
        font-size: 30px;
    }

    .cta-section p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 30px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding-top: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .page-header p {
        font-size: 15px;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: none;
        bottom: 10px;
        padding: 20px 22px;
    }

    .header-inner {
        padding: 14px 0;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .logo-name {
        font-size: 18px;
    }

    .logo-tag {
        font-size: 10px;
    }

    .map-wrapper iframe {
        height: 320px;
    }

    .testimonial-card {
        padding: 28px 22px;
    }

    .why-us-image img {
        height: 300px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }

    .hero h1 {
        font-size: 28px;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-features {
        gap: 8px;
    }

    .hero-feature {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* ---------- UTILITY ANIMATION ---------- */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Print styles */
@media print {
    .header, .footer, .whatsapp-float, .cookie-popup, .hero-form {
        display: none;
    }
}
