/* =====================================================
   MB SECURITY SERVICES - Professional Compact Design
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

/* CSS Variables */
:root {
    --navy: #1a2a4a;
    --navy-light: #2d3e5f;
    --navy-dark: #0f1a2e;
    --gold: #c9a227;
    --gold-light: #d4b84a;
    --gold-dark: #a8891f;
    --gold-pale: #f5f0e1;
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --gray-200: #e0e0e0;
    --gray-400: #9e9e9e;
    --gray-500: #757575;
    --gray-600: #616161;
    --gray-700: #424242;
    --success: #2e7d32;
    --danger: #c62828;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.1);
    --shadow-gold: 0 4px 15px rgba(201,162,39,0.2);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* Base Styles */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 60px 0; }

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

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

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

@keyframes letterReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes letterRevealGold {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Animate on scroll classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-slide-down {
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-bounce {
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Letter Animation - Enhanced */
.hero-title .word {
    display: inline-block;
    margin-right: 0.1em;
}

.hero-title .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    animation: letterReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-title .word.gold .letter {
    animation: letterRevealGold 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

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

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

.btn-sm { padding: 10px 20px; font-size: 0.8rem; }
.btn-lg { padding: 14px 35px; font-size: 0.9rem; }

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1000;
}

.top-bar {
    background: var(--navy);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.top-bar a, .top-bar span {
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar a:hover { color: var(--gold); }
.top-bar i { color: var(--gold); font-size: 0.85rem; }

.top-bar-login {
    background: rgba(201,162,39,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid var(--gold);
}

.top-bar-login:hover { background: var(--gold); color: var(--navy) !important; }
.top-bar-login i { color: var(--gold); }
.top-bar-login:hover i { color: var(--navy); }

.top-bar .social-links { display: flex; gap: 12px; }
.top-bar .social-links a {
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-bar .social-links a:hover { background: var(--gold); }
.top-bar .social-links i { color: var(--white); font-size: 0.75rem; }

.navbar { padding: 15px 0; }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img { height: 45px; }

.logo-text {
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
}

.logo-text span { color: var(--gold); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta { margin-left: 20px; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.mobile-menu-header {
    display: none;
}

.mobile-menu-links {
    display: contents;
}

.mobile-sign-in {
    display: none;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--navy);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--light-gray);
    color: var(--gold);
    padding-left: 25px;
}

/* Mobile Actions - Hidden on Desktop */
.mobile-actions {
    display: none;
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* =====================================================
   HERO SECTION - Full Background with Overlay
   ===================================================== */
.hero {
    background-image: url('../images/hero-security.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0 55px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 42, 74, 0.82) 0%, rgba(15, 26, 46, 0.80) 50%, rgba(45, 62, 95, 0.78) 100%);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center right, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
}

.hero-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

.hero-title .word {
    display: inline-block;
    margin-right: 0.1em;
    opacity: 0;
    animation: wordFadeIn 0.8s ease forwards;
}

.hero-title .word.gold {
    color: var(--gold);
}

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

.hero-title .word:nth-child(1) { animation-delay: 0.1s; }
.hero-title .word:nth-child(2) { animation-delay: 0.3s; }
.hero-title .word:nth-child(3) { animation-delay: 0.5s; }
.hero-title .word:nth-child(4) { animation-delay: 0.7s; }
.hero-title .word:nth-child(5) { animation-delay: 0.9s; }

.hero-title .gold {
    animation: goldShine 3s ease-in-out infinite 1.2s;
}

@keyframes goldShine {
    0%, 100% {
        opacity: 1;
        text-shadow: 0 0 25px rgba(201, 162, 39, 0.5);
    }
    50% {
        opacity: 0.95;
        text-shadow: 0 0 40px rgba(201, 162, 39, 0.7);
    }
}

.hero-description {
    color: rgba(255, 255, 255, 0.98);
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.85;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
    letter-spacing: 0.4px;
}

/* Bold white text for important words */
.hero-description strong {
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    font-style: normal;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
}

/* Page Load Animations - Trigger immediately without scroll */
.page-load-fade-up {
    animation: pageLoadFadeUp 0.8s ease-out forwards;
}

.page-load-slide-down {
    animation: pageLoadSlideDown 0.6s ease-out forwards;
}

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

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

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

/* =====================================================
   FEATURES SECTION - Creative Banner Design
   ===================================================== */
.features-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.features-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.features-creative-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 28px rgba(201, 162, 39, 0.5);
}

.feature-text h4 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.feature-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(201, 162, 39, 0.5) 50%,
        transparent 100%);
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
}

/* =====================================================
   SERVICES SECTION - Image Grid
   ===================================================== */
.services {
    background: var(--light-gray);
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.service-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-box-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,26,46,0.95) 0%, rgba(15,26,46,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px 20px;
    transition: background 0.3s ease;
}

.service-box:hover .service-box-overlay {
    background: linear-gradient(to top, rgba(15,26,46,0.98) 0%, rgba(15,26,46,0.6) 60%, rgba(15,26,46,0.3) 100%);
}

.service-box h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-box p {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.service-box:hover p {
    color: rgba(255,255,255,1);
}

.service-box-link {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

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

.service-box-link i {
    transition: transform 0.3s ease;
}

.service-box:hover .service-box-link i {
    transform: translateX(4px);
}

/* =====================================================
   ABOUT SECTION - Compact
   ===================================================== */
.about-section {
    background: var(--white);
    padding: 60px 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 30px;
    background: var(--gold);
    color: var(--white);
    padding: 18px 25px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.about-badge h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0;
    line-height: 1;
}

.about-badge p {
    font-size: 0.75rem;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .subtitle {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.about-content > p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.about-feature:hover {
    background: var(--gold-pale);
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.about-feature h5 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
}

/* =====================================================
   STATS SECTION - Compact
   ===================================================== */
.stats-section {
    background: var(--navy);
    padding: 45px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(255,255,255,0.15);
}

.stat-item:last-child::after { display: none; }

.stat-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: var(--gold);
}

.stat-icon i {
    font-size: 1.1rem;
    color: var(--gold);
    transition: color 0.3s ease;
}

.stat-item:hover .stat-icon i { color: var(--navy); }

.stat-item h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 3px;
}

.stat-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   WHY CHOOSE US - Creative Flow Design
   ===================================================== */
.why-section {
    background: var(--light-gray);
    padding: 60px 0;
}

.why-list {
    max-width: 900px;
    margin: 0 auto;
}

.why-row {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 30px;
    align-items: center;
    padding: 30px 0;
    border-bottom: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.why-row:last-child {
    border-bottom: none;
}

.why-row:hover {
    transform: translateX(10px);
}

.why-row:hover .why-number-large {
    color: var(--gold);
    transform: scale(1.1);
}

.why-number-large {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--navy);
    opacity: 0.15;
    transition: all 0.3s ease;
    line-height: 1;
}

.why-details h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 10px;
    font-weight: 700;
}

.why-details p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

/* =====================================================
   VALUES SECTION - Creative Grid
   ===================================================== */
.values-section {
    background: var(--white);
    padding: 60px 0;
}

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

.value-item {
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.value-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gold-pale);
    border-radius: 50%;
    z-index: 0;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon-wrapper::before {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--gold-light);
}

.value-icon {
    position: relative;
    z-index: 1;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin: 0 auto;
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =====================================================
   CTA SECTION - Compact
   ===================================================== */
.cta-section {
    background: var(--gold);
    padding: 40px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 20px;
}

.cta-section .btn-secondary {
    background: var(--navy);
    border-color: var(--navy);
}

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

/* =====================================================
   INNER PAGE TITLES - Compact
   ===================================================== */
.page-title-section {
    padding: 30px 0;
    background: var(--light-gray);
    border-bottom: 1px solid var(--gray-200);
}

.page-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title h1 {
    font-size: 1.5rem;
    margin: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a, .breadcrumb span {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 0.6rem; color: var(--gray-400); }

/* =====================================================
   COMPANY INFO - Simple Table
   ===================================================== */
.company-info-section {
    background: var(--white);
    padding: 50px 0;
}

.company-info-table {
    max-width: 750px;
    margin: 0 auto;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.company-info-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    border-bottom: 1px solid var(--gray-200);
}

.company-info-row:last-child { border-bottom: none; }

.company-info-label {
    background: var(--navy);
    color: var(--gold);
    padding: 15px 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.company-info-value {
    padding: 15px 20px;
    color: var(--navy);
    font-weight: 500;
    font-size: 0.9rem;
    background: var(--white);
}

.company-info-value.status-active { color: var(--success); }

/* =====================================================
   SERVICES PAGE - Tabs Design
   ===================================================== */
.services-tabs-section {
    background: var(--white);
    padding: 50px 0;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.service-tab {
    padding: 12px 25px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-tab i { color: var(--gold); }

.service-tab:hover {
    background: var(--gold-pale);
    border-color: var(--gold);
}

.service-tab.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.service-tab.active i { color: var(--white); }

.service-tab-content {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.service-tab-content.active { display: block; }

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-detail-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.service-detail-content .subtitle {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    margin-bottom: 8px;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-detail-content > p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.service-features-list i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-section {
    background: var(--light-gray);
    padding: 50px 0;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.faq-item:hover { border-color: var(--gold); }

.faq-question {
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question:hover { color: var(--gold); }

.faq-question i {
    font-size: 0.8rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question { color: var(--gold); }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 22px 18px;
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

/* Still Have Questions - Compact Inline */
.faq-cta {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 25px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 1px solid var(--gray-200);
}

.faq-cta-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-cta-content i {
    font-size: 1.25rem;
    color: var(--gold);
}

.faq-cta-content h4 {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.faq-cta-content p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin: 0;
}

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

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section {
    background: var(--white);
    padding: 50px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 35px;
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.contact-info > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.contact-list { margin-bottom: 25px; }

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

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(201,162,39,0.2);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i { color: var(--gold); font-size: 0.9rem; }

.contact-item-text h5 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-item-text p,
.contact-item-text a {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin: 0;
}

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

.contact-form-section {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 35px;
}

.contact-form-section h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.form-group label span { color: var(--danger); }

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-700);
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
}

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

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23757575"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

/* Map Section - Improved Design */
.map-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.map-section .container {
    max-width: 1200px;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about .logo { margin-bottom: 15px; }
.footer-about .logo-text { color: var(--white); }
.footer-about p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 15px; }

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-links a i { color: var(--gold); font-size: 0.65rem; }

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact i { color: var(--gold); margin-top: 4px; }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom p { margin: 0; font-size: 0.85rem; }

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--gold);
}

.footer-legal-links span {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

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

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--navy);
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        gap: 0;
        transition: 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
        z-index: 9999;
    }

    .nav-menu.active { right: 0; }
    .mobile-toggle { display: flex; z-index: 10000; }

    .mobile-menu-header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 15px 20px;
        background: var(--navy);
        border-bottom: 2px solid var(--gold);
    }

    .mobile-close {
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.3rem;
        cursor: pointer;
        padding: 5px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        border-radius: var(--radius);
    }

    .mobile-close:hover {
        background: rgba(255,255,255,0.1);
        color: var(--gold);
    }

    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        flex: 1;
        overflow-y: auto;
    }

    .nav-menu .nav-link {
        padding: 15px 25px;
        border-bottom: 1px solid var(--gray-200);
        font-size: 0.95rem;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .mobile-sign-in {
        display: none !important;
    }

    .nav-cta {
        display: none !important;
    }

    /* Mobile Dropdown Styles */
    .nav-dropdown {
        position: static;
    }

    .dropdown-toggle {
        padding: 15px 25px;
        border-bottom: 1px solid var(--gray-200);
        font-size: 0.95rem;
        justify-content: space-between;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        background: var(--light-gray);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    /* Only open dropdown on active class (click), not hover */
    .nav-dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    /* Rotate chevron when mobile dropdown is active */
    .nav-dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .dropdown-item {
        padding: 12px 25px 12px 45px;
        border-bottom: 1px solid var(--gray-200);
        font-size: 0.9rem;
    }

    .dropdown-item:hover {
        background: var(--white);
        padding-left: 50px;
    }

    /* Mobile Actions */
    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px 25px;
        background: var(--light-gray);
        border-top: 2px solid var(--gold);
        margin-top: 10px;
    }

    .mobile-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 20px;
        border-radius: 6px;
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }

    .mobile-btn-signin {
        background: var(--white);
        color: var(--navy);
        border: 2px solid var(--navy);
    }

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

    .mobile-btn-quote {
        background: var(--gold);
        color: var(--navy);
        border: 2px solid var(--gold);
    }

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

    .hero-wrapper, .about-wrapper, .contact-wrapper, .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero {
        padding: 35px 0 40px;
        background-position: center center;
    }

    .hero-wrapper {
        min-height: 340px;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .features-creative-wrapper { gap: 30px; }
    .feature-item { gap: 15px; }
    .feature-icon-circle { width: 60px; height: 60px; min-width: 60px; font-size: 1.5rem; }
    .feature-text h4 { font-size: 1.05rem; }
    .feature-text p { font-size: 0.85rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-row { grid-template-columns: 60px 1fr 60px; gap: 20px; padding: 25px 0; }
    .why-number-large { font-size: 2.5rem; }
    .why-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .values-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 768px) {
    section { padding: 45px 0; }
    .top-bar { display: none; }

    .features-banner { padding: 45px 0; }
    .features-creative-wrapper { flex-direction: column; gap: 30px; }
    .feature-item { flex-direction: column; text-align: center; }
    .feature-divider { display: none; }

    .hero {
        padding: 30px 0 35px;
        background-position: 30% center;
    }

    .hero-wrapper {
        min-height: 320px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .services-grid { grid-template-columns: 1fr; }
    .service-box { height: 240px; }
    .about-features { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-row { grid-template-columns: 50px 1fr 50px; gap: 15px; padding: 20px 0; }
    .why-number-large { font-size: 2rem; }
    .why-details h3 { font-size: 1.2rem; }
    .why-details p { font-size: 0.9rem; }
    .why-icon { width: 50px; height: 50px; font-size: 1.2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 20px; }
    .footer-bottom-left { align-items: center; gap: 15px; }
    .footer-legal-links { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .service-tabs { gap: 6px; }
    .service-tab { padding: 10px 18px; font-size: 0.8rem; }
    .faq-cta { flex-direction: column; text-align: center; }
    .faq-cta-content { flex-direction: column; }
    .faq-cta-buttons { width: 100%; justify-content: center; }
    .faq-cta-buttons .btn { flex: 1; min-width: 140px; }
    .page-title-wrapper { flex-direction: column; gap: 10px; text-align: center; }
    .stat-item::after { display: none; }
    .service-features-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero {
        padding: 25px 0 30px;
    }

    .hero-wrapper {
        min-height: 280px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .btn { padding: 10px 22px; font-size: 0.8rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { padding: 15px; }
    .contact-info { padding: 25px; }
    .contact-form-section { padding: 25px; }
    .map-section { padding: 40px 0; }
    .map-section iframe { height: 350px; }
}

/* =====================================================
   POLICY PAGES (Privacy, Cookie, Terms)
   ===================================================== */
.policy-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.policy-content {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    background: var(--light-gray);
    padding: 20px 25px;
    border-left: 4px solid var(--gold);
    border-radius: 6px;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.policy-content h2 {
    color: var(--navy);
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content h4 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.policy-content ul,
.policy-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.policy-content li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: var(--gray-700);
}

.policy-content strong {
    color: var(--navy);
    font-weight: 600;
}

.policy-content a {
    color: var(--gold);
    font-weight: 600;
    transition: all 0.3s ease;
}

.policy-content a:hover {
    color: var(--navy);
    text-decoration: underline;
}

.contact-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-box h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 20px;
    margin-top: 0;
}

.contact-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-box i {
    color: var(--gold);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.contact-box a {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: var(--gold);
    text-decoration: none;
}

.policy-footer {
    margin-top: 40px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--gold);
}

.policy-footer strong {
    color: var(--navy);
    font-size: 1rem;
}

/* Cookie Policy Specific Styles */
.cookie-table {
    margin: 25px 0;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.cookie-table thead {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.cookie-table th {
    padding: 15px 20px;
    text-align: left;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-heading);
}

.cookie-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 0.9rem;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:hover {
    background: var(--light-gray);
}

.cookie-table td:first-child {
    font-weight: 600;
    color: var(--navy);
}

.warning-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.warning-box i {
    color: #ffc107;
    font-size: 1.3rem;
    margin-top: 2px;
}

.warning-box strong {
    color: #856404;
}

.warning-box p {
    margin: 0;
    color: #856404;
}

/* Policy Pages Responsive */
@media (max-width: 768px) {
    .policy-content {
        padding: 30px 25px;
        border-radius: 8px;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }

    .policy-content h3 {
        font-size: 1.2rem;
    }

    .contact-box {
        padding: 25px 20px;
    }

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0;
    }

    .policy-content {
        padding: 25px 20px;
    }

    .policy-content h2 {
        font-size: 1.3rem;
        margin-top: 30px;
    }

    .policy-intro {
        padding: 15px 20px;
    }

    .contact-box {
        padding: 20px 15px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

/* =====================================================
   COOKIE CONSENT BANNER
   ===================================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--gold);
}

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

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-icon {
    flex-shrink: 0;
}

.cookie-icon i {
    font-size: 2.5rem;
    color: var(--gold);
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.cookie-text p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-text a:hover {
    color: var(--gold-dark);
}

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

.cookie-buttons .btn {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 15px;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-icon i {
        font-size: 2rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

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