/* Flex layout for emphasis section with image */
.emphasis-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.emphasis-image-wrapper {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.emphasis-image {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    background: #fff;
    transition: all 0.4s ease;
    cursor: pointer;
}

.emphasis-image:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 48px rgba(0, 71, 171, 0.35);
}

@media (max-width: 900px) {
    .emphasis-flex {
        flex-direction: column;
        gap: 32px;
    }
    .emphasis-image-wrapper {
        margin-top: 24px;
        width: 100%;
    }
    .emphasis-image {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .emphasis-flex {
        gap: 24px;
    }
    
    .emphasis-content {
        max-width: 100%;
    }
    
    .emphasis-content h2 {
        font-size: clamp(1.4rem, 6vw, 2rem) !important;
    }
    
    .emphasis-cta-grid {
        grid-template-columns: 1fr;
    }
}
/* Real Trackers - COMPLETE PREMIUM CSS WITH FULL MOBILE RESPONSIVE */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Force Poppins across the entire site */
*, *::before, *::after {
    font-family: 'Poppins', sans-serif !important;
}

:root {
    --primary-blue: #0057D9;
    --navy-blue: #002748;
    --light-blue: #2B8AF6;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #343A40;
    --text-primary: #1A1A1A;
    --text-secondary: #6C757D;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--navy-blue) 100%);
    --gradient-light: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 71, 171, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 71, 171, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 71, 171, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 71, 171, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    padding-top: 120px;
}

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

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

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

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

/* ===== UTILITY BAR ===== */
.utility-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-blue);
    z-index: 1001;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.utility-bar.hide {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

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

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

.utility-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
    width: 36px;
    height: 34px;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-blue);
    transition: var(--transition);
}

.utility-social a:hover {
    background: var(--navy-blue);
    color: var(--white);
    transform: translateY(-2px) scale(1.05);
}

.utility-contact {
    display: flex;
    gap: 30px;
    align-items: center;
}

.utility-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.utility-item:hover {
    opacity: 0.85;
}

.utility-item svg {
    flex-shrink: 0;
}

.utility-item span {
    white-space: nowrap;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 48px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: top 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.no-utility {
    top: 0;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 1);
}

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

.nav-logo img {
    height: 85px;
    width: 95px;
    object-fit: contain;
}

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

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy-blue);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.enquiry-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.nav-link.enquiry-btn::after {
    display: none;
}

.nav-link.enquiry-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-link.feedback-btn {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
}

.nav-link.feedback-btn::after {
    display: none;
}

.nav-link.feedback-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: var(--navy-blue);
    border: none;
    cursor: pointer;
    padding: 14px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

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

/* Hamburger -> X transform when active */
.nav-toggle .bar {
    display: block;
    transition: transform 0.28s ease, opacity 0.2s ease;
}
.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 20px 0 80px;
    overflow: hidden;
    width: 100%;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    max-width: 1100px;
    text-align: left;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-blue);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5.8vw, 4.2rem);
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.15;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.85);
    text-transform: uppercase;
}

.hero-gradient {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    display: inline-block;
    font-weight: 900;
}

.hero-accent {
    color: #0066FF !important;
    -webkit-text-fill-color: #0066FF !important;
    text-shadow: 0 4px 22px rgba(0, 54, 153, 0.45);
    -webkit-text-stroke: 0.6px rgba(0, 0, 0, 0.12);
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    color: var(--white);
    max-width: 850px;
    margin: 0 0 45px;
    line-height: 1.85;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 70px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-full {
    width: 100%;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 45px;
    max-width: 900px;
}

.stat-item {
    text-align: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.4);
    padding: 25px 20px;
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #FFFFFF 0%, #4A90E2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.95;
    font-weight: 500;
}

.hero-scroll {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    animation: bounce 2s infinite;
    z-index: 3;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-12px);
    }
}

/* ===== TYPING STRIP ===== */
.typing-strip {
    background: linear-gradient(180deg, rgba(0,71,171,0.95) 0%, rgba(0,71,171,0.98) 100%);
    border-top: 3px solid var(--navy-blue);
    border-bottom: 3px solid var(--navy-blue);
    position: relative;
    z-index: 1;
    height: 80px;
    min-height: 80px;
    max-height: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.typing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    overflow: hidden;
}

.typing-text {
    color: var(--white);
    font-weight: 600;
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-family: 'Poppins', sans-serif;
    height: 1.5rem;
    line-height: 1.5rem;
    overflow: hidden;
}



@keyframes blink {
    0% { opacity: 1 }
    50% { opacity: 0 }
    100% { opacity: 1 }
}

/* ===== K9 TRANSITION SECTION ===== */
.k9-transition {
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: var(--light-gray);
    margin: 0;
    padding: 0;
}

.k9-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.k9-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===== EMPHASIS SECTION ===== */
.emphasis-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--navy-blue) 100%);
    padding: 80px 20px;
}

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

.emphasis-content h2 {
    color: #FFFFFF;
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    margin-bottom: 16px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
}

.emphasis-content h2 .highlight-text {
    background: linear-gradient(135deg, #2B8AF6 0%, #0057D9 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.15em;
    position: relative;
    display: inline-block;
    padding: 0 8px;
}

.emphasis-content h2 .highlight-text::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2B8AF6, #0057D9);
    border-radius: 2px;
}

.emphasis-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    margin-bottom: 45px;
    line-height: 1.8;
}

.emphasis-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 550px;
    margin: 0 auto;
}

.emphasis-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
}

.email-btn {
    background: var(--white);
    color: var(--primary-blue);
    border: 2.5px solid #000000;
}

.email-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.whatsapp-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #25D366;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
}

.whatsapp-btn:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ===== APPROACH SECTION ===== */
.approach-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-gray) 100%);
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 40px;
    align-items: start;
}

.approach-highlight {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 40px;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.approach-icon {
    color: var(--primary-blue);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-highlight h3 {
    font-size: 2rem;
    color: var(--navy-blue);
    margin-bottom: 16px;
}

.approach-highlight p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.approach-points {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 0;
}

.approach-point {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.approach-point:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.approach-point-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.approach-point h4 {
    color: var(--navy-blue);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.approach-point p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.approach-cctv-image {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    align-self: stretch;
}

.approach-cta {
    grid-column: 1 / -1;
    grid-row: 3;
    text-align: center;
    margin-top: 40px;
}

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

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    margin-bottom: 18px;
}

.section-description {
    font-size: 1.18rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

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

.about-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    margin: 70px 0 90px;
}

.about-intro-content h3 {
    font-size: 2.2rem;
    margin-bottom: 28px;
    color: var(--navy-blue);
}

.about-intro-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-intro-text.collapsed {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.about-intro-text.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--white));
}

.about-intro-text p {
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 15px;
    margin-top: 20px;
    cursor: pointer;
    transition: var(--transition);
    background: none;
    border: none;
    padding: 0;
}

.read-more-btn:hover {
    color: var(--navy-blue);
    gap: 12px;
}

.about-intro-image {
    position: relative;
}

.about-mockup {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.about-stats-overlay {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    width: 95%;
    flex-direction: row;
    z-index: 2;
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    background: rgba(255,255,255,0.18);
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.10);
}

.stat-overlay-item {
    flex: 1;
    background: rgba(255,255,255,0.55);
    padding: 25px 20px;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.08);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
}

.stat-overlay-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-overlay-item h4 {
    font-size: 2.2rem;
    color: #232a3d;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(255,255,255,0.18);
}

.stat-overlay-item p {
    font-size: 0.92rem;
    color: #232a3d;
    font-weight: 500;
    opacity: 0.85;
}

.about-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 45px;
    margin-bottom: 90px;
}

.vision-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 55px;
    border-radius: 20px;
    transition: var(--transition);
}

.vision-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.vision-icon {
    width: 75px;
    height: 75px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.vision-card h3 {
    font-size: 1.9rem;
    color: var(--white);
    margin-bottom: 18px;
}

.vision-card p {
    line-height: 1.85;
    opacity: 0.96;
}

.core-values {
    background: var(--light-gray);
    padding: 70px;
    border-radius: 25px;
}

.values-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
}

.mobile-break {
    display: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 32px;
}

.value-item {
    background: var(--white);
    padding: 35px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transition: var(--transition);
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-item svg {
    color: var(--primary-blue);
}

.value-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.12rem;
    text-align: center;
}

/* ===== SERVICES ===== */
.services-section {
    padding: 100px 20px;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 35px;
}

.service-card {
    background: var(--white);
    padding: 45px;
    border-radius: 18px;
    transition: var(--transition);
    border-top: 4px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 71, 171, 0.25);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

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

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
    padding: 100px 20px;
    background: var(--white);
}

.why-choose-image {
    display: block;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    margin: 18px 0 22px;
    border-radius: 0;
    object-fit: cover;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 45px;
}

.feature-card {
    background: var(--light-gray);
    padding: 45px;
    border-radius: 18px;
    transition: var(--transition);
    border-left: 5px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateX(12px);
}

.feature-number {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.85;
}

/* ===== CLIENTS ===== */
.clients-section {
    padding: 100px 20px;
    background: var(--navy-blue);
    color: var(--white);
}

.clients-section .section-badge {
    background: rgba(255, 255, 255, 0.22);
}

.clients-section .section-title,
.clients-section .section-description {
    color: var(--white);
}

.clients-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 45px;
    margin-top: 70px;
}

.client-highlight {
    background: rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 45px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    transition: var(--transition);
}

.client-highlight:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.client-image-placeholder {
    width: 110px;
    height: 110px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.client-highlight h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.client-address,
.client-phone {
    opacity: 0.92;
    margin-bottom: 10px;
}

.client-testimonials {
    background: rgba(255, 255, 255, 0.08);
    padding: 45px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.client-testimonials h3 {
    color: var(--white);
    font-size: 1.9rem;
    margin-bottom: 35px;
}

.testimonial-item {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-item:last-child {
    border-bottom: none;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 14px;
    line-height: 1.85;
}

.testimonial-item span {
    font-weight: 600;
    opacity: 0.85;
}

/* ===== REDESIGNED NEWS SECTION ===== */
.news-section {
    padding: 100px 20px;
    background: var(--white);
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.featured-news {
    background: linear-gradient(135deg, rgba(0, 71, 171, 0.05) 0%, rgba(0, 71, 171, 0.1) 100%);
    border-radius: 20px;
    padding: 50px;
    border-left: 5px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.featured-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
}

.featured-news-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.featured-news-date {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-news-date svg {
    width: 16px;
    height: 16px;
}

.featured-news h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--navy-blue);
    line-height: 1.3;
}

.featured-news p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.featured-news-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    background: rgba(0, 71, 171, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.featured-news-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(8px);
}

.recent-news {
    display: flex;
    flex-direction: column;
}

.recent-news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.recent-news-title {
    font-size: 1.5rem;
    color: var(--navy-blue);
    font-weight: 700;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.view-all-link:hover {
    gap: 10px;
}

.news-timeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-timeline-item {
    padding-bottom: 25px;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
    padding-left: 25px;
}

.news-timeline-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.news-timeline-item::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 8px;
    width: 2px;
    height: calc(100% - 16px);
    background: var(--light-blue);
    opacity: 0.5;
}

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

.news-category {
    display: inline-block;
    background: rgba(0, 71, 171, 0.08);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.news-timeline-title {
    font-size: 1.1rem;
    color: var(--navy-blue);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: var(--transition);
}

.news-timeline-item:hover .news-timeline-title {
    color: var(--primary-blue);
}

.news-timeline-date {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-timeline-date svg {
    width: 12px;
    height: 12px;
}

/* News Updates List */
.news-updates {
    margin-top: 40px;
    background: var(--light-gray);
    border-radius: 15px;
    padding: 25px;
}

.news-updates-title {
    font-size: 1.2rem;
    color: var(--navy-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-updates-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-update-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

.news-update-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.update-badge {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

.update-text {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.5;
}

.update-time {
    font-size: 11px;
    color: var(--text-secondary);
    margin-left: auto;
    flex-shrink: 0;
}

/* Mobile Responsive for New News Section */
@media (max-width: 1024px) {
    .news-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-news {
        padding: 40px;
    }
    
    .featured-news h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 60px 15px;
    }
    
    .featured-news {
        padding: 30px;
    }
    
    .featured-news h3 {
        font-size: 1.6rem;
    }
    
    .recent-news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .news-updates {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .featured-news {
        padding: 25px;
    }
    
    .featured-news h3 {
        font-size: 1.4rem;
    }
    
    .featured-news-link {
        width: 100%;
        justify-content: center;
    }
    
    .news-timeline-item {
        padding-left: 20px;
    }
}
/* ===== CONTRACT ===== */
.contract-section {
    padding: 100px 20px;
    background: var(--white);
}

.contract-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 70px;
}

.contract-item {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 18px;
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contract-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.contract-item h4 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--navy-blue);
}

.contract-item p {
    color: var(--text-secondary);
    line-height: 1.85;
}

.contract-cta {
    text-align: center;
    background: var(--light-gray);
    padding: 55px;
    border-radius: 18px;
}

.contract-cta p {
    font-size: 1.25rem;
    margin-bottom: 28px;
    color: var(--text-primary);
}

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

.faq-container {
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 14px;
    margin-bottom: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 28px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h4 {
    font-size: 1.18rem;
    font-weight: 600;
}

.faq-question svg {
    color: var(--primary-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 35px;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 35px 28px 35px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.85;
}

/* ===== CONTACT WITH MAP BESIDE ===== */
.contact-section {
    padding: 100px 20px;
    background: var(--white);
}

.contact-wrapper-outer {
    margin-top: 70px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(12px);
}

.contact-icon {
    width: 65px;
    height: 65px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(0, 71, 171, 0.25);
}

.contact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.contact-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.location-map-container {
    height: 100%;
    width: 100%;
}

.location-map {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 500px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: 45px;
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    max-width: 900px;
    margin: 80px auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-bottom: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-weight: 600;
    color: var(--navy-blue);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 71, 171, 0.1);
}

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

/* ===== FEEDBACK ===== */
.feedback-section {
    padding: 100px 20px;
    background: var(--light-gray);
}

.feedback-form {
    max-width: 850px;
    margin: 0 auto;
    background: var(--white);
    padding: 55px;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
}

.rating-stars {
    display: flex;
    gap: 12px;
    margin: 12px 0;
    justify-content: center;
}

.rating-stars span {
    font-size: 2.8rem;
    color: #DDD;
    cursor: pointer;
    transition: var(--transition);
}

.rating-stars span:hover,
.rating-stars span.active {
    color: #FFD700;
    transform: scale(1.1);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-blue);
    color: var(--white);
    padding: 90px 20px 35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
    margin-bottom: 70px;
}

.footer-logo {
    height: 55px;
    margin-bottom: 22px;
}

.footer-desc {
    opacity: 0.92;
    line-height: 1.85;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    display: inline-flex;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.footer-col h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 22px;
}

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

.footer-col li {
    margin-bottom: 14px;
}

.footer-col a {
    opacity: 0.85;
    transition: var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--light-blue);
    padding-left: 6px;
}

.footer-contact li {
    opacity: 0.92;
    margin-bottom: 14px;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    opacity: 0.85;
    margin-bottom: 10px;
    font-size: 14px;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 18px;
    max-width: 650px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    padding: 35px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.9rem;
    color: var(--navy-blue);
}

.modal-close {
    font-size: 2.2rem;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--primary-blue);
    background: var(--light-gray);
    border-radius: 50%;
}

.modal-form {
    padding: 35px;
}

/* ========================================
   COMPLETE MOBILE RESPONSIVE CSS
   ======================================== */

@media (max-width: 1200px) {
    .about-intro {
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    body {
        padding-top: 100px;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats-overlay {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 20px;
        flex-direction: column;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .approach-points {
        grid-column: 1;
        grid-row: auto;
        margin-bottom: 30px;
    }
    
    .approach-cctv-image {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
        height: 400px;
    }
    
    .location-map {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    /* Body & Layout */
    body {
        padding-top: 80px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Utility Bar Hide on Mobile */
    .utility-bar {
        display: none;
    }

    /* ===== MOBILE NAVIGATION FIX =====*/
    .navbar {
        top: 0;
        height: 80px;
    }

    .nav-container {
        height: 80px;
        padding: 0 15px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, #001F3F 0%, #0047AB 50%, #4A90E2 100%);
        width: 100%;
        padding: 24px 20px;
        box-shadow: var(--shadow-xl);
        transition: left 0.28s ease !important;
        align-items: stretch;
        gap: 1.5rem;
        max-height: calc(100vh - 80px);
        height: auto;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        padding: 16px 18px;
        font-size: 16px;
        color: var(--white) !important;
        border-radius: 8px;
    }

    .nav-link::after {
        display: none !important;
    }

    .nav-link:not(.enquiry-btn):not(.feedback-btn).active {
        background: rgba(255, 255, 255, 0.2) !important;
        font-weight: 600;
    }

    .nav-link.enquiry-btn {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        margin: 12px 0 8px 0 !important;
        font-size: 15px !important;
        background: var(--gradient-primary) !important;
        color: var(--white) !important;
        border-radius: 10px !important;
        box-shadow: var(--shadow-sm) !important;
    }

    .nav-link.feedback-btn {
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        font-size: 15px !important;
        border: 2px solid var(--primary-blue) !important;
        color: var(--primary-blue) !important;
        border-radius: 10px !important;
        background: var(--white) !important;
    }

    /* ===== HERO MOBILE ===== */
    .hero {
        padding: 0 20px !important;
        min-height: 38vh;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        padding: 0;
    }

    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.15 !important;
        color: #fff !important;
        font-weight: 800 !important;
        letter-spacing: -1px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.25);
    }

    .hero-title *,
    .hero-title span,
    .hero-title strong {
        color: #fff !important;
        background: none !important;
        -webkit-text-fill-color: #fff !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.18);
    }

    .hero-title .hero-gradient,
    .hero-title .hero-accent {
        color: #fff !important;
        background: none !important;
        -webkit-text-fill-color: unset !important;
    }

    .hero-slider {
        max-height: 48vh;
        height: 48vh;
        min-height: 220px;
        overflow: hidden;
        width: 100vw;
        left: 50%;
        right: 50%;
        transform: translateX(-50%);
    }

    .hero-slide img {
        width: 100vw;
        height: 48vh;
        min-height: 220px;
        object-fit: cover;
        object-position: center top;
        display: block;
        margin: 0 auto;
    }

    .hero-gradient {
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: var(--primary-blue) !important;
        color: var(--primary-blue) !important;
    }

    .hero-subtitle {
        font-size: 1.15rem !important;
        line-height: 1.6 !important;
        margin: 0 auto 25px !important;
        padding: 18px !important;
        max-width: 95% !important;
        background: rgba(0, 0, 0, 0.6) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        backdrop-filter: blur(8px) !important;
        border-radius: 12px !important;
    }

    .hero-cta {
        flex-direction: column;
        gap: 12px !important;
        margin-bottom: 25px !important;
        justify-content: center !important;
    }

    .hero-cta .btn {    
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-stats {
        display: none !important;
    }

    /* ===== TYPING STRIP MOBILE ===== */
    .typing-strip {
        height: 70px !important;
        background: linear-gradient(180deg, rgba(0,71,171,1) 0%, rgba(0,71,171,1) 100%) !important;
    }

    .typing-container {
        padding: 0 12px !important;
    }

    .typing-text {
        font-size: 0.95rem !important;
        height: 1.3rem !important;
        line-height: 1.3rem !important;
        color: white !important;
    }

    /* ===== K9 TRANSITION ===== */
    .k9-transition {
        height: 300px;
    }

    /* ===== ABOUT SECTION MOBILE ORDERING FIX ===== */
    .about-mobile-wrapper {
        display: flex;
        flex-direction: column;
    }

    .about-header-desktop {
        order: 1;
        margin-bottom: 30px;
    }

    .about-intro-image {
        order: 2;
        margin-bottom: 30px;
    }

    .about-intro-content {
        order: 3;
    }

    .about-intro {
        display: contents;
    }

    .about-stats-overlay {
        flex-direction: column;
        gap: 15px;
    }

    .stat-overlay-item {
        flex: 0 0 100%;
    }

    /* ===== CONTACT MAP MOBILE ===== */
    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .location-map {
        min-height: 300px;
    }

    /* Sections Mobile Padding */
    .approach-section,
    .about-section,
    .services-section,
    .why-choose-section,
    .emphasis-section,
    .clients-section,
    .news-section,
    .contract-section,
    .faq-section,
    .contact-section,
    .feedback-section {
        padding: 60px 15px;
    }

    /* ===== EMPHASIS SECTION MOBILE ===== */
    .emphasis-content {
        max-width: 100% !important;
        padding: 0 10px;
    }

    .emphasis-content h2 {
        font-size: clamp(1.4rem, 5.5vw, 2.2rem) !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }

    .emphasis-content p {
        font-size: 0.95rem !important;
        margin-bottom: 30px !important;
        line-height: 1.7 !important;
    }

    .emphasis-cta-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        max-width: 100% !important;
    }

    .emphasis-btn {
        padding: 14px 20px !important;
        font-size: 0.9rem !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .emphasis-btn svg {
        width: 20px !important;
        height: 20px !important;
    }

    /* General Grids to Single Column */
    .approach-points,
    .about-vision,
    .services-grid,
    .features-grid,
    .clients-showcase,
    .news-grid,
    .contract-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Values Grid Mobile */
    .values-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 20px;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .value-item {
        flex: 0 0 calc(50% - 10px);
        padding: 25px;
        min-height: 200px;
        scroll-snap-align: start;
    }

    /* Why Choose Image Mobile */
    .why-choose-image {
        border-radius: 12px;
        margin: 18px 0 22px;
    }
}

@media (max-width: 480px) {
    /* ===== EMPHASIS SECTION EXTRA SMALL ===== */
    .emphasis-section {
        padding: 50px 12px !important;
    }

    .emphasis-content h2 {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
    }

    .emphasis-content p {
        font-size: 0.9rem !important;
        margin-bottom: 25px !important;
    }

    .emphasis-btn {
        padding: 12px 16px !important;
        font-size: 0.85rem !important;
    }

    .hero {
        min-height: 85vh;
        padding-top: 60px !important;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        padding: 15px !important;
        border-radius: 10px !important;
    }
    
    .hero-cta .btn {
        padding: 14px 20px !important;
        font-size: 14px !important;
    }
    
    .k9-transition {
        height: 250px;
    }
    
    .typing-strip {
        height: 60px !important;
    }
    
    .typing-text {
        font-size: 0.85rem !important;
    }
    
    .values-grid {
        gap: 15px;
    }
    
    .value-item {
        flex: 0 0 140px;
        padding: 20px;
        min-height: 180px;
    }
    
    .stat-overlay-item h4 {
        font-size: 1.8rem;
    }
    
    .vision-card {
        padding: 35px;
    }
    
    .core-values {
        padding: 40px 25px;
    }
    
    .values-title {
        font-size: 1.8rem;
    }
    
    .mobile-break {
        display: block;
    }
}

/* Ensure hero accent text (e.g. "Class Security") is blue on all devices */
.hero .hero-accent,
.hero-title .hero-accent,
.hero-accent {
    color: var(--primary-blue) !important;
    -webkit-text-fill-color: var(--primary-blue) !important;
    text-shadow: 0 4px 22px rgba(0, 54, 153, 0.45) !important;
}

/* Ensure hero background shows brand blue where slides/images don't fully cover */
.hero,
.hero-slider {
    background-color: var(--primary-blue);
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--navy-blue) 100%);
}

/* Force slides' images to fully cover the hero container to avoid uncovered edges */
.hero-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}