/* Marketplace logosu büyütme */
.marketplace-logo {
    height: 50px !important;
    width: 50px !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Mercari logosu özel boyut - çerçeve sabit, resim büyütülü */
.mercari-logo-large {
    height: 50px !important;
    width: 50px !important;
}

/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #0a4d8c;
    --primary-dark: #063a6a;
    --secondary-color: #00b4d8;
    --accent-color: #48cae4;
    --light-blue: #90e0ef;
    --dark-color: #1a1a2e;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55px;
    padding: 0;
}

.logo img {
    height: 55px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding-top: 100px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.1), rgba(0, 180, 216, 0.1));
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(72, 202, 228, 0.08));
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.05), rgba(0, 180, 216, 0.05));
    top: 50%;
    left: 30%;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-right: 40px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(10, 77, 140, 0.3);
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text > p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(10, 77, 140, 0.35);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 77, 140, 0.45);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: var(--dark-color);
    padding: 16px 32px;
    border: 2px solid var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    border-radius: 50px;
}

.hero-buttons .btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(10, 77, 140, 0.05);
}

.hero-buttons .btn-outline i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(10, 77, 140, 0.2));
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.hero-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hero-card.main-card {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 280px;
}

.main-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff9900, #ffb84d);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-card .card-icon i {
    font-size: 2rem;
    color: white;
}

.main-card .card-content h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.main-card .card-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.floating-card {
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.floating-card img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.card-1 {
    top: 50px;
    left: 20px;
    animation-delay: 0s;
    width: 80px !important;
    height: 80px !important;
}

.card-1 img {
    width: 55px !important;
    height: 55px !important;
}

.card-2 {
    top: 80px;
    right: 30px;
    animation-delay: 0.5s;
    width: 80px !important;
    height: 80px !important;
}

.card-2 img {
    width: 55px !important;
    height: 55px !important;
}

.card-3 {
    bottom: 80px;
    left: 30px;
    animation-delay: 1s;
    width: 80px !important;
    height: 80px !important;
}

.card-3 img {
    width: 60px !important;
    height: 60px !important;
}

.card-4 {
    bottom: 30px !important;
    right: 10px !important;
    width: 90px !important;
    height: 90px !important;
    z-index: 5 !important;
    animation-delay: 1.5s;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    margin-bottom: 0;
}

/* ===== ABOUT PREVIEW SECTION ===== */
.about-preview {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content .btn {
    margin-top: 10px;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 50px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.reason-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.reason-card:hover {
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.reason-icon {
    font-size: 2.5rem;
}

.reason-content h4 {
    margin-bottom: 10px;
}

.reason-content p {
    margin-bottom: 0;
}

/* ===== BRANDS PREVIEW ===== */
.brands-preview {
    padding: 100px 0;
    background: var(--light-gray);
    text-align: center;
}

.brands-preview h2 {
    margin-bottom: 50px;
}

.brands-slider {
    overflow: hidden;
    margin-bottom: 40px;
}

.brands-track {
    display: flex;
    gap: 50px;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-logo {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 10px;
}

.brand-logo img {
    max-height: 40px;
    max-width: 100px;
    min-width: 40px;
    transition: var(--transition);
}

/* SVG logolar için görünürlük düzeltmesi */
.brand-logo img[src$='.svg'] {
    width: 100%;
    height: auto;
    max-height: 40px;
    max-width: 100px;
    min-width: 40px;
    object-fit: contain;
}

.brand-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.services-preview h2 {
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 15px;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ===== PLATFORMS SECTION ===== */
.platforms {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.platforms h2 {
    margin-bottom: 50px;
}

.platforms-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    min-width: 150px;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.platform-card img {
    height: 50px;
    width: auto;
}

.platform-card span {
    font-weight: 500;
    color: var(--dark-color);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    border-radius: 16px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== VALUES SECTION (About Page) ===== */
.values-section {
    padding: 100px 0;
    background: var(--white);
}

.values-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.value-card h3 {
    margin-bottom: 10px;
}

/* ===== WHO WE ARE SECTION ===== */
.who-we-are {
    padding: 100px 0;
    background: var(--light-gray);
}

.who-we-are .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.who-content h2 {
    margin-bottom: 25px;
}

.who-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ===== MISSION & VISION ===== */
.mission-vision {
    padding: 100px 0;
    background: var(--white);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    padding: 50px 40px;
    border-radius: var(--border-radius);
    text-align: center;
}

.mv-card.mission {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.mv-card.vision {
    background: var(--dark-color);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mv-card h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.mv-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SERVICES FULL PAGE ===== */
.services-intro {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.services-intro h2 {
    margin-bottom: 20px;
}

.services-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.services-full {
    padding: 0 0 100px;
    background: var(--white);
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-full-card {
    background: var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-full-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-full-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-full-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.service-full-card h3 {
    margin-bottom: 15px;
}

.service-features {
    margin-top: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service-features i {
    color: var(--secondary-color);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.process-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.process-step h3 {
    margin-bottom: 10px;
}

/* ===== BRANDS FULL PAGE ===== */
.brands-intro {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.brands-intro h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.brands-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.brands-full {
    padding: 0 0 100px;
    background: var(--white);
}

.brands-full-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.brand-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: var(--transition);
}

.brand-card:hover {
    box-shadow: var(--shadow);
    transform: scale(1.05);
}

.brand-card img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.brand-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== PARTNERSHIP SECTION ===== */
.partnership-section {
    padding: 100px 0;
    background: var(--light-gray);
    text-align: center;
}

.partnership-section h2 {
    margin-bottom: 20px;
}

.partnership-section > .container > p {
    max-width: 700px;
    margin: 0 auto 40px;
}

.partnership-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    margin-bottom: 15px;
}

.contact-form-wrapper > p,
.contact-info-wrapper > p {
    margin-bottom: 30px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.contact-form .btn {
    grid-column: span 2;
    justify-self: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.info-content h4 {
    margin-bottom: 5px;
}

.info-content p {
    margin-bottom: 0;
}

.social-links {
    margin-top: 40px;
}

.social-links h4 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white);
}

.social-icon i {
    font-size: 1.2rem;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid,
    .stats-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-full-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .features-grid,
    .services-grid,
    .reasons-grid,
    .mv-grid,
    .services-full-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-preview .container,
    .who-we-are .container {
        grid-template-columns: 1fr;
    }

    .about-image,
    .who-image {
        order: -1;
    }

    .values-grid,
    .stats-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .contact-form .btn {
        grid-column: span 1;
        width: 100%;
    }

    .platforms-grid {
        gap: 20px;
    }

    .partnership-benefits {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .values-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .brands-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
