/* ============================================
    ITEMSURF - Modern 3PL Solutions Design
    ============================================ */

:root {
    --primary-color: #ef4718;
    --primary-dark: #d13a0f;
    --primary-light: #ff6b4a;
    --secondary-color: #000000;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f4f4f4;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
    HEADER
    ============================================ */

.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 32px;
}

.logo {
    flex-shrink: 0;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-login {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-login:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* ============================================
    HEADER SLIDER
    ============================================ */

.header-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.slider-main {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: translateX(100%);
    display: flex;
    align-items: center;
}

.slider-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.slider-slide.prev {
    transform: translateX(-100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
}

.slide-text {
    max-width: 600px;
    color: var(--bg-white);
    animation: fadeInLeft 0.8s ease-out;
}

.slide-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--bg-white);
    letter-spacing: -1px;
}

.slide-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 10;
    pointer-events: none;
}

.slider-nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-nav-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(239, 71, 24, 0.4);
}

.slider-nav-btn:active {
    transform: scale(0.95);
}

.slider-indicators {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    border-color: var(--primary-color);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active:hover {
    background: var(--primary-color);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
    HERO SECTION
    ============================================ */

.hero {
    background: #ffffff;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-images {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 8s ease-in-out;
    filter: grayscale(100%) brightness(0.3);
}

.hero-bg-image.bg-img-1 {
    opacity: 0.15;
    animation: fadeInOut 20s infinite;
    animation-delay: 0s;
}

.hero-bg-image.bg-img-2 {
    opacity: 0;
    animation: fadeInOut 20s infinite;
    animation-delay: 6.66s;
}

.hero-bg-image.bg-img-3 {
    opacity: 0;
    animation: fadeInOut 20s infinite;
    animation-delay: 13.33s;
}

@keyframes fadeInOut {
    0%, 33.33% {
        opacity: 0.15;
    }
    33.34%, 66.66% {
        opacity: 0;
    }
    66.67%, 100% {
        opacity: 0;
    }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.75) 50%,
        rgba(255, 255, 255, 0.85) 100%
    );
    z-index: 1;
}

.hero-bg-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 2;
}

.hero-bg-icon {
    position: absolute;
    font-size: 120px;
    color: var(--primary-color);
    animation: float 8s ease-in-out infinite;
    opacity: 0.6;
}

.hero-bg-icon.icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    font-size: 100px;
}

.hero-bg-icon.icon-2 {
    top: 20%;
    right: 8%;
    animation-delay: 1s;
    font-size: 80px;
}

.hero-bg-icon.icon-3 {
    top: 50%;
    left: 2%;
    animation-delay: 2s;
    font-size: 90px;
}

.hero-bg-icon.icon-4 {
    bottom: 15%;
    right: 12%;
    animation-delay: 3s;
    font-size: 110px;
}

.hero-bg-icon.icon-5 {
    top: 35%;
    right: 3%;
    animation-delay: 1.5s;
    font-size: 70px;
}

.hero-bg-icon.icon-6 {
    bottom: 25%;
    left: 8%;
    animation-delay: 2.5s;
    font-size: 85px;
}

.hero-bg-icon.icon-7 {
    top: 60%;
    right: 20%;
    animation-delay: 0.5s;
    font-size: 95px;
}

.hero-bg-icon.icon-8 {
    top: 5%;
    left: 25%;
    animation-delay: 3.5s;
    font-size: 75px;
}

.hero-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(239, 71, 24, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(239, 71, 24, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(239, 71, 24, 0.01) 0%, transparent 50%);
    background-size: 100% 100%;
    opacity: 0.4;
    z-index: 2;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 11;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: -1.2px;
    position: relative;
    display: inline-block;
    padding: 20px 30px;
    border-radius: 16px;
    overflow: hidden;
}

.hero-title-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1200&h=800&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    filter: grayscale(100%) brightness(0.8);
    z-index: 0;
    border-radius: 16px;
}

.hero-title-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 1;
}

.hero-title-text {
    position: relative;
    z-index: 2;
    display: block;
}

.hero-title .highlight {
    color: var(--primary-color);
    display: inline;
    position: relative;
    z-index: 3;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary-color);
}

.btn-link i {
    transition: var(--transition);
}

.btn-link:hover i {
    transform: translateX(4px);
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(239, 71, 24, 0.1) 0%, rgba(239, 71, 24, 0.05) 100%);
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

.hero-main-visual {
    position: relative;
    z-index: 2;
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(239, 71, 24, 0.3);
    transform: rotate(-5deg);
    transition: var(--transition);
}

.hero-main-visual:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 25px 80px rgba(239, 71, 24, 0.4);
}

.hero-main-visual i {
    font-size: 120px;
    color: var(--bg-white);
    opacity: 0.9;
}

/* ============================================
    WAREHOUSE SLIDER
    ============================================ */

.warehouse-slider {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--bg-white);
}

.slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    width: 33.333%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    padding: 40px;
    color: var(--bg-white);
    transform: translateY(0);
    transition: var(--transition);
}

.slide-overlay h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--bg-white);
}

.slide-overlay p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    pointer-events: all;
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    border-color: var(--primary-color);
}

.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ============================================
    TRUSTED PARTNERS
    ============================================ */

.trusted-partners {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 12px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-card {
    background-color: var(--bg-light);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.partner-logo {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-primary);
}

/* ============================================
    SERVICES SECTION
    ============================================ */

.services {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.service {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service ul {
    padding-bottom: 40px;
}

.service h3 {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.service h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service ul {
    list-style: none;
    padding: 0;
}

.service li {
    padding: 12px 0;
    padding-left: 28px;
    color: var(--text-secondary);
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.service li::before {
    display: none;
}

.service li {
    display: flex;
    align-items: center;
}

.service li i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 14px;
}

/* ============================================
    SOLUTIONS SECTION
    ============================================ */

.solutions {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.solution {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.solution:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

/* ============================================
    CTA SECTION
    ============================================ */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
    METRICS
    ============================================ */

.metrics {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.metric-card {
    background-color: var(--bg-light);
    padding: 28px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.metric-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.metric-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.metric-detail {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
    GLOBAL REACH
    ============================================ */

.global-reach {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.global-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-gray);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 16px;
}

.region-list {
    display: grid;
    gap: 16px;
}

.region-card {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.region-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.region-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 16px;
}

.region-status {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.region-status.active {
    background-color: rgba(239, 71, 24, 0.1);
    color: var(--primary-color);
}

.region-status.soon {
    background-color: rgba(26, 26, 26, 0.08);
    color: var(--text-primary);
}

.region-meta {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.region-copy {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
    TESTIMONIALS SECTION
    ============================================ */

.testimonials {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.1;
    font-weight: 700;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.testimonial p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial cite {
    font-weight: 600;
    color: var(--text-primary);
    font-style: normal;
    font-size: 15px;
    display: block;
    position: relative;
    z-index: 1;
}

/* ============================================
    FOOTER
    ============================================ */

.main-footer {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3,
.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.footer-logo {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 800;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-top: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ============================================
    CONTACT SECTION
    ============================================ */

.contact-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-copy .section-title {
    text-align: left;
}

.contact-copy .section-description {
    margin-left: 0;
    text-align: left;
}

.contact-points {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.contact-points li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.contact-points li::before {
    display: none;
}

.contact-points li {
    display: flex;
    align-items: center;
    padding-left: 0;
}

.contact-meta {
    display: grid;
    gap: 6px;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.contact-form form {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.form-group {
    display: grid;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background-color: #fff;
    font-size: 14px;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(239, 71, 24, 0.12);
}

.form-submit {
    width: 100%;
    text-align: center;
}

/* ============================================
    RESPONSIVE DESIGN
    ============================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid,
    .solutions-grid,
    .testimonials-grid,
    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .global-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
        padding: 24px;
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    
    .main-nav li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .main-nav a::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .header-actions {
        gap: 8px;
    }
    
    .btn-login {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .header-slider {
        height: 400px;
    }

    .slide-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .slide-description {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .slide-text {
        max-width: 100%;
        padding: 0 20px;
    }

    .slider-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        padding: 0 12px;
    }

    .slider-indicators {
        bottom: 16px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }

    .hero {
        padding: 60px 0 80px;
        min-height: auto;
    }

    .hero-bg-image {
        filter: grayscale(100%) brightness(0.2);
    }

    .hero-bg-overlay {
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0.9) 100%
        );
    }

    .hero-bg-icon {
        font-size: 60px !important;
        opacity: 0.03;
    }

    .hero-bg-icon.icon-1,
    .hero-bg-icon.icon-2,
    .hero-bg-icon.icon-3,
    .hero-bg-icon.icon-4 {
        font-size: 50px !important;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        height: 300px;
        order: -1;
    }

    .hero-main-visual {
        width: 200px;
        height: 200px;
    }

    .hero-main-visual i {
        font-size: 80px;
    }

    .hero-shape-1 {
        width: 200px;
        height: 200px;
    }

    .hero-shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
        text-align: center;
        padding: 16px 20px;
    }

    .hero-title-bg {
        opacity: 0.1;
    }
    
    .hero-subtitle {
        font-size: 16px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn-primary {
        width: 100%;
    }

    .hero-content {
        text-align: center;
    }
    
    .warehouse-slider {
        padding: 60px 0;
    }

    .slider-container {
        height: 350px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slide-overlay {
        padding: 24px;
    }

    .slide-overlay h3 {
        font-size: 24px;
    }

    .slide-overlay p {
        font-size: 16px;
    }

    .trusted-partners,
    .services,
    .solutions,
    .testimonials,
    .global-reach,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .services-grid,
    .solutions-grid,
    .testimonials-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service,
    .solution,
    .testimonial {
        padding: 32px 24px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .main-footer {
        padding: 60px 0 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
}

/* ============================================
    ICONS STYLING
    ============================================ */

.hero-icon {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 24px;
    opacity: 0.1;
}

.service-icon,
.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 36px;
    color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.service:hover .service-icon,
.solution:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

.partner-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
    transition: var(--transition);
}

.partner-card:hover .partner-icon {
    transform: scale(1.2);
    color: var(--primary-dark);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--bg-white);
    margin-bottom: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.metric-card:hover .metric-icon {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.region-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    transition: var(--transition);
}

.region-card:hover .region-icon {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: rotate(5deg);
}

.region-flag {
    width: 60px;
    height: 40px;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    background: var(--bg-white);
}

.flag-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.region-card:hover .region-flag {
    transform: scale(1.1) rotate(2deg);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.mena-flags {
    display: flex;
    gap: 4px;
    width: auto;
    height: 40px;
}

.mena-flags .flag-image {
    width: 50px;
    height: 40px;
    border-radius: 4px;
    transition: var(--transition);
}

.region-card:hover .mena-flags .flag-image {
    transform: translateY(-2px);
}

.testimonial-avatar {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 16px;
}

.testimonial-rating {
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 18px;
}

.testimonial-rating i {
    margin-right: 4px;
}

.service li i,
.contact-points li i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 14px;
}

.contact-meta i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
}

.btn-primary i,
.btn-secondary i,
.btn-white i {
    margin-right: 8px;
}

.testimonial cite i {
    color: var(--primary-color);
    margin-right: 8px;
    opacity: 0.5;
}

.region-status i {
    margin-right: 6px;
}

.region-meta i {
    margin-right: 6px;
    color: var(--primary-color);
    opacity: 0.7;
}

/* ============================================
    ANIMATIONS
    ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up.delay-1 {
    transition-delay: 0.1s;
}

.fade-in-up.delay-2 {
    transition-delay: 0.2s;
}

.fade-in-up.delay-3 {
    transition-delay: 0.3s;
}

.fade-in-up.delay-4 {
    transition-delay: 0.4s;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-left.delay-1 {
    transition-delay: 0.1s;
}

.slide-in-left.delay-2 {
    transition-delay: 0.2s;
}

.slide-in-left.delay-3 {
    transition-delay: 0.3s;
}

.slide-in-left.delay-4 {
    transition-delay: 0.4s;
}

.slide-in-left.delay-5 {
    transition-delay: 0.5s;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right.delay-1 {
    transition-delay: 0.1s;
}

.slide-in-right.delay-2 {
    transition-delay: 0.2s;
}

.slide-in-right.delay-3 {
    transition-delay: 0.3s;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Hover Animations */
.service,
.solution,
.testimonial,
.partner-card,
.metric-card,
.region-card {
    transition: var(--transition);
}

.service:hover,
.solution:hover,
.testimonial:hover {
    transform: translateY(-8px);
}

.partner-card:hover {
    transform: translateY(-4px) scale(1.02);
}

.metric-card:hover {
    transform: translateY(-4px);
}

/* Button Animations */
.btn-primary,
.btn-secondary,
.btn-white {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.btn-white::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-white:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary i,
.btn-secondary i,
.btn-white i {
    position: relative;
    z-index: 1;
}

/* Loading Spinner */
.fa-spinner {
    animation: rotate 1s linear infinite;
}

/* Icon Hover Effects */
.service-icon:hover,
.solution-icon:hover {
    animation: pulse 1s infinite;
}

/* Smooth Scroll Animation */
html {
    scroll-behavior: smooth;
}

/* Stagger Animation for Grids */
.services-grid .service:nth-child(1) {
    animation-delay: 0s;
}

.services-grid .service:nth-child(2) {
    animation-delay: 0.2s;
}

.services-grid .service:nth-child(3) {
    animation-delay: 0.4s;
}

/* Counter Animation */
.metric-value {
    transition: all 0.3s ease;
}

.metric-value.counted {
    animation: pulse 0.5s ease;
}

/* ============================================
    CONTACT PAGE STYLES
    ============================================ */

.logo-link {
    text-decoration: none;
    color: inherit;
}

.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a.active::after {
    width: 100%;
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 100px 0 80px;
    color: var(--bg-white);
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-icon {
    font-size: 80px;
    margin-bottom: 24px;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.contact-hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Main Section */
.contact-main-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contact-info-side,
.contact-form-side {
    position: sticky;
    top: 100px;
}

.contact-info-card,
.contact-form-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.contact-info-title,
.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-title i,
.contact-form-title i {
    color: var(--primary-color);
    font-size: 24px;
}

.contact-info-description,
.contact-form-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-info-list {
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bg-white);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.contact-info-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-info-content p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    line-height: 1.6;
}

.contact-info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-benefits {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    margin-top: 32px;
}

.contact-benefits h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-benefits h3 i {
    color: var(--primary-color);
}

.contact-benefits ul {
    list-style: none;
    padding: 0;
}

.contact-benefits li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.contact-benefits li i {
    color: var(--primary-color);
    font-size: 14px;
}

/* Contact Form */
.contact-form {
    margin-top: 24px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 15px;
}

.contact-form label i {
    color: var(--primary-color);
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
    color: var(--text-primary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(239, 71, 24, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit-btn {
    width: 100%;
    margin-top: 8px;
}

.form-success-message {
    background: #10b981;
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    animation: fadeInUp 0.5s ease;
}

.form-success-message i {
    font-size: 20px;
}

/* Contact Map Section */
.contact-map-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.map-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.map-title i {
    color: var(--primary-color);
}

.map-placeholder-large {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.map-overlay i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.map-overlay p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.map-overlay .btn-secondary {
    margin-top: 8px;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-info-side,
    .contact-form-side {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 40px;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-subtitle {
        font-size: 18px;
    }

    .contact-main-section {
        padding: 60px 0;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 32px 24px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-map-section {
        padding: 60px 0;
    }

    .map-placeholder-large {
        height: 400px;
    }

    .map-overlay {
        padding: 24px;
        margin: 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-icon {
        font-size: 60px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 24px 20px;
    }

    .contact-info-item {
        flex-direction: column;
        gap: 12px;
    }

    .map-placeholder-large {
        height: 300px;
    }
}