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

:root {
    --purple: #1d4d8a;
    --pink: #fc833e;
    --cyan: #072654;
    --dark-purple: #072654;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    /* Kurumsal Renkler */
    --corporate-navy: #072654;
    --corporate-orange: #fc833e;
    --corporate-white: #FFFFFF;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    font-weight: 300;
}

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

/* Header */
.header {
    background: transparent;
    padding: 25px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px -10px rgba(7, 38, 84, 0.15);
    padding: 12px 0;
    border-bottom: 1px solid rgba(7, 38, 84, 0.05);
}

@media (min-width: 1024px) {
    .header.scrolled {
        top: 15px;
        width: calc(100% - 60px);
        left: 30px;
        right: 30px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    /* Alt sayfalarda floating pill efekti olmasın — tam kenara yapışsın */
    .header.scrolled.subpage {
        top: 0;
        width: 100%;
        left: 0;
        right: 0;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(7, 38, 84, 0.08);
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: bold;
    font-size: 12px;
    line-height: 1.2;
    transition: color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.header.scrolled .logo {
    color: var(--dark-purple);
}

.logo i {
    font-size: 24px;
}

.logo-img {
    width: 120px;
    height: 40px;
    object-fit: contain;
}

.logo .logo-primary {
    display: none;
}

.logo .logo-white {
    display: block;
}

.header.scrolled .logo .logo-primary {
    display: block;
}

.header.scrolled .logo .logo-white {
    display: none;
}

/* Mobile Toggle Styles */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
    margin-left: 15px;
}

.header.scrolled .mobile-menu-toggle {
    color: var(--corporate-navy);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, opacity 0.3s;
}

.header.scrolled .nav-menu a {
    color: var(--dark-purple);
}

.nav-menu a:hover {
    opacity: 0.8;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-quote {
    background: var(--corporate-orange);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.header.scrolled .btn-quote {
    background: var(--corporate-orange);
    color: var(--white);
}

.btn-quote:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-lang {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.header.scrolled .btn-lang {
    color: var(--dark-purple);
    border-color: var(--dark-purple);
}

.btn-lang:hover {
    background: rgba(255,255,255,0.1);
}

.header.scrolled .btn-lang:hover {
    background: rgba(45, 27, 78, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--corporate-navy) 0%, #1a4a7a 50%, var(--corporate-orange) 100%);
    padding: 160px 0 140px;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(252, 131, 62, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(7, 38, 84, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    transform: none !important;
}

.hero-text h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-text p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--dark-purple);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-purple);
    transform: translateY(-2px);
}

/* Hero Image */
.hero-image,
.hero-image *,
.hexagon-wrapper,
.hexagon-wrapper *,
.hexagon,
.hexagon *,
.hex-content,
.hex-content * {
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.hero-image {
    perspective: none !important;
}

/* Hexagon */
.hexagon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hexagon {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 400 / 346.4;
    height: auto;
    background: #FFFFFF;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.hex-content {
    position: absolute;
    inset: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    overflow: hidden;
    background: #ffffff;
}

.hex-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.stat-badge {
    position: absolute;
    top: 60px;
    right: 60px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-badge i {
    font-size: 30px;
    color: var(--purple);
}

.stat-badge div {
    font-size: 32px;
    font-weight: bold;
    color: var(--purple);
    margin-top: 5px;
}

.phone-mockup {
    font-size: 120px;
    color: rgba(255,255,255,0.9);
}

.box-icon {
    position: absolute;
    top: 50px;
    left: 80px;
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 15px;
    font-size: 40px;
    color: var(--pink);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.delivery-badge {
    position: absolute;
    bottom: 80px;
    left: 60px;
    background: var(--purple);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Section Titles */
.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.section-title.white {
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.section-subtitle.white {
    color: rgba(255,255,255,0.8);
}

/* Fulfillment Section */
.fulfillment-section {
    padding: 80px 0 140px;
    background: var(--light-gray);
    position: relative;
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card {
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card.active {
    opacity: 1;
    transform: scale(1);
}

.hexagon-small {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
}

.hexagon-small.navy {
    background: linear-gradient(135deg, #072654, #1b4984);
}

.hexagon-small.orange {
    background: linear-gradient(135deg, #fc833e, #ff9b62);
}

.hexagon-small.slate {
    background: linear-gradient(135deg, #475569, #64748b);
}

.hexagon-small i {
    font-size: 70px;
    color: var(--white);
}

.brand-text {
    color: var(--white);
    font-weight: bold;
    font-size: 20px;
}

.feature-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.step-card-content {
    display: flex;
    gap: 20px;
    align-items: start;
    width: 100%;
}

.step-card-text {
    flex: 1;
}

.step-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(7, 38, 84, 0.05);
}

.step-card.active {
    background: var(--white);
    border-left: 4px solid var(--corporate-orange);
    box-shadow: 0 10px 30px rgba(7, 38, 84, 0.08);
}

.step-card.active h3 {
    color: var(--corporate-navy);
}

.step-number {
    background: var(--text-dark);
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 80px 0 140px;
    background: var(--corporate-navy);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fulfillment-services .services-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 15px;
    transition: transform 0.3s, background 0.3s;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 32px;
}

.service-icon.pink {
    background: var(--corporate-orange);
    color: var(--white);
}

.service-card h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
}

/* Return Section */
.return-section {
    padding: 80px 0 140px;
    background: var(--light-gray);
    position: relative;
}

.visual-card-return {
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card-return.active {
    opacity: 1;
    transform: scale(1);
}

.hexagon-medium {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hexagon-medium.navy {
    background: linear-gradient(135deg, #072654, #1b4984);
}

.hexagon-medium.orange {
    background: linear-gradient(135deg, #fc833e, #ff9b62);
}

.hexagon-medium.slate {
    background: linear-gradient(135deg, #475569, #64748b);
}

.hexagon-medium i {
    font-size: 80px;
    color: var(--white);
}

.step-card-return {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.step-card-return:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(7, 38, 84, 0.05);
}

.step-card-return.active {
    background: var(--white);
    border-left: 4px solid var(--corporate-orange);
    box-shadow: 0 10px 30px rgba(7, 38, 84, 0.08);
}

.step-card-return.active h3 {
    color: var(--corporate-navy);
}

.step-card-return h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-card-return p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Integrations Section */
.integrations-section {
    padding: 80px 0 140px;
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
    width: 100%;
    /* Gradient mask overlay to fade out the edges */
    -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
    mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    display: flex;
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 10px 0;
}

.carousel-track.slide-left {
    animation: scrollLeft 45s linear infinite;
}

.carousel-track.slide-right {
    animation: scrollRight 45s linear infinite;
}

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

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

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

/* Card Styling inside Marquee */
.integration-grid-card {
    background: var(--white);
    border: 1px solid rgba(7, 38, 84, 0.06);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(7, 38, 84, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    flex-shrink: 0;
    width: 260px;
    height: 80px;
}

.card-logo-container {
    height: 48px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-logo-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.65;
    transition: all 0.3s ease;
}

.card-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    text-align: left;
    transition: color 0.3s ease;
}

/* Hover States */
.integration-grid-card:hover {
    transform: translateY(-3px);
    border-color: rgba(252, 131, 62, 0.4);
    box-shadow: 0 8px 20px rgba(7, 38, 84, 0.08);
}

.integration-grid-card:hover .card-logo-container img {
    filter: grayscale(0%);
    opacity: 1;
}

.integration-grid-card:hover .card-name {
    color: var(--corporate-orange);
}

/* Cargo Section */
.cargo-section {
    padding: 80px 0 140px;
    background: var(--light-gray);
    position: relative;
}

.cargo-logo {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #E5E7EB;
    width: 200px;
    height: 90px;
    flex-shrink: 0;
}

.cargo-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

/* Footer */
.footer {
    background: var(--corporate-navy);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col:nth-child(2),
.footer-col:nth-child(3) {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 24px;
}

.footer-logo .logo-img {
    width: 120px;
    height: 40px;
    object-fit: contain;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
}

.footer-info {
    font-size: 14px;
    line-height: 1.8;
}

.footer-info i {
    margin-right: 5px;
}

.phone-number {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.email {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.email a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.email a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    /* cargo-grid centers and wraps natively using flexbox layout */

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

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .fulfillment-section,
    .services-section,
    .prime-section,
    .return-section,
    .integrations-section,
    .cargo-section {
        padding: 60px 0 80px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }
    
    .section-subtitle {
        margin-bottom: 30px;
    }

    .fulfillment-services .services-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* cargo-grid centers and wraps natively using flexbox layout */

    .footer-content {
        grid-template-columns: 1fr;
    }

    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--corporate-navy);
        padding: 100px 40px;
        gap: 25px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(7, 38, 84, 0.15);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        color: var(--white) !important;
        font-size: 18px !important;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 10px;
        width: 100%;
    }

    .hexagon-small i {
        font-size: 48px;
    }
    
    .hexagon-small .brand-text {
        font-size: 14px;
    }
    
    .hexagon-medium i {
        font-size: 56px;
    }

    .phone-mockup {
        font-size: 80px;
    }

    .modal-content {
        width: 95%;
        margin: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .form-row {
        flex-direction: column;
    }

    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        align-items: flex-start;
        text-align: left;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 600px;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    max-height: 85vh;
    overflow-y: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--light-gray);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--purple);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 32px;
    color: var(--dark-purple);
    margin-bottom: 10px;
    font-weight: 700;
}

.modal-header p {
    color: var(--text-light);
    font-size: 16px;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(7, 38, 84, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--purple);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    background: var(--dark-purple);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(7, 38, 84, 0.3);
}

.btn-submit i {
    font-size: 18px;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-submit:disabled:hover {
    box-shadow: none;
    transform: none !important;
}

.input-error {
    border-color: #ef4444 !important;
}

.input-error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* --- Dynamic Enhancements additions --- */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(to right, var(--corporate-orange), #ff9b62);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* SVG Section Dividers */
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(0deg);
    pointer-events: none;
    z-index: 2;
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

@media (max-width: 768px) {
    .section-divider svg {
        height: 30px;
    }
}

/* Step Progress Timeline */
.step-progress-container {
    width: 100%;
    height: 3px;
    background: rgba(7, 38, 84, 0.05);
    margin-top: 15px;
    border-radius: 2px;
    overflow: hidden;
    display: none;
}

.step-card.active .step-progress-container,
.step-card-return.active .step-progress-container {
    display: block;
}

.step-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--corporate-orange);
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* Universal Reveal Animation System */
.reveal-fade,
.reveal-slide-up,
.reveal-slide-left,
.reveal-slide-right,
.reveal-scale {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-slide-up {
    transform: translateY(40px);
}

.reveal-slide-left {
    transform: translateX(-50px);
}

.reveal-slide-right {
    transform: translateX(50px);
}

.reveal-scale {
    transform: scale(0.92);
}

/* Animation trigger class applied by IntersectionObserver */
.reveal-active {
    opacity: 1 !important;
    transform: translate(0) scale(1) !important;
}

/* Stagger delays for grid grids */
.services-grid.reveal-active .service-card {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.services-grid .service-card:nth-child(1) { transition-delay: 100ms; }
.services-grid .service-card:nth-child(2) { transition-delay: 200ms; }
.services-grid .service-card:nth-child(3) { transition-delay: 300ms; }
.services-grid .service-card:nth-child(4) { transition-delay: 400ms; }
.services-grid .service-card:nth-child(5) { transition-delay: 500ms; }
.services-grid .service-card:nth-child(6) { transition-delay: 600ms; }

.cargo-grid.reveal-active .cargo-logo {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.cargo-grid .cargo-logo:nth-child(1) { transition-delay: 50ms; }
.cargo-grid .cargo-logo:nth-child(2) { transition-delay: 100ms; }
.cargo-grid .cargo-logo:nth-child(3) { transition-delay: 150ms; }
.cargo-grid .cargo-logo:nth-child(4) { transition-delay: 200ms; }
.cargo-grid .cargo-logo:nth-child(5) { transition-delay: 250ms; }
.cargo-grid .cargo-logo:nth-child(6) { transition-delay: 300ms; }

/* Micro animations for hero floating elements */
@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}
.stat-badge {
    animation: floatBadge 4s ease-in-out infinite !important;
}
.box-icon {
    animation: floatBadge 3.5s ease-in-out infinite 0.5s !important;
}
.delivery-badge {
    animation: floatBadge 3s ease-in-out infinite 1s !important;
}

/* --- Amazon Prime Section Styles --- */
.prime-section {
    padding: 80px 0 140px;
    background: var(--white);
    position: relative;
}

.prime-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.prime-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(252, 131, 62, 0.1);
    color: var(--corporate-orange);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prime-title {
    font-size: 36px;
    color: var(--corporate-navy);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.prime-description {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.prime-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.prime-features li {
    display: flex;
    gap: 15px;
    align-items: start;
}

.prime-features li i {
    color: var(--corporate-orange);
    font-size: 20px;
    margin-top: 3px;
}

.prime-features li strong {
    color: var(--corporate-navy);
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.prime-features li div {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Amazon Card Visual */
.prime-visual {
    display: flex;
    justify-content: center;
}

.prime-card {
    background: var(--white);
    border: 1px solid rgba(7, 38, 84, 0.08);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 50px -15px rgba(7, 38, 84, 0.12);
    position: relative;
    overflow: hidden;
}

.amazon-listing-header {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--corporate-navy);
    font-size: 14px;
}

.amazon-listing-header .amazon-icon {
    font-size: 22px;
    color: #FF9900; /* Amazon Yellow */
}

.listing-product {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.product-placeholder {
    width: 100px;
    height: 100px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: var(--corporate-navy);
    opacity: 0.8;
}

.product-details {
    flex: 1;
}

.product-tag {
    display: inline-block;
    background: #007185;
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
}

.product-name {
    font-size: 15px;
    color: #0F1111;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #B12704;
}

.prime-logo-tag {
    background: #00A8E1; /* Amazon Prime Blue */
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(0, 168, 225, 0.3);
}

.prime-logo-tag i {
    font-size: 9px;
}

.delivery-status {
    font-size: 12px;
    color: #565959;
}

.delivery-status strong {
    color: #007600; /* Green */
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid #E5E7EB;
    padding-top: 20px;
}

.stat-col {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--corporate-orange);
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .prime-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Hero Info Line */
.hero-info-line {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    background: rgba(252, 131, 62, 0.15);
    border: 1px solid rgba(252, 131, 62, 0.3);
    padding: 8px 18px;
    border-radius: 30px;
    width: fit-content;
}

.hero-info-line i {
    color: var(--corporate-orange);
    font-size: 16px;
}

.hero-info-line strong {
    color: var(--white);
    font-weight: 600;
}

/* Amazon Card Cutoff */
.delivery-cutoff {
    font-size: 11px;
    color: #a6a6a6;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}



/* Custom integration styles */




/* Amazon Prime Modal Customizations */
.prime-modal-content {
    max-width: 550px;
    border-top: 5px solid #00A8E1; /* Amazon Prime Blue highlight line at the top */
}

.prime-modal-badge {
    background: #00A8E1; /* Amazon Prime Blue */
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.prime-benefit-list {
    margin: 25px 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prime-benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.prime-benefit-item .benefit-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 168, 225, 0.1);
    color: #00A8E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.prime-benefit-item .benefit-text h3 {
    font-size: 16px;
    color: var(--corporate-navy);
    margin: 0 0 4px 0;
    font-weight: 600;
}

.prime-benefit-item .benefit-text p {
    font-size: 13.5px;
    color: var(--text-dark);
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

.prime-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}

.prime-modal-actions .btn-primary {
    background: var(--corporate-orange);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prime-modal-actions .btn-primary:hover {
    background: #e27230;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 131, 62, 0.3);
}

.prime-modal-actions .btn-secondary {
    background: transparent;
    color: var(--corporate-navy);
    border: 1px solid rgba(7, 38, 84, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prime-modal-actions .btn-secondary:hover {
    background: rgba(7, 38, 84, 0.05);
    border-color: var(--corporate-navy);
}

@media (max-width: 576px) {
    .prime-modal-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }
    .prime-modal-actions button {
        width: 100%;
        text-align: center;
    }
}




/* FAQ (Sıkça Sorulan Sorular) Section Styles */
.faq-section {
    padding: 100px 0 160px;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.faq-accordion {
    max-width: 800px;
    margin: 45px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(7, 38, 84, 0.08);
    border-radius: 12px;
    background: var(--white);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.015);
}

.faq-item:hover {
    border-color: rgba(7, 38, 84, 0.15);
    box-shadow: 0 8px 30px rgba(7, 38, 84, 0.04);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: var(--corporate-navy);
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 15px;
    outline: none;
}

.faq-question:hover {
    color: var(--corporate-orange);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: rgba(7, 38, 84, 0.04);
    color: var(--corporate-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active {
    border-color: var(--corporate-orange);
    box-shadow: 0 10px 30px rgba(252, 131, 62, 0.08);
}

.faq-item.active .faq-icon {
    background: var(--corporate-orange);
    color: var(--white);
    transform: rotate(135deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 30px 22px 30px;
}

.faq-answer p {
    font-size: 14.5px;
    color: var(--text-dark);
    opacity: 0.85;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }
    .faq-answer-content {
        padding: 0 20px 18px 20px;
    }
    .faq-answer p {
        font-size: 13.5px;
    }
}

/* Subpage Layout Classes */
.sidebar-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.standards-grid {
    list-style-type: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 991px) {
    .sidebar-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .standards-grid {
        grid-template-columns: 1fr;
    }
}






