﻿/* Marnetworks.com 2026 Core Design System */

:root {
    /* Color Palette */
    --primary-color: #0056b3;
    /* Deep Royal Blue */
    --primary-dark: #003d80;
    --secondary-color: #6c757d;
    --accent-color: #00c2ff;
    /* Tech Cyan */
    --text-color: #2b2d42;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #1a1e23;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Header & Navbar */
.main-header {
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
}

/* Partners / References Section */
.partners-section {
    padding: 8rem 0;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.partners-section h3 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.2rem;
    color: var(--text-color);
}

.partners-section h3 span {
    color: var(--primary-color);
}

.logo-slider-container {
    display: flex;
    width: 200%;
    /* Enough to cover the scroll */
    animation: scroll 40s linear infinite;
}

.logo-slider-container:hover {
    animation-play-state: paused;
}

.logo-track {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    gap: 4rem;
}

.partner-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 100px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.partner-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.partner-logo-box {
    font-weight: 800;
    font-size: 1.4rem;
    color: #cbd5e0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    user-select: none;
}

.partner-item:hover .partner-logo-box {
    color: var(--primary-color);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Gradient Overlay for Slider Sides */
.partners-section::before,
.partners-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.partners-section::before {
    left: 0;
    background: linear-gradient(to right, white 0%, transparent 100%);
}

.partners-section::after {
    right: 0;
    background: linear-gradient(to left, white 0%, transparent 100%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--text-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 0.7rem 1.5rem;
    display: block;
    width: 100%;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 86, 179, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 700px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 86, 179, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text h1 span {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.stats-item {
    display: flex;
    flex-direction: column;
}

.stats-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
}

.stats-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.sub-title {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-header h2 span {
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more i {
    transition: var(--transition);
}

.service-card:hover .read-more i {
    transform: translateX(5px);
}

/* Why Us Section */
.why-us {
    padding: 8rem 0;
    background-color: var(--bg-light);
}

.why-us-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.why-us-text {
    flex: 1;
}

.why-us-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.why-us-text h2 span {
    color: var(--primary-color);
}

.check-list {
    margin-top: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.check-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.why-us-image {
    flex: 1;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc51?auto=format&fit=crop&q=80&w=1200') center/cover;
    border-radius: 20px;
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    font-size: 3rem;
    font-weight: 800;
}

/* Footer Styles */
.main-footer {
    background-color: var(--bg-dark);
    color: #a0a0a0;
    padding: 6rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: white;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    /* Slightly squared for modern look */
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

/* Specific brand colors on hover */
.social-links a.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-links a.x-twitter:hover {
    background: #000000;
    border-color: #333;
}

.social-links a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.social-links a.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact p i {
    color: var(--primary-color);
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 1rem;
    background: #25d366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.9rem;
}

/* Standardized Sub-page Header */
.page-header,
.service-header {
    padding: calc(var(--header-height) + 5rem) 0 5rem;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1,
.service-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.page-header p,
.service-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Service Detail Layouts */
.service-content {
    padding: 6rem 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.sub-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sub-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.sub-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.sidebar-card {
    background: var(--bg-dark);
    color: white;
    padding: 2.5rem;
    border-radius: 24px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.sidebar-card h3 {
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    font-size: 1.5rem;
}

.sidebar-card ul li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.sidebar-card ul li a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidebar-card ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.sidebar-card ul li i {
    color: var(--accent-color);
}

/* Light Sidebar Card Variant */
.sidebar-card.light {
    background: #f8fafc;
    color: var(--text-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-card.light h3 {
    color: var(--text-color);
}

.sidebar-card.light ul li {
    color: var(--text-light);
}

.sidebar-card.light ul li a {
    color: var(--text-color);
}

.sidebar-card.light ul li a:hover {
    color: var(--primary-color);
}

.sidebar-card.light ul li i {
    color: var(--primary-color);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 4rem;
    border-radius: 24px;
    color: white;
    text-align: center;
    margin: 4rem 0 8rem;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    z-index: 1001;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.5rem;
        display: block;
        padding: 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .why-us-content {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Reference & Filter Styles */
.filter-section {
    padding: 4rem 0 2rem;
    text-align: center;
}

.filter-btn {
    background: var(--bg-light);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    margin: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--text-color);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 4rem 0 8rem;
}

.ref-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ref-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.ref-img {
    height: 220px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #e2e8f0;
}

.ref-body {
    padding: 2rem;
}

.ref-category {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: 2px;
}

/* About Page Specific Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 0;
}

.about-text span {
    color: var(--primary-color);
    font-weight: 700;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.vision-mission {
    background: #f8fafc;
    padding: 8rem 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.vm-card {
    background: white;
    padding: 4rem;
    border-radius: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-10px);
}

.vm-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: block;
}

.vm-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.vm-card p {
    line-height: 1.7;
    color: var(--text-light);
}

.values-section {
    padding: 8rem 0;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.value-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-light);
}

.ref-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.trust-banner {
    background: var(--bg-dark);
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.trust-banner h2 {
    color: white;
    margin-bottom: 1rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 4rem;
    margin-top: 5rem;
    align-items: center;
    opacity: 0.6;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
}

/* Blog Grid Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 6rem 0;
}

.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-img {
    height: 240px;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
}

.blog-body {
    padding: 2.5rem;
    flex-grow: 1;
}

.blog-category {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: block;
}

.blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-color);
}

.blog-excerpt {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.blog-date {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 8rem;
}

.page-num {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

.page-num.active,
.page-num:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    padding: 6rem 0;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 3.5rem;
    border-radius: 24px;
}

.info-item {
    display: flex;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.info-item i {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.5;
}

.contact-form-wrap {
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    background: white;
}

.map-section {
    height: 500px;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 8rem;
    box-shadow: var(--shadow-md);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
.header-cta { display: flex; align-items: center; }
@media (max-width: 768px) { .header-cta .btn { display: none; } }

