/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    opacity: 0;
    /* Hidden initially for GSAP */
}

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

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 4rem;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 0 0 auto;
    max-width: 550px;
    position: relative;
    z-index: 2;
    align-self: center;
    padding-right: 2rem;
}

.hero-visual {
    flex: 1;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 5rem;
    line-height: 0.95;
    margin-bottom: 2rem;
    color: var(--primary);
    opacity: 0;
    /* Hidden initially for GSAP */
}

.outline-text {
    -webkit-text-stroke: 2px var(--primary);
    color: transparent;
    transition: all 0.5s ease;
}

.hero-title:hover .outline-text {
    color: var(--accent);
    -webkit-text-stroke: 0px;
    text-shadow: 0 0 30px var(--accent-glow);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--secondary);
    max-width: 500px;
    margin-bottom: 3rem;
    border-left: 2px solid var(--accent);
    padding-left: 1.5rem;
    opacity: 0;
    /* Hidden initially for GSAP */
}

.hero-actions {
    opacity: 0;
    /* Hidden initially for GSAP */
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero {
        padding: 0 3rem;
        padding-top: 100px;
    }

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

@media (max-width: 1024px) {
    .navbar {
        padding: 1.5rem 2rem;
    }

    .hero {
        padding: 0 2rem;
        padding-top: 80px;
        gap: 1.5rem;
    }

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

    .hero-content {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0;
        gap: 0;
        height: 100dvh;
        min-height: 100dvh;
        position: relative;
        text-align: center;
    }

    .hero-content {
        flex: 1;
        max-width: 100%;
        padding: 0 1.5rem;
        padding-top: 80px;
        /* Account for navbar */
        padding-bottom: 2rem;
        text-align: center;
        position: relative;
        z-index: 3;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* Distribute content evenly */
        align-items: center;
        min-height: 0;
        /* Allow flex to work properly */
    }

    .hero-visual {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.5;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 0;
        margin-top: auto;
        /* Push down from top */
        line-height: 0.95;
        letter-spacing: -0.02em;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0;
        padding-left: 0;
        border-left: none;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.65;
        opacity: 1;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
        font-weight: 400;
        padding-top: 1rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 350px;
        margin-top: auto;
        /* Push to bottom */
        padding-bottom: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        display: block;
        width: 100%;
        text-align: center;
        margin-left: 0;
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.02em;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding-top: 70px;
    }

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

    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 280px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Section Utilities */
.section-padding {
    padding: 8rem 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 3rem 0;
    }
}

.section-header {
    margin-bottom: 4rem;
    max-width: 800px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    overflow-wrap: break-word;
    hyphens: auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
}

.text-accent {
    color: var(--accent);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary);
    max-width: 600px;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

/* Bento Cards */
.bento-card {
    background: var(--surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
    border-color: var(--accent);
    background: var(--surface);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Card Sizes */
.bento-card.large {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
}

.bento-card.medium {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-card.wide {
    grid-column: span 2;
    grid-row: span 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* Card Content */
.card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.card-desc {
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1.6;
}

/* Partner Card Specifics */
.partner-card {
    position: relative;
    isolation: isolate;
}

.partner-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.4) 60%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.partner-card .card-content {
    position: relative;
    z-index: 2;
    text-shadow: none;
}

.partner-card .card-desc {
    color: var(--secondary);
    font-weight: 400;
}

/* Decorative Elements */
.card-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 15rem;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    transition: all 0.5s ease;
}

.bento-card:hover .card-bg-icon {
    transform: scale(1.1) rotate(-10deg);
    color: rgba(255, 51, 51, 0.05);
}

/* Why Us Section (Timeline) */
.why-us-section {
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.why-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.why-us-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: grayscale(50%) contrast(120%);
}

.why-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(245, 245, 247, 0.3) 5%,
            rgba(245, 245, 247, 0.5) 15%,
            rgba(245, 245, 247, 0.6) 50%,
            rgba(245, 245, 247, 0.5) 85%,
            rgba(245, 245, 247, 0.3) 95%,
            transparent 100%);
}

.center-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.timeline-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 4rem 0;
    z-index: 2;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 300px;
}

.timeline-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--surface);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.timeline-item:hover .timeline-icon {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: scale(1.1);
    color: #fff;
    background: var(--accent);
}

.timeline-item:hover .timeline-icon i {
    color: #fff;
}

.timeline-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.timeline-desc {
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1.6;
}

.timeline-connector {
    flex: 1;
    height: 2px;
    background-image: linear-gradient(to right, transparent 50%, var(--accent) 50%);
    background-size: 20px 100%;
    margin-top: 50px;
    /* Align with center of icon (100px/2) */
    opacity: 0.3;
}

@media (max-width: 768px) {
    .timeline-container {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .timeline-connector {
        display: none;
        /* Hide horizontal lines on mobile */
    }

    .timeline-item {
        max-width: 100%;
    }
}

/* Responsive Bento */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .bento-card.large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 300px;
    }

    .bento-card.wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .partner-card .card-content {
        padding-top: 4rem;
        /* Ensure text doesn't overlap with top image area if needed */
    }

    .partner-card::after {
        background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 70%, transparent 100%);
    }
}

/* Creative Image Integration */
.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    mix-blend-mode: luminosity;
    transition: all 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.bento-card:hover .card-bg-img {
    opacity: 0.25;
    transform: scale(1.05);
}

/* Specific Card Styles */
.card-fulfillment .card-bg-img {
    /* Yellow/White Plastic - Industrial Texture */
    mask-image: linear-gradient(to bottom right, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom right, black 40%, transparent 100%);
}

.card-lastmile .card-bg-img {
    /* Apples/Bananas - Organic/Fresh delivery context */
    mix-blend-mode: overlay;
    opacity: 0.1;
    filter: grayscale(100%) contrast(120%);
}

.bento-card:hover .card-lastmile .card-bg-img {
    filter: grayscale(0%) contrast(100%);
    /* Reveal color on hover */
    opacity: 0.2;
}

/* Image Card - Standalone Visual */
.card-image {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.card-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.card-image:hover .card-full-img {
    transform: scale(1.08);
}

/* Driver Section Visual */
.driver-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    /* Creative Polygon Mask */
    clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
    filter: grayscale(20%) sepia(20%);
    /* Greenish tint */
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.driver-visual:hover .driver-visual-img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    /* Expand on hover */
    filter: grayscale(0%);
}

/* Partner Section Accent */
.partner-accent-img {
    position: absolute;
    right: -10%;
    top: -20%;
    width: 400px;
    height: 400px;
    object-fit: cover;
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: multiply;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
        /* Kept from original */
    }

    .bento-card {
        min-height: 250px;
        padding: 2rem 1.5rem;
        /* Kept from original */
    }

    .driver-visual-img {
        height: 300px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        /* Full rect on mobile */
    }

    .bento-card.large,
    .bento-card.medium,
    .bento-card.wide {
        grid-column: span 1;
        grid-row: auto;
        min-height: 200px;
    }

    .card-title {
        font-size: 1.25rem;
    }

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

    .bento-card.card-image {
        border: none !important;
        padding: 0 !important;
        background: transparent !important;
    }
}

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

    .card-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-desc {
        font-size: 0.85rem;
    }
}

/* Partner Section */
.marquee-container {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 4rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.02);
    margin-bottom: 4rem;
}

.marquee-track {
    display: flex;
    gap: 6rem;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.partner-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    transition: color 0.3s ease;
    cursor: default;
}

.partner-logo:hover {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Trust Stats */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 2rem;
    border: 1px solid var(--border);
    background: var(--surface);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-item {
        padding: 1.5rem 1rem;
    }

    .trust-number {
        font-size: 2.5rem;
    }

    .trust-label {
        font-size: 0.85rem;
    }

    .partner-logo {
        font-size: 1.8rem;
    }

    .marquee-container {
        padding: 3rem 0;
        margin-bottom: 4rem;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        gap: 0.75rem;
    }

    .trust-item {
        padding: 1.25rem 0.75rem;
    }

    .trust-number {
        font-size: 2rem;
    }

    .trust-label {
        font-size: 0.75rem;
    }

    .partner-logo {
        font-size: 1.5rem;
    }

    .marquee-container {
        padding: 2rem 0;
        margin-bottom: 3rem;
    }

    .marquee-track {
        gap: 4rem;
    }
}

/* Driver Recruitment Section */
.driver-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.driver-visual {
    position: relative;
    height: 600px;
    border-radius: 20px;
    /* Removed overflow: hidden to allow depth */
    z-index: 1;
}

.driver-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(110%);
    transition: all 0.8s ease;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.driver-visual:hover .driver-visual-img {
    transform: scale(1.02) rotate(-1deg);
    /* Subtle movement on hover */
    filter: grayscale(0%) contrast(100%);
}

/* Driver Card (Floating) */
.driver-card {
    position: absolute;
    bottom: -6rem;
    right: -2rem;
    width: 80%;
    background: rgba(20, 20, 20, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 2px;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.driver-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.driver-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.driver-card-title {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.driver-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .val {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: #ffffff;
}

.stat .lbl {
    font-size: 0.8rem;
    color: var(--secondary);
    text-transform: uppercase;
}

/* Benefit List */
.benefit-list {
    list-style: none;
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--primary);
}

.benefit-list i {
    color: var(--accent);
    font-size: 1.5rem;
}

/* Responsive Driver */
@media (max-width: 1024px) {
    .driver-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .driver-visual {
        height: 400px;
        order: -1;
        /* Ensure visual is always on top on mobile */
    }

    .driver-card {
        position: absolute;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100%;
        margin: 0;
        transform: none;
        box-shadow: none;
        border-radius: 0 0 20px 20px;
        background: rgba(255, 255, 255, 0.8);
        /* More transparent */
        backdrop-filter: blur(8px);
        /* Less blur */
        -webkit-backdrop-filter: blur(8px);
        padding: 1rem;
    }

    .driver-card:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .driver-split {
        gap: 3rem;
    }

    .driver-card {
        padding: 1rem;
    }

    .benefit-list {
        margin: 2rem 0;
        gap: 1.25rem;
    }

    .benefit-list li {
        font-size: 1rem;
    }

    .benefit-list i {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .driver-visual {
        height: 300px;
    }

    .driver-card {
        margin-top: 0;
        padding: 1rem;
    }

    .driver-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .driver-card-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .driver-stats {
        padding-top: 0.5rem;
    }

    .stat .val {
        font-size: 1.25rem;
    }

    .benefit-list {
        gap: 1rem;
    }

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

/* Contact Section */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

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

/* New Contact Visual Card */
.contact-visual-card {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.contact-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.contact-visual-card:hover .contact-visual-img {
    transform: scale(1.1);
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.visual-overlay i {
    font-size: 2rem;
    color: var(--accent);
}

.visual-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-heading);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.8);
}

.info-icon {
    font-size: 2rem;
    color: var(--accent);
}

.info-text h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.info-text p,
.info-text a {
    color: var(--secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.info-text a:hover {
    color: var(--accent);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--surface);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border: 1px solid var(--border);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-group select {
    color: var(--secondary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 0;
    color: var(--secondary);
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Floating Label Logic */
.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: var(--accent);
}

/* Footer */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand p {
    color: var(--secondary);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.footer-links a:hover {
    color: var(--accent);
}

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

.footer-socials a {
    font-size: 1.5rem;
    color: var(--primary);
}

.footer-socials a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--secondary);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Responsive Contact & Footer */
@media (max-width: 768px) {
    .contact-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .info-item {
        padding: 1.25rem 1rem;
    }

    .info-icon {
        font-size: 1.75rem;
    }

    .info-text h4 {
        font-size: 1rem;
    }

    .info-text p,
    .info-text a {
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-split {
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.9rem;
        padding: 0.875rem 0;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .info-item {
        padding: 1rem;
        gap: 1rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        margin-bottom: 2rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-socials a {
        font-size: 1.35rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:first-child {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--accent);
}

.mobile-menu-btn.active span:last-child {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--accent);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-menu-close i {
    font-size: 1.5rem;
    color: var(--primary);
}

.mobile-menu-close:hover {
    border-color: var(--accent);
    transform: rotate(90deg);
}

.mobile-menu-close:hover i {
    color: var(--accent);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--accent);
}

.mobile-link.btn-primary {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: var(--bg);
}

/* Responsive Navigation Logic */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .navbar {
        padding: 1.5rem;
    }

    /* Adjust Section Padding for Mobile */
    .section-padding {
        padding: 4rem 0;
    }

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

    /* Fix Hero Height on Mobile */
    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 100px;
        padding-bottom: 4rem;
    }
}