:root {
    --primary-color: #2261A1;
    --secondary-color: #0090D0;
    --accent-color: #0090D0;
    --text-dark: #222222;
    --text-muted: #666666;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-muted);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 700;
}

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

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

ul {
    list-style: none;
}

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

/* Header & Nav */
header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 10px 0;
}

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

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
    padding: 10px 0;
}

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

.dropdown-item {
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

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

.btn-cta {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 97, 161, 0.3);
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
    background: #fff;
}

.hero {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* Normalize page banners that currently use inline fixed heights */
.hero[style*="height: 350px"] {
    height: auto !important;
    min-height: 350px;
}

.hero .container {
    width: 100%;
}

.slider-container {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    padding: 100px 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 10;
    transform: translateY(30px);
    transition: transform 1s ease;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #233d62;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Hexagonal Image Frame */
.hexagon-wrapper {
    width: 450px;
    height: 520px;
    position: relative;
    padding: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hexagon-inner {
    width: 100%;
    height: 100%;
    background: #fff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hexagon-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative background elements */
.hero-bg-shapes {
    position: absolute;
    bottom: -50px;
    left: -50px;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-shapes i {
    font-size: 15rem;
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

/* Connecting Line (Desktop) */
@media (min-width: 992px) {
    .process-grid::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 10%;
        right: 10%;
        height: 2px;
        background: repeating-linear-gradient(to right, var(--primary-color) 0, var(--primary-color) 10px, transparent 10px, transparent 20px);
        z-index: 1;
        opacity: 0.2;
    }
}

.process-card {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.process-icon-wrapper {
    width: 120px;
    height: 120px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.process-card:hover .process-icon-wrapper {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.process-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.process-card:hover .process-icon-wrapper i {
    color: #fff;
}

.process-step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    border: 4px solid #fff;
}

.process-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

/* Footer */
footer {
    background: var(--bg-white);
    color: var(--text-muted);
    padding: 80px 0 20px;
    position: relative;
    background-image: url('../assets/footer-bg.png');
    background-size: 80%; /* Adjust size to show the map clearly */
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid #eee;
}

/* Removed heavy overlay to allow light map to show through */
footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-links i {
    color: var(--primary-color);
    margin-top: 5px;
}

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

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/footer-bg.png');
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 20px;
}

.stat-item h3 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-item p {
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* Service Page Layout */
.service-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 50px;
    padding: 60px 0;
}

.service-main {
    flex: 1;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
    color: #fff;
    font-weight: 500;
}

.breadcrumbs span {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* Sidebar Elements */
.sidebar-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 10px;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.service-nav-list {
    list-style: none;
}

.service-nav-item {
    margin-bottom: 10px;
}

.service-nav-link {
    display: block;
    padding: 12px 20px;
    background: #fff;
    border-radius: 6px;
    color: #555;
    font-weight: 500;
    transition: var(--transition);
}

.service-nav-link:hover, .service-nav-link.active {
    background: var(--primary-color);
    color: #fff;
}

.cta-box {
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.cta-box i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-box h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.cta-box .phone {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
    margin-top: 10px;
}

/* Offering Grid */
.offering-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.offering-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.offering-item h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

@media (max-width: 992px) {
    .service-layout {
        grid-template-columns: 1fr;
    }
    .service-sidebar {
        position: static;
    }
}

/* Clients Section Marquee */
.client-marquee-container {
    overflow: hidden;
    padding: 40px 0;
    position: relative;
    background: white;
}

.client-marquee-container::before,
.client-marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.client-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.client-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

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

.client-marquee-content:hover {
    animation-play-state: paused;
}

.client-logo {
    margin: 0 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.client-logo {
    min-width: 150px;
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.client-logo img {
    max-width: 130px;
    max-height: 50px;
    filter: grayscale(1) brightness(0.5);
    opacity: 0.5;
    transition: var(--transition);
}

.client-logo:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.client-logo:hover img {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}

/* Premium About Page Styles */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 0;
}

.collage-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.collage-img {
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
}

.collage-img-large {
    grid-row: span 2;
    height: 500px;
}

.collage-img-small {
    height: 240px;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--primary-color);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(34, 97, 161, 0.4);
    z-index: 5;
    text-align: center;
}

.floating-badge h4 {
    font-size: 2.5rem;
    line-height: 1;
}

/* Values Section with Rotated Titles */
.values-container {
    display: flex;
    gap: 50px;
    padding: 100px 0;
}

.rotated-title-box {
    width: 80px;
    position: relative;
}

.rotated-title {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg) translateX(-100%);
    transform-origin: top left;
    white-space: nowrap;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(34, 97, 161, 0.05);
    text-transform: uppercase;
    letter-spacing: 5px;
}

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

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* Why Choose Us Section (Dark) */
.why-choose-us {
    background: linear-gradient(rgba(35, 61, 98, 0.95), rgba(35, 61, 98, 0.95)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
}

.check-list {
    list-style: none;
    margin-top: 30px;
}

.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.check-list i {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    .collage-container {
        max-width: 500px;
        margin: 0 auto;
    }
    .values-container {
        flex-direction: column;
    }
    .rotated-title-box {
        display: none;
    }
}

/* Premium Homepage Features */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.expertise-card {
    padding: 40px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    transition: var(--transition);
    text-align: left;
}

.expertise-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.expertise-card i {
    width: 60px;
    height: 60px;
    background: rgba(34, 97, 161, 0.05);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: var(--transition);
}

.expertise-card:hover i {
    background: var(--primary-color);
    color: #fff;
}

/* Sector Focus */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.sector-item {
    padding: 30px;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.sector-item:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
}

.sector-item i {
    font-size: 2rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: block;
}

.sector-item:hover i {
    color: var(--primary-color);
}

.sector-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 50px;
    width: 70px;
    height: 70px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.15);
    color: #fff;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hexagon-wrapper {
        width: 350px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    /* Top Bar */
    .top-bar {
        display: none; /* Hide top bar on mobile for cleaner look, or stack it */
    }

    /* Header & Navigation */
    .nav-container {
        padding: 10px 0;
    }

    .logo img {
        height: 50px !important;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        gap: 0;
        transition: 0.4s ease-in-out;
        z-index: 999;
        overflow-y: auto;
        padding: 20px 0;
        box-shadow: var(--shadow);
    }

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

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        display: block;
        padding: 15px 25px;
        font-size: 1.1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        background: #f9f9f9;
        display: none; /* Controlled by active-mobile class on mobile */
        min-width: 100%;
    }

    .dropdown-menu.active-mobile {
        display: block !important;
    }

    /* Disable hover for dropdown on mobile to rely on click */
    .nav-item:hover .dropdown-menu {
        display: none;
    }
    .nav-item:hover .dropdown-menu.active-mobile {
        display: block;
    }

    .dropdown-item {
        padding: 12px 40px;
    }

    .nav-item:last-child {
        border-bottom: none;
        padding: 20px 25px;
    }

    .btn-cta {
        display: inline-block;
        width: auto;
        text-align: center;
    }

    /* Menu Toggle Animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hero Section */
    .hero-slider {
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .slider-container {
        height: auto;
    }

    .hero-slide {
        position: relative;
        flex-direction: column;
        text-align: center;
        padding: 120px 0 60px;
        height: auto;
        justify-content: center;
        display: none;
        opacity: 1;
        visibility: visible;
        transition: none;
    }

    .hero-slide.active {
        display: flex;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-visual {
        width: 100%;
    }

    .hexagon-wrapper {
        width: 280px;
        height: 320px;
    }

    /* Sections */
    section:not(.hero):not(.hero-slider) {
        padding: 50px 0;
    }

    .hero[style*="height: 350px"] {
        min-height: 290px;
        padding: 72px 0 40px;
        background-position: center top !important;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    /* Flex Layouts */
    div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 30px !important;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 20px;
    }

    /* Process Grid */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Sector Grid */
    .sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li {
        justify-content: center;
    }

    /* WhatsApp Button */
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
        font-size: 30px;
    }

    /* Service Pages */
    .service-layout {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.2rem !important;
    }

    .about-intro-grid {
        gap: 40px;
    }

    .collage-img-large {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .sector-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .hero[style*="height: 350px"] {
        min-height: 240px;
        padding: 56px 0 28px;
    }

    .breadcrumbs {
        font-size: 0.82rem;
        line-height: 1.5;
        flex-wrap: wrap;
        row-gap: 4px;
    }

    .hero h1 {
        font-size: 1.9rem !important;
        line-height: 1.2;
    }
}

/* Contact page */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.contact-form-panel {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid #f0f0f0;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-field-spaced {
    margin-bottom: 20px;
}

.contact-form-field-spaced:last-of-type {
    margin-bottom: 30px;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: 2px solid rgba(34, 97, 161, 0.35);
    outline-offset: 2px;
    border-color: var(--primary-color);
}

.contact-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form-panel form {
    position: relative;
}

.contact-form-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    min-height: 1.25em;
}

.contact-form-submit {
    width: 100%;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}

.contact-form-submit:disabled {
    opacity: 0.85;
    cursor: wait;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding: 32px 24px;
    }
}
