:root {
    --navy: #0a2540;
    --navy-light: #143d5e;
    --navy-dark: #061a2e;
    --royal: #1e6fdb;
    --royal-light: #4a9eff;
    --royal-glow: rgba(30, 111, 219, 0.15);
    --white: #ffffff;
    --off-white: #f8fafc;
    --grey: #64748b;
    --grey-light: #94a3b8;
    --grey-dark: #334155;
    --orange: #f97316;
    --orange-light: #fb923c;
    --orange-glow: rgba(249, 115, 22, 0.15);
    --black: #0f172a;
    --silver: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--grey-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before { left: 100%; }

.btn-primary {
    background: var(--royal);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(30, 111, 219, 0.4);
}

.btn-primary:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

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

.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

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

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

.btn-full { width: 100%; }

.btn-text {
    background: none;
    color: var(--grey);
    padding: 8px 16px;
}

.btn-text:hover { color: var(--royal); }

/* Navigation */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: var(--shadow);
}

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

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

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo-text-nav {
    display: flex;
    align-items: baseline;
    gap: 6px;
    line-height: 1;
}

.logo-main-nav {
    font-size: 22px;
    font-weight: 800;
    color: var(--royal-light);
    letter-spacing: 0;
}

.logo-sub-nav {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0;
    text-transform: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--radius-xs);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-links a.nav-cta {
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.nav-links a.nav-cta:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section - KEEP AS IS */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.video-container video {
    width: 100%; height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, 
        rgba(2, 18, 33, 0.92) 0%, 
        rgba(4, 23, 43, 0.85) 35%, 
        rgba(11, 39, 62, 0.771) 60%, 
        rgba(10, 37, 64, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 650px;
    padding: 0 48px;
    margin-left: 5%;
    margin-top: 180px;
    align-self: flex-start;
    animation: fadeInUp 1s ease;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: var(--orange-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    color: var(--white);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-line { display: block; }
.title-line.accent { color: var(--royal-light); }

.hero-tagline {
    color: rgba(255,255,255,0.85);
    font-size: clamp(15px, 1.8vw, 18px);
    max-width: 500px;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    animation: bounce 2s infinite;
}

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

.mouse {
    width: 24px; height: 36px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px; height: 4px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* Trust Bar */
.trust-bar {
    background: var(--navy);
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.trust-bar p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 12px;
}

.trust-icons {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-icons i {
    color: var(--royal-light);
    font-size: 24px;
    opacity: 0.7;
    transition: var(--transition);
}

.trust-icons i:hover {
    opacity: 1;
    color: var(--orange);
    transform: translateY(-2px);
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-tag {
    display: inline-block;
    color: var(--royal);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    position: relative;
}

.section-tag::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--royal);
    margin: 8px auto 0;
    border-radius: 2px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--grey);
    font-size: 17px;
}

/* ENHANCED Services Preview - Vertical Cards */
.services-preview {
    padding: 100px 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 0;
    transition: var(--transition-slow);
    position: relative;
    border: 1px solid var(--silver);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card.featured {
    border: 2px solid var(--royal);
    box-shadow: 0 0 0 4px var(--royal-glow);
}

.service-card.featured:hover {
    box-shadow: var(--shadow-xl), 0 0 0 4px var(--royal-glow);
}

.service-image-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image-top {
    transform: scale(1.05);
}

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

.service-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--royal), var(--royal-light));
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(30, 111, 219, 0.3);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--grey);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
    flex: 1;
}

.service-link {
    color: var(--royal);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    margin-top: auto;
}

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

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

/* Why Choose Us */
.why-us {
    padding: 100px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-content .section-tag { margin-bottom: 16px; }
.why-content .section-tag::after { margin: 8px 0 0; }

.why-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.why-content > p {
    color: var(--grey);
    font-size: 17px;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--off-white);
    transform: translateX(4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--royal), var(--royal-light));
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(30, 111, 219, 0.25);
}

.feature-text h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.feature-text p {
    color: var(--grey);
    font-size: 14px;
}

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

.why-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius);
}

.experience-badge {
    position: absolute;
    bottom: 24px;
    left: -24px;
    background-color: white, var(--royal-light);
    color: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
}

.exp-number {
    font-size: 36px;
    font-weight: 800;
}

.exp-text {
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 100px 100px;
}

.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-tag { color: var(--royal-light); }
.testimonials .section-tag::after { background: var(--royal-light); }

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
}

.stars {
    color: var(--orange);
    margin-bottom: 16px;
    font-size: 14px;
}

.testimonial-card > p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--royal), var(--royal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(30, 111, 219, 0.3);
}

.author-info h4 {
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
}

.author-info span {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}


/* ===== RECENT WORK SECTION ===== */
.recent-work {
    padding: 100px 0 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.recent-work::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.03)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 100px 100px;
    pointer-events: none;
}

.recent-work .container,
.recent-work .work-marquee-wrapper {
    position: relative;
    z-index: 1;
}

.recent-work .section-header {
    margin-bottom: 8px;
}

.recent-work .section-header h2 {
    color: var(--white);
}

.recent-work .section-header p {
    color: rgba(255,255,255,0.72);
}

.recent-work .section-tag {
    color: var(--royal-light);
}

.recent-work .section-tag::after {
    background: var(--royal-light);
}

/* ===== INFINITE WORK MARQUEE ===== */
.work-marquee-wrapper {
    position: relative;
    z-index: 1;
    padding: 48px 0 64px;
    overflow: hidden;
}

.work-marquee-wrapper::before,
.work-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.work-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--navy), transparent);
}

.work-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--navy), transparent);
}

.work-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marqueeScroll 95s linear infinite;
}

.work-marquee-track:hover {
    animation-play-state: paused;
}

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

.work-card {
    flex-shrink: 0;
    width: 280px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.work-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.work-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.work-card-body {
    padding: 16px;
}

.work-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--royal-light);
    margin-bottom: 6px;
}

.work-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.work-card-location {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.work-card-location i {
    font-size: 12px;
    color: var(--orange);
}


@media (prefers-reduced-motion: reduce) {
    .work-marquee-track {
        animation: none;
    }
}

/* Emergency CTA */
.emergency-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.emergency-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 36px;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.emergency-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.emergency-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    margin-bottom: 32px;
}

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

/* Footer */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--royal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 111, 219, 0.3);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul { list-style: none; }

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--royal-light);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--royal);
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-image img { height: 350px; }
    .experience-badge { left: 16px; }
    .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .work-card { width: 240px; }
    .work-card-image { height: 150px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
    }
    .nav-links.active { display: flex; }
    .hamburger { display: flex; }
    .hero-stats { gap: 24px; }
    .stat-number { font-size: 28px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .service-image-top { height: 140px; }
    .service-card-body { padding: 16px; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .experience-badge {
        left: 16px;
        bottom: 16px;
        padding: 12px 20px;
    }
    .exp-number { font-size: 28px; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
    .work-card { width: 260px; }
    .work-marquee-wrapper::before,
    .work-marquee-wrapper::after { width: 60px; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
}

/* Logo Image Styles - replaces the icon while keeping text */
.logo-img-nav {
    height: 44px;
    width: auto;
    max-width: 120px;
    display: block;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo-img-nav:hover {
    transform: scale(1.05);
}

.logo-img-footer {
    height: 40px;
    width: auto;
    max-width: 100px;
    display: block;
    object-fit: contain;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.logo-img-footer:hover {
    transform: scale(1.05);
}

/* Responsive logo */
@media (max-width: 768px) {
    .logo-img-nav {
        height: 36px;
    }
    .logo-img-footer {
        height: 32px;
    }
}
