/* ==========================================================================
   CSS Variables & Base Reset
   ========================================================================== */
   :root {
    /* Colors */
    --clr-primary: #0B0F4F; /* Dark Blue */
    --clr-primary-light: #1A206B;
    --clr-accent: #00AEEF; /* Accent Blue */
    --clr-accent-hover: #0098D1;
    --clr-white: #FFFFFF;
    --clr-light: #F8F9FA;
    --clr-gray: #6C757D;
    --clr-gray-light: #E9ECEF;
    --clr-dark: #121212;
    --clr-text: #333333;
    
    /* Typography */
    --font-main: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    
    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(11, 15, 79, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--clr-text);
    background-color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding);
    scroll-margin-top: 80px;
}

.bg-light {
    background-color: var(--clr-light);
}

.bg-dark {
    background-color: var(--clr-primary);
}

.text-white {
    color: var(--clr-white);
}

.text-accent {
    color: var(--clr-accent);
}

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

/* Typography Classes */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--clr-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.bg-dark .section-title {
    color: var(--clr-white);
}

.bg-dark .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: var(--clr-white);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.3);
}

.btn-primary:hover {
    background-color: var(--clr-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 174, 239, 0.4);
}

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

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

/* ==========================================================================
   Header & Nav
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo a {
    position: relative;
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    transition: opacity 0.4s ease, height 0.4s ease;
}

.header.scrolled .logo img {
    height: 55px;
}

.logo-dark {
    position: absolute;
    left: 0;
    opacity: 0;
}

.header.scrolled .logo-light {
    opacity: 0;
}

.header.scrolled .logo-dark {
    opacity: 1;
}

/* Default Logo on Hero */
.header:not(.scrolled) .logo img {
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--clr-white);
    position: relative;
}

.header.scrolled .nav-link {
    color: var(--clr-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-accent);
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-weight: 600;
    color: var(--clr-white);
}

.header.scrolled .phone-link {
    color: var(--clr-primary);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* For parallax */
    background-image: url('main-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 15, 79, 0.9) 0%, rgba(11, 15, 79, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding-top: 80px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--clr-primary);
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-text h2 strong {
    color: var(--clr-accent);
}

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

.stat-card {
    background: var(--clr-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    border-top: 4px solid var(--clr-accent);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-card:nth-child(3) {
    grid-column: 1 / -1;
}

.stat-number {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    line-height: 1;
}

.stat-plus {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--clr-accent);
    line-height: 1;
}

.stat-label {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--clr-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Brands Marquee
   ========================================================================== */
.brands {
    padding: 60px 0;
    overflow: hidden;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
}

.marquee {
    display: flex;
    width: fit-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 60px;
    padding-right: 60px;
}

.brand-item {
    font-size: 3rem;
    font-weight: 700;
    color: var(--clr-gray);
    opacity: 0.5;
    transition: var(--transition);
    cursor: default;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-item:hover {
    opacity: 1;
    color: var(--clr-primary);
}

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

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.service-row {
    display: flex;
    align-items: stretch;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 180px;
    border: 1px solid var(--clr-gray-light);
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-img-col {
    flex: 1;
    min-height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-text-col {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

.service-icon-new {
    width: 40px;
    height: 40px;
    background: rgba(0, 174, 239, 0.1);
    color: var(--clr-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon-new i {
    width: 20px;
    height: 20px;
}

.service-text-col h3 {
    font-size: 1.3rem;
    color: var(--clr-primary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-text-col p {
    font-size: 0.95rem;
    color: var(--clr-text);
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-static-body .btn {
    align-self: flex-start;
}

/* ==========================================================================
   Included Services Section
   ========================================================================== */
.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.included-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.included-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(0, 174, 239, 0.3);
}

.included-icon {
    color: var(--clr-accent);
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.included-item h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.included-item p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.benefits-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--clr-gray-light);
}

.benefits-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--clr-accent);
}

.benefits-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--clr-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.large-icon {
    width: 40px;
    height: 40px;
    color: var(--clr-primary);
}

.benefits-card h3 {
    font-size: 1.75rem;
    color: var(--clr-primary);
    margin-bottom: 30px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--clr-text);
}

.benefits-list li i {
    color: var(--clr-accent);
    margin-right: 12px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-card {
    background: var(--clr-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--clr-accent);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 174, 239, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-accent);
    flex-shrink: 0;
}

.why-icon i {
    width: 28px;
    height: 28px;
}

.why-card h4 {
    font-size: 1.125rem;
    color: var(--clr-primary);
    line-height: 1.3;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
    position: relative;
    padding: 120px 0;
    color: var(--clr-white);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 79, 0.85);
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.cta-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.form-input {
    padding: 16px 24px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    max-width: 250px;
}

.form-input:focus {
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--clr-dark);
    color: var(--clr-white);
    padding: 80px 0 30px;
}

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

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 75px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    max-width: 400px;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: var(--clr-white);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--clr-accent);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list i {
    color: var(--clr-accent);
    flex-shrink: 0;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-list a:hover {
    color: var(--clr-white);
}

.footer-map {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */

/* Fade-in animations */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.appear {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

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

.fade-in-left.appear {
    opacity: 1;
    transform: translateX(0);
}

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

.fade-in-right.appear {
    opacity: 1;
    transform: translateX(0);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .included-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-layout { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .header-container { flex-wrap: wrap; }
    .nav { display: none; /* In a real app, add a hamburger menu */ }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-buttons { flex-direction: column; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-form { flex-direction: column; }
    .form-input { max-width: 100%; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card:nth-child(3) { grid-column: auto; }
    .form-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ==========================================================================
   Language Switcher Styles
   ========================================================================== */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.header.scrolled .lang-switcher {
    background: rgba(11, 15, 79, 0.05);
    border-color: rgba(11, 15, 79, 0.1);
}

.lang-btn {
    background: transparent;
    border: none;
    outline: none;
    color: var(--clr-white);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.header.scrolled .lang-btn {
    color: var(--clr-primary);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.header.scrolled .lang-btn:hover {
    background: rgba(11, 15, 79, 0.1);
}

.lang-btn.active {
    background: var(--clr-accent);
    color: var(--clr-white);
    box-shadow: 0 2px 10px rgba(0, 174, 239, 0.3);
}

.header.scrolled .lang-btn.active {
    background: var(--clr-accent);
    color: var(--clr-white);
}

/* ==========================================================================
   Extended CTA Form Styles
   ========================================================================== */
.cta-form-extended {
    width: 100%;
    margin-top: 30px;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-field {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    color: var(--clr-white);
    transition: var(--transition);
}

/* Floating labels effect */
.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: var(--transition);
    font-size: 1rem;
}

/* Focus and active states for input and label */
.form-field:focus {
    border-color: var(--clr-accent);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.15);
}

.form-field:focus ~ label,
.form-field:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 0.75rem;
    color: var(--clr-accent);
    background: #11154F; /* Matches the background of the form content */
    padding: 0 8px;
    transform: translateY(-50%);
    border-radius: 4px;
    left: 15px;
}

/* Styling for select field */
.select-field {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.select-field option {
    background-color: #0B0F4F;
    color: var(--clr-white);
}

/* Styling for textarea */
.textarea-field {
    min-height: 120px;
    resize: vertical;
}

.form-group.full-width label {
    top: 50%;
}

.form-group.full-width textarea ~ label {
    top: 25px;
}

.form-group.full-width textarea:focus ~ label,
.form-group.full-width textarea:not(:placeholder-shown) ~ label {
    top: 0;
}

/* Submit wrapper */
.form-submit-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.form-submit-wrapper .btn {
    width: 100%;
    max-width: 320px;
}

/* Form Status Message */
.form-status {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: 8px;
    padding: 12px;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-status.success {
    display: block;
    opacity: 1;
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.4);
    color: #28a745;
}

.form-status.error {
    display: block;
    opacity: 1;
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.4);
    color: #dc3545;
}

/* ==========================================================================
   CTA Section Buttons (Direct Contact)
   ========================================================================== */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-cta i {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Mobile Responsiveness & Navigation
   ========================================================================== */
.header-actions-mobile {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--clr-white);
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.header.scrolled .mobile-menu-btn {
    color: var(--clr-primary);
}

.mobile-menu-btn i, .mobile-menu-btn svg {
    width: 28px;
    height: 28px;
    pointer-events: none;
}

/* Hide close icon by default */
.mobile-menu-btn .close-icon {
    display: none !important;
}

/* Show close icon when open */
.mobile-menu-btn.open .close-icon {
    display: block !important;
}

/* Hide menu icon when open */
.mobile-menu-btn.open .menu-icon {
    display: none !important;
}

@media (max-width: 992px) {
    /* Global Section Padding Compression */
    .section {
        padding: 20px 0;
    }
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    /* Header and Mobile Menu */
    .mobile-menu-btn {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(11, 15, 79, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
        backdrop-filter: blur(10px);
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }
    
    .nav.open {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.5rem;
        color: var(--clr-white) !important;
    }

    .header-actions {
        display: none; /* Hide header actions on mobile */
    }

    .nav.open .header-actions-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 20px;
    }
    
    /* Hero Adjustments */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    /* Utility Classes Mobile */
    .hide-on-mobile {
        display: none !important;
    }
    .show-on-mobile {
        display: flex !important;
    }

    /* =========================================
       EXPANDABLE IMAGE CARDS & COMPACT GRIDS 
       ========================================= */
       
    /* Services: Stacked Layout for Mobile */
    .services-list {
        gap: 10px;
    }
    
    .service-row, .service-row.reverse {
        flex-direction: column;
        min-height: auto;
    }
    
    .service-img-col {
        min-height: 140px;
        width: 100%;
    }
    
    .service-text-col {
        padding: 25px 20px;
        align-items: center;
        text-align: center;
    }
    
    .service-icon-new {
        margin-bottom: 15px;
        width: 40px;
        height: 40px;
    }
    
    .service-icon-new i {
        width: 20px;
        height: 20px;
    }
    
    .service-text-col h3 {
        font-size: 1.3rem;
    }
    
    .service-text-col p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .service-text-col .btn {
        width: 100%;
    }
    
    /* Included Grid - Ultra Compact List */
    .included-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .included-item {
        padding: 10px;
        min-height: auto;
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .included-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .included-item div {
        flex: 1;
    }
    
    .included-item h4 {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .included-item p {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    /* Why Grid - Compact Cards */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .why-card {
        padding: 15px 20px;
        min-height: auto;
    }
    
    .why-icon {
        width: 40px;
        height: 40px;
    }
    
    .why-icon i {
        width: 20px;
        height: 20px;
    }
    
    .why-card h4 {
        font-size: 1.1rem;
    }
    
    /* Benefits Layout - Ultra Compact List */
    .benefits-layout {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .benefits-card {
        padding: 15px;
        background: var(--clr-bg);
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: none;
        display: block;
        min-height: auto;
    }
    
    .benefits-card::before {
        display: none;
    }
    
    .benefits-icon-wrapper {
        display: flex !important;
        margin-bottom: 0;
        width: 24px;
        height: 24px;
        flex-shrink: 0;
        background: transparent;
    }
    
    .benefits-icon-wrapper i {
        width: 16px;
        height: 16px;
    }
    
    .benefits-card h3 {
        margin: 0;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
    }
    
    .benefits-card h3::after {
        display: none;
    }
    
    .benefits-list {
        display: block !important;
        margin-top: 10px;
        padding-left: 0;
        list-style: none;
    }
    
    .benefits-list li {
        font-size: 0.85rem;
        margin-bottom: 6px;
        display: flex;
        gap: 8px;
        align-items: flex-start;
        line-height: 1.25;
        color: var(--clr-gray);
    }
    
    .benefits-list li i {
        width: 14px;
        height: 14px;
        margin-top: 2px;
        color: var(--clr-accent);
        flex-shrink: 0;
    }


    .form-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .stat-card:nth-child(3) {
        grid-column: span 2;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-contact-list {
        align-items: center;
    }
    
    .footer-contact-list li {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .btn-cta {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 0.9rem; /* Reduce base font size */
    }
    
    p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .section-desc {
        font-size: 0.9rem;
    }

    .service-front-content h3, .service-card-back h3 {
        font-size: 1.3rem;
    }
    
    .service-card-back p {
        font-size: 0.85rem;
    }
    
    .why-icon {
        width: 40px;
        height: 40px;
    }
    
    .why-card h4 {
        font-size: 1.2rem;
    }
    
    .why-card p {
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card:nth-child(3) {
        grid-column: span 1;
    }
    
    .brand-item {
        font-size: 1.5rem;
    }
    
    .marquee-content {
        gap: 20px;
        padding-right: 20px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-desc {
        font-size: 0.95rem;
    }
    
    /* Benefits Cards Compact Mobile */
    .benefits-card {
        padding: 20px;
        border-radius: var(--radius-md);
    }
    
    .benefits-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .large-icon {
        width: 24px;
        height: 24px;
    }
    
    .benefits-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .benefits-list li {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .benefits-list li i {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }

    /* Body padding for sticky CTA */
    body {
        padding-bottom: 70px;
    }
}

/* ==========================================================================
   Global Utilities & Desktop Overrides
   ========================================================================== */
.show-on-mobile {
    display: none !important;
}

.mobile-sticky-cta {
    display: none;
}

@media (max-width: 992px) {
    .mobile-sticky-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(11, 15, 79, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1000;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 20px;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
        gap: 15px;
        padding-bottom: env(safe-area-inset-bottom, 12px); /* For iOS devices */
    }

    .mobile-sticky-cta .btn {
        flex: 1;
        padding: 12px 0;
        font-size: 0.95rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    
    .mobile-sticky-cta .btn-whatsapp {
        background: #25D366;
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
    }
    
    .mobile-sticky-cta .btn-whatsapp:hover {
        background: #128C7E;
    }
}
