/* =====================
   Variables & Reset
   ===================== */
:root {
    --gold: #D0B96D;
    --gold-light: #E5D08A;
    --gold-dark: #B59F5A;
    --black: #292B2B;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --grey-medium: #666666;
    --grey-light: #999999;
    --green: #2E5A3F;
    --orange: #D2691E;
    --blue: #4ECDC4;
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #292B2B 100%);
    --gradient-gold: linear-gradient(135deg, #D0B96D 0%, #B59F5A 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.15);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(208, 185, 109, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* =====================
   Typography
   ===================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 900;
}

.section-title .highlight {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(208, 185, 109, 0.3);
}

/* =====================
   Navigation
   ===================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(208, 185, 109, 0.1);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(26, 26, 26, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 0 10px rgba(208, 185, 109, 0.5));
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(208, 185, 109, 0.4);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

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

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.emergency-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 30px;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(208, 185, 109, 0.3);
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(208, 185, 109, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: var(--transition);
}

/* =====================
   Hero Section
   ===================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 40px;
    contain: layout;
    isolation: isolate;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    contain: strict;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(26, 26, 26, 0.7) 0%, 
        rgba(26, 26, 26, 0.4) 50%, 
        rgba(26, 26, 26, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(208, 185, 109, 0.5);
}

.indicator:hover {
    background: rgba(208, 185, 109, 0.8);
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    padding: 40px 30px;
    padding-bottom: 80px;
    margin-top: 0;
    contain: layout;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(208, 185, 109, 0.1);
    border: 1px solid rgba(208, 185, 109, 0.3);
    border-radius: 30px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
}

.pulse {
    position: absolute;
    left: 10px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(208, 185, 109, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(208, 185, 109, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(208, 185, 109, 0);
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 25px;
    margin-top: 30px;
    letter-spacing: -0.5px;
    padding: 0 10px;
}

.title-line-1 {
    display: block;
    color: var(--white);
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.title-line-2 {
    display: block;
    color: var(--gold);
    opacity: 0;
    animation: slideInRight 0.8s ease 0.2s forwards;
}

.title-line-3 {
    display: block;
    color: var(--white);
    opacity: 0;
    animation: slideInLeft 0.8s ease 0.4s forwards;
}

.glow-text {
    text-shadow: 
        0 0 10px rgba(208, 185, 109, 0.5),
        0 0 20px rgba(208, 185, 109, 0.4),
        0 0 30px rgba(208, 185, 109, 0.3),
        0 0 40px rgba(208, 185, 109, 0.2);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px rgba(208, 185, 109, 0.5),
            0 0 20px rgba(208, 185, 109, 0.4),
            0 0 30px rgba(208, 185, 109, 0.3);
    }
    to {
        text-shadow: 
            0 0 20px rgba(208, 185, 109, 0.6),
            0 0 30px rgba(208, 185, 109, 0.5),
            0 0 40px rgba(208, 185, 109, 0.4);
    }
}

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

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

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: var(--grey-light);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.stat-card {
    text-align: center;
    padding: 20px;
    background: rgba(208, 185, 109, 0.05);
    border: 1px solid rgba(208, 185, 109, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(208, 185, 109, 0.4);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--grey-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

/* =====================
   Buttons
   ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: 0 5px 15px rgba(208, 185, 109, 0.3);
    font-weight: 700;
    min-width: 200px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(208, 185, 109, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(208, 185, 109, 0.5);
}

.btn-secondary:hover {
    background: rgba(208, 185, 109, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

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

/* =====================
   Video Play Button
   ===================== */
.video-play-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 50px;
    padding: 12px 25px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    min-width: 200px;
    justify-content: center;
}

.play-icon {
    width: 35px;
    height: 35px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--black);
    transition: var(--transition);
    flex-shrink: 0;
}

.play-icon i {
    margin-left: 3px; /* Center the play triangle */
    font-size: 12px;
}

.play-text {
    font-size: 14px;
    font-weight: 700;
}

.glow-ring {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid var(--gold);
    border-radius: 55px;
    opacity: 0;
    animation: glow-pulse 2s infinite;
    pointer-events: none;
}

.pulse-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(208, 185, 109, 0.2);
    border-radius: 60px;
    animation: pulse-expand 3s infinite;
    pointer-events: none;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes pulse-expand {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

.video-play-button:hover {
    transform: translateY(-2px);
    background: rgba(208, 185, 109, 0.1);
    box-shadow: 0 5px 20px rgba(208, 185, 109, 0.3);
    border-color: var(--gold-light);
}

.video-play-button:hover .play-icon {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(208, 185, 109, 0.5);
}

.video-play-button:hover .glow-ring {
    animation-duration: 1s;
}

/* =====================
   Video Modal
   ===================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--black);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(208, 185, 109, 0.2);
}

.modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-close:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(208, 185, 109, 0.6);
}

.video-container {
    position: relative;
    width: 80vw;
    max-width: 1000px;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* =====================
   Scroll Indicator
   ===================== */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--grey-light);
    font-size: 12px;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
    z-index: 2;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel 1.5s infinite;
}

@keyframes wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =====================
   Services Section
   ===================== */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #292B2B 100%);
    position: relative;
    z-index: 10;
    isolation: isolate;
}

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

.section-subtitle {
    color: var(--grey-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(208, 185, 109, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(208, 185, 109, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.service-card.featured {
    border-color: rgba(208, 185, 109, 0.3);
    background: rgba(208, 185, 109, 0.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background: var(--gradient-gold);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 36px;
    color: var(--gold);
    z-index: 1;
    position: relative;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(208, 185, 109, 0.1);
    border-radius: 50%;
    animation: pulse-slow 3s infinite;
}

@keyframes pulse-slow {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    color: var(--grey-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--grey-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--gold);
    font-size: 12px;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 15px;
}

/* =====================
   Leadership Section
   ===================== */
.leadership {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #292B2B 100%);
}

.leadership-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.md-profile {
    position: relative;
}

.md-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    padding: 20px;
}

.md-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.md-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.md-info {
    padding: 20px 0;
}

.md-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
}

.md-title {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 5px;
}

.md-company {
    color: var(--grey-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.md-description .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--grey-light);
    margin-bottom: 40px;
}

.md-achievements {
    margin-bottom: 40px;
}

.achievement {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(208, 185, 109, 0.1);
    border-radius: 15px;
    transition: var(--transition);
}

.achievement:hover {
    border-color: rgba(208, 185, 109, 0.3);
    background: rgba(208, 185, 109, 0.05);
}

.achievement i {
    font-size: 28px;
    color: var(--gold);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(208, 185, 109, 0.1);
    border-radius: 12px;
}

.achievement h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
}

.achievement p {
    color: var(--grey-light);
    line-height: 1.6;
}

.md-quote {
    background: rgba(208, 185, 109, 0.05);
    border-left: 4px solid var(--gold);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    position: relative;
}

.md-quote i {
    font-size: 30px;
    color: var(--gold);
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.3;
}

.md-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.7;
    margin: 0 0 15px 40px;
}

.md-quote cite {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    margin-left: 40px;
}

.md-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(208, 185, 109, 0.2);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-btn:hover {
    background: var(--gradient-gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.contact-btn i {
    font-size: 16px;
    color: var(--gold);
}

.contact-btn:hover i {
    color: var(--black);
}

/* =====================
   Operations Team
   ===================== */
.operations-team {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid rgba(208, 185, 109, 0.2);
}

.team-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.team-title .highlight {
    color: var(--gold);
}

.team-subtitle {
    color: var(--grey-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(208, 185, 109, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(208, 185, 109, 0.3);
    box-shadow: 0 20px 50px rgba(208, 185, 109, 0.1);
}

.team-member {
    padding: 30px;
}

.member-image {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    background: var(--gradient-gold);
    padding: 4px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
}

.member-overlay {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--black);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .member-overlay {
    opacity: 1;
    bottom: -15px;
}

.member-info {
    text-align: center;
    padding-top: 10px;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.member-position {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-details {
    margin-bottom: 25px;
}

.member-details p {
    color: var(--grey-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.expertise-tag {
    background: rgba(208, 185, 109, 0.1);
    border: 1px solid rgba(208, 185, 109, 0.3);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--grey-light);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    padding: 8px 0;
}

.contact-link:hover {
    color: var(--gold);
}

.contact-link i {
    width: 20px;
    text-align: center;
    color: var(--gold);
}

/* =====================
   Video Showcase Section
   ===================== */
.video-showcase {
    background: var(--gradient-dark);
    padding: 60px 0;
    position: relative;
}

.video-showcase .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-header {
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
}

.video-header .section-tag {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.video-header .section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    line-height: 1.2;
}

.video-header .section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.video-main {
    margin-bottom: 40px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(208, 185, 109, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.video-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.video-feature i {
    color: var(--gold);
    font-size: 1.1rem;
}

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

.video-cta .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .video-showcase {
        padding: 40px 0;
    }
    
    .video-header .section-title {
        font-size: 1.8rem;
    }
    
    .video-header .section-subtitle {
        font-size: 0.9rem;
    }
    
    .video-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .video-cta {
        width: 100%;
    }
    
    .video-cta .btn {
        flex: 1;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .video-features {
        width: 100%;
    }
    
    .video-feature {
        justify-content: center;
    }
    
    .video-cta {
        flex-direction: column;
    }
    
    .video-cta .btn {
        width: 100%;
    }
}

/* =====================
   About Section
   ===================== */
.about {
    padding: 100px 0;
    background: var(--black);
}

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

.lead {
    font-size: 1.2rem;
    color: var(--grey-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature i {
    font-size: 24px;
    color: var(--gold);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(208, 185, 109, 0.1);
    border-radius: 10px;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature p {
    color: var(--grey-light);
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px;
    background: rgba(208, 185, 109, 0.05);
    border: 1px solid rgba(208, 185, 109, 0.1);
    border-radius: 15px;
}

.about-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.about-actions .btn {
    padding: 15px 30px;
}

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

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--grey-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    position: relative;
}

.image-stack {
    position: relative;
    height: 700px;
}

.stack-image {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    object-position: center;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.stack-image.main {
    width: 450px;
    height: 675px;
    top: 0;
    right: 0;
    z-index: 2;
    border: 3px solid rgba(208, 185, 109, 0.3);
}

.stack-image.secondary {
    width: 300px;
    height: 200px;
    bottom: 20px;
    left: 0;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    z-index: 3;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================
   Technology Section
   ===================== */
.technology {
    padding: 100px 0;
    background: linear-gradient(180deg, #292B2B 0%, #1a1a1a 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.tech-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

.tech-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.tech-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tech-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(208, 185, 109, 0.1);
    border-radius: 15px;
    transition: var(--transition);
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: rgba(208, 185, 109, 0.3);
    background: rgba(208, 185, 109, 0.05);
}

.tech-card i {
    font-size: 30px;
    color: var(--gold);
    margin-bottom: 15px;
}

.tech-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.tech-card p {
    color: var(--grey-light);
    font-size: 0.9rem;
}

.tech-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.tech-actions .btn {
    padding: 15px 30px;
}

/* =====================
   Our Team Section
   ===================== */
.our-team {
    padding: 100px 0;
    background: var(--black);
}

.team-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(208, 185, 109, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    align-items: center;
}

.team-card:hover {
    border-color: rgba(208, 185, 109, 0.3);
    background: rgba(208, 185, 109, 0.05);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-card.featured {
    border-color: rgba(208, 185, 109, 0.3);
    background: rgba(208, 185, 109, 0.08);
}

.team-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.certification-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.certification-badge.psira {
    background: linear-gradient(135deg, #2E5A3F 0%, #4CAF50 100%);
    color: var(--white);
}

.certification-badge.saidsa {
    background: linear-gradient(135deg, #D2691E 0%, #FF8C00 100%);
    color: var(--white);
}

.certification-badge.tsasa {
    background: linear-gradient(135deg, #DC143C 0%, #FF6B6B 100%);
    color: var(--white);
}

.team-content h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 700;
}

.team-content p {
    color: var(--grey-light);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.team-features {
    list-style: none;
    margin-bottom: 20px;
}

.team-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--grey-light);
    font-size: 1rem;
}

.team-features i {
    color: var(--gold);
    font-size: 14px;
    width: 16px;
}

.team-stats {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(208, 185, 109, 0.03) 0%, rgba(208, 185, 109, 0.08) 100%);
    border: 1px solid rgba(208, 185, 109, 0.15);
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(10px);
}

.stat-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(208, 185, 109, 0.4);
}

.stat-label {
    color: var(--grey-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* =====================
   CTA Section
   ===================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(208, 185, 109, 0.1) 0%, rgba(208, 185, 109, 0.05) 100%);
    border-top: 1px solid rgba(208, 185, 109, 0.2);
    border-bottom: 1px solid rgba(208, 185, 109, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 200px;
    height: 200px;
    background: url('images/PEG security BG Image.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.03;
    transform: translateY(-50%) rotate(15deg);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 200px;
    height: 200px;
    background: url('images/PEG security BG Image.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.03;
    transform: translateY(-50%) rotate(-15deg);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--grey-light);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--grey-light);
    font-size: 0.9rem;
}

.badge i {
    font-size: 20px;
    color: var(--gold);
}

/* =====================
   Contact Section
   ===================== */
.contact {
    padding: 100px 0;
    background: var(--black);
}

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

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: var(--gold);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 20px;
    color: var(--gold);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(208, 185, 109, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--grey-light);
}

.certifications h4 {
    margin-bottom: 15px;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cert-badges span {
    padding: 8px 15px;
    background: rgba(208, 185, 109, 0.1);
    border: 1px solid rgba(208, 185, 109, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--gold);
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(208, 185, 109, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group.full {
    grid-column: span 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(208, 185, 109, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(208, 185, 109, 0.05);
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    opacity: 0.5;
}

.form-group textarea + i {
    top: 20px;
    transform: none;
}

.btn-submit {
    width: 100%;
    justify-content: center;
}

/* =====================
   Footer
   ===================== */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(208, 185, 109, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--grey-light);
    margin-bottom: 10px;
}

.company-info {
    font-size: 0.9rem;
    color: var(--grey-medium);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
}

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

.footer ul a {
    color: var(--grey-light);
    text-decoration: none;
    transition: var(--transition);
}

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

.emergency-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--gradient-gold);
    border-radius: 30px;
    color: var(--black);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 15px 0;
    transition: var(--transition);
}

.emergency-number:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(208, 185, 109, 0.3);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(208, 185, 109, 0.1);
    border: 1px solid rgba(208, 185, 109, 0.3);
    border-radius: 50%;
    color: var(--gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--grey-light);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

/* =====================
   Back to Top
   ===================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(208, 185, 109, 0.4);
}

/* =====================
   Responsive Design
   ===================== */

/* Tablet Landscape and Small Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 30px;
    }
}

/* Tablet Portrait */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-stack {
        height: 500px;
    }
    
    .stack-image.main {
        width: 350px;
        height: 525px;
    }
}

/* Mobile and Tablet Styles */
@media (max-width: 768px) {
    /* Navigation Mobile Menu */
    .nav-menu {
        position: fixed;
        top: 70px;
        right: 0;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 30px 0;
        gap: 20px;
        backdrop-filter: blur(20px);
        z-index: 998;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        overflow-y: auto;
        max-height: calc(100vh - 70px);
    }

    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 16px;
        padding: 10px;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 999;
        position: relative;
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero Section Mobile */
    .hero {
        height: auto;
        min-height: calc(100vh - 70px);
        padding-top: 80px;
        padding-bottom: 30px;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        padding: 20px 15px;
        margin-top: 0;
        padding-bottom: 20px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 20px;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .stat-card {
        padding: 10px 5px;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        padding: 0;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .video-play-button {
        width: 100%;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* Leadership Mobile */
    .leadership-content {
        padding: 0 10px;
    }
    
    .md-image {
        padding: 15px;
    }
    
    /* Operations Team Mobile */
    .operations-team {
        margin-top: 60px;
        padding-top: 60px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-card {
        margin: 0 10px;
    }
    
    .member-expertise {
        justify-content: center;
    }
    
    .member-contact {
        gap: 8px;
    }
    
    /* Technology Mobile */
    .tech-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tech-card {
        padding: 25px 20px;
    }
    
    /* Contact Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .md-contact {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .team-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-image {
        height: 250px;
    }
    
    .stat-group {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    /* Typography Adjustments */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    /* Navigation */
    .nav-logo {
        gap: 10px;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    /* Hero Mobile Small */
    .hero {
        height: auto;
        min-height: calc(100vh - 60px);
        padding-top: 70px;
        padding-bottom: 20px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 10px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
        line-height: 1.2;
        margin-top: 5px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.4;
        padding: 0 10px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .stat-card {
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        text-align: right;
    }
    
    .hero-actions {
        gap: 10px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .btn {
        min-height: 44px;
        font-size: 0.8rem;
        padding: 10px 16px;
    }
    
    /* Team Stats */
    .stat-group {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .team-stats {
        padding: 30px 20px;
    }
    
    /* Team Cards */
    .team-card {
        padding: 20px 15px;
        gap: 20px;
    }
    
    .team-content h3 {
        font-size: 1.3rem;
    }
    
    .team-content p {
        font-size: 0.95rem;
    }
    
    .team-image {
        height: 200px;
    }
    
    /* About Section */
    .about-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .image-stack {
        height: 400px;
    }
    
    .stack-image.main {
        width: 280px;
        height: 420px;
    }
    
    .experience-badge {
        padding: 15px;
    }
    
    /* Footer */
    .footer-content {
        gap: 30px;
    }
    
    .emergency-number {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    /* Sections Padding */
    .services,
    .about,
    .technology,
    .our-team,
    .leadership,
    .contact {
        padding: 60px 0;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Modal */
    .video-container {
        width: 90vw;
    }
    
    .modal-content {
        padding: 15px;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 20px;
    }
}

