:root {
    --bg-main: #ffffff;
    --bg-surface: #f8f9fa;
    --bg-surface-alt: #e9ecef;
    --primary: #1a6ab4;
    --primary-hover: #13528f;
    --secondary: #1c2120;
    --text-main: #111111;
    --text-muted: #495057;
    --border: #dee2e6;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    width: 92%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.text-gradient {
    color: var(--primary);
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.center {
    text-align: center;
    display: block;
}
.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 10px rgba(26, 106, 180, 0.2);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 106, 180, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-primary-outline {
    border: 2px solid var(--primary);
    padding: 0.6rem 1.8rem;
    border-radius: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.05rem;
}

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

/* ==================== NAVBAR ==================== */
.navbar {
    background: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    padding: 0.8rem 0;
}

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

.nav-logo-img {
    height: 50px;
    width: auto;
    border-radius: 4px;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1;
    display: block;
    letter-spacing: 1px;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

.nav-links:hover, .nav-links.active {
    color: var(--primary);
}

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

.bar {
    width: 28px;
    height: 3px;
    background-color: var(--secondary);
    margin: 3px 0;
    transition: var(--transition);
}

/* ==================== DROPDOWN MEGA MENU ==================== */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 820px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    border: 1px solid var(--border);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-dropdown:hover .dropdown-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-standard {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 0.8rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-dropdown:hover .dropdown-standard {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.dropdown-category h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-surface);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    margin-bottom: 4px;
}

.dropdown-item:hover {
    background: var(--bg-surface);
    transform: translateX(4px);
}

.dropdown-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 6px;
    background: var(--bg-surface);
    padding: 4px;
    flex-shrink: 0;
}

.dropdown-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.dropdown-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.dropdown-footer {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
}

.dropdown-footer .btn {
    font-size: 0.95rem;
    padding: 0.7rem 2rem;
}

/* ==================== HERO SECTION ==================== */
.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-surface);
    position: relative;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26, 106, 180, 0.05) 0%, rgba(255,255,255,1) 100%);
    z-index: 0;
}

.hero-content {
    max-width: 750px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--secondary);
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* ==================== FEATURE CARDS ==================== */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding-bottom: 4rem;
}

.feature-card {
    background: white;
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==================== ABOUT SNIPPET ==================== */
.about-snippet {
    padding: 5rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}

/* Highlight Cards (homepage about section) */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-surface);
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.highlight-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.highlight-card i {
    font-size: 1.6rem;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
    color: var(--secondary);
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ==================== PAGE HEADERS ==================== */
.page-header {
    padding: 160px 0 80px;
    background-color: var(--bg-surface);
    background: linear-gradient(135deg, rgba(26, 106, 180, 0.05) 0%, rgba(255,255,255,1) 100%);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-header .hero-subtitle {
    font-size: 1.3rem;
}

/* ==================== ABOUT PAGE ==================== */
.core-values {
    padding: 6rem 0;
    background: var(--bg-surface);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.value-card h4 {
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
}
.value-card h4 i {
    color: var(--primary);
}

.value-card p {
    font-size: 1.05rem;
}

/* ==================== PRODUCTS PAGE ==================== */
.products-section {
    padding: 6rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.product-img {
    height: 280px;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-content {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}

.product-content h3 {
    font-size: 1.35rem;
}

.product-content p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ==================== SERVICE BANNER ==================== */
.service-banner {
    margin-top: 6rem;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 450px;
    background: var(--secondary);
}

.service-banner-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
}

.service-banner-content {
    position: relative;
    z-index: 3;
    padding: 4rem;
    max-width: 60%;
    background: var(--secondary);
    color: white;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.service-banner-content .section-title,
.service-banner-content .section-title::after {
    color: white;
}
.service-banner-content .section-title::after {
    background: var(--primary);
}
.service-banner-content p {
    color: #e2e8f0;
    font-size: 1.15rem;
    line-height: 1.8;
}

.service-banner-content li {
    font-size: 1.1rem;
}

/* ==================== CLIENTS ==================== */
.clients-section {
    padding: 6rem 0;
    background: var(--bg-surface);
    text-align: center;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.client-tag {
    background: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    border: 1px solid var(--border);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.client-tag:hover {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(26, 106, 180, 0.1);
}

/* Featured Clients Marquee */
.clients-logo-marquee {
    overflow: hidden;
    padding: 1.5rem 0;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 40s linear infinite;
    align-items: center;
    gap: 3rem;
}

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

.client-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-width: 180px;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 160px;
}

.client-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

.client-logo-card img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.client-logo-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

@keyframes scroll-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 1.5rem));
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--secondary);
    color: white;
    padding: 3rem 0 1.5rem;
}

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

.footer-logo {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: white;
}

.footer-desc {
    color: #cbd5e1;
    max-width: 400px;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-socials a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.contact-list li {
    display: flex;
    gap: 0.8rem;
    color: #cbd5e1;
    align-items: flex-start;
    font-size: 0.9rem;
}

.contact-list li i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e1;
    font-size: 0.85rem;
}

/* ==================== ANIMATIONS ==================== */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
    opacity: 0;
    transform: translateX(20px);
}

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

@keyframes fadeInLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    to { opacity: 1; transform: translateX(0); }
}

/* ==================== RESPONSIVE: TABLET ==================== */
@media (max-width: 1024px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    .about-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-banner-content {
        max-width: 100%;
        clip-path: none;
        background: rgba(28, 33, 32, 0.9);
    }
    .service-banner-img {
        width: 100%;
    }
}

/* ==================== RESPONSIVE: MOBILE ==================== */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .container {
        width: 95%;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    /* Mobile Nav Menu */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        background: white;
        width: 100%;
        height: calc(100vh - 70px);
        text-align: left;
        transition: 0.3s ease;
        padding: 1rem 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        overflow-y: auto;
    }

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

    .nav-container {
        min-height: 70px;
        padding: 0.5rem 0;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 0;
    }

    .nav-links {
        display: block;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid var(--bg-surface);
    }

    .nav-links.btn-primary-outline {
        display: inline-block;
        margin: 1rem 1.5rem;
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Mobile Dropdown */
    .dropdown-toggle {
        justify-content: flex-start;
    }

    .dropdown-mega {
        position: static;
        width: 100%;
        transform: none !important;
        grid-template-columns: 1fr;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
    }

    .nav-dropdown.mobile-open .dropdown-mega {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        max-height: 1200px;
        padding: 0.8rem 1.5rem 1rem;
        background: var(--bg-surface);
    }

    .nav-dropdown:hover .dropdown-mega {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-dropdown.mobile-open:hover .dropdown-mega {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .dropdown-standard {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        background: transparent;
        transform: none !important;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }
    
    .nav-dropdown.mobile-open .dropdown-standard {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        max-height: 500px;
        padding: 0.5rem 1.5rem;
    }

    .dropdown-category {
        margin-bottom: 0.8rem;
    }

    .dropdown-category h4 {
        font-size: 0.7rem;
        letter-spacing: 1.2px;
        margin-bottom: 0.5rem;
        padding-bottom: 0.4rem;
    }

    .dropdown-item {
        padding: 8px 10px;
        gap: 10px;
        margin-bottom: 2px;
    }

    .dropdown-item img {
        width: 36px;
        height: 36px;
        padding: 3px;
    }

    .dropdown-item strong {
        font-size: 0.85rem;
    }

    .dropdown-item span {
        font-size: 0.75rem;
    }

    .dropdown-footer {
        padding-top: 0.8rem;
        margin-top: 0.5rem;
    }

    .dropdown-footer .btn {
        width: 100%;
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
    }

    /* Hero */
    .hero {
        text-align: center;
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.95rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-btns .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Grids */
    .features {
        grid-template-columns: 1fr;
        margin-top: 2rem;
        gap: 1.2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-snippet {
        padding: 3rem 0;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .highlight-card {
        padding: 1.2rem;
    }

    .highlight-card i {
        font-size: 1.3rem;
    }

    .highlight-card h4 {
        font-size: 0.95rem;
    }

    .highlight-card p {
        font-size: 0.85rem;
    }

    /* Page Header */
    .page-header {
        padding: 100px 0 40px;
    }

    .page-header .hero-title {
        font-size: 1.7rem;
    }

    .page-header .hero-subtitle {
        font-size: 0.9rem;
    }

    /* Service Banner */
    .service-banner {
        min-height: auto;
    }

    .service-banner-content {
        padding: 2rem 1.2rem;
        max-width: 100% !important;
        clip-path: none !important;
    }

    .service-banner-content p {
        font-size: 0.95rem !important;
    }

    /* Sections */
    .products-section, .core-values, .clients-section {
        padding: 3rem 0;
    }

    .product-img {
        height: 200px;
    }

    .product-content h3 {
        font-size: 1.1rem;
    }

    .product-content p {
        font-size: 0.85rem;
    }

    .client-tag {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-desc {
        font-size: 0.9rem;
    }

    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-col ul li a {
        font-size: 0.95rem;
    }

    .contact-list li {
        font-size: 0.9rem;
    }

    .value-card h4 {
        font-size: 1.05rem;
    }

    .value-card p {
        font-size: 0.9rem;
    }
}

/* ==================== RESPONSIVE: SMALL MOBILE ==================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .highlight-card {
        padding: 1rem;
        gap: 0.8rem;
    }
}
/* ==================== CONTACT PAGE ==================== */
.contact-section {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-surface);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

.info-item h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-muted);
}

.map-container {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.contact-form-card {
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 106, 180, 0.1);
}

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

@media (max-width: 480px) {
    .contact-form-card {
        padding: 1.5rem;
    }
}
