/*
 * Rota Moto Kurye - Premium Corporate CSS (Silent Luxury Design)
 * Dominant: #261a72 (Deep Navy)
 * Accent: #fa8234 (Bright Orange)
 * Background: #ffffff (Pure White)
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fafafa;
    --bg-dark: #261a72;
    --bg-dark-secondary: #1d145c;
    --bg-dark-tertiary: #140d42;
    --text-primary: #261a72;
    --text-secondary: #4f4975;
    --text-muted: #8e8e8e;
    --text-light: #ffffff;
    --accent: #fa8234;
    --accent-hover: #e06d20;
    --accent-rgb: 250, 130, 52;
    --border-color: #eaeaea;
    --border-dark: #352b7a;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.08);
    --shadow-accent: 0 10px 30px rgba(var(--accent-rgb), 0.25);
    --font-family: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-family);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Base Styles & Utility Classes */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--text-light);
    border: none;
}

.btn-secondary:hover {
    background-color: var(--accent-hover);
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

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

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--bg-dark);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-secondary);
    margin-top: 16px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
}

/* --- NAVIGATION BAR --- */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.navbar-wrapper.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.navbar-wrapper.scrolled .navbar-container {
    height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.navbar-wrapper.scrolled .logo-img {
    height: 34px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--bg-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 20px;
}

/* Mobile Nav Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--bg-dark);
    transition: var(--transition-smooth);
    transform-origin: left center;
}

/* Mobile Nav Styles */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: var(--bg-primary);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 120px 40px 40px;
        gap: 30px;
        transition: var(--transition-smooth);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-cta {
        margin-left: 0;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
    }

    /* Cross animation for Hamburger */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        width: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
    }
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    background-color: var(--bg-secondary);
    min-height: 100vh;
    padding-top: 140px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

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

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 24px;
    border: 1px solid rgba(var(--accent-rgb), 0.15);
}

.hero-tag svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--bg-dark);
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.hero-stat-item h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 4px;
}

.hero-stat-item h3 span {
    color: var(--accent);
}

.hero-stat-item p {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual Graphics */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle-bg {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    animation: pulseCircle 8s infinite alternate ease-in-out;
}

.hero-card-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-delivery-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-delivery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.card-badge {
    background-color: #e6f7ed;
    color: #2e7d32;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
}

.card-tracking-num {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.delivery-timeline {
    position: relative;
    padding-left: 28px;
    margin-bottom: 24px;
}

.delivery-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-step {
    position: relative;
    margin-bottom: 20px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -28px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 3px solid var(--border-color);
    z-index: 2;
}

.timeline-step.completed .timeline-dot {
    border-color: var(--accent);
    background-color: var(--accent);
}

.timeline-step.active .timeline-dot {
    border-color: var(--accent);
    animation: dotPulse 1.5s infinite;
}

.timeline-time {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

.timeline-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-dark);
}

.timeline-info p {
    font-size: 12px;
    color: var(--text-secondary);
}

.courier-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.courier-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.courier-avatar svg {
    color: var(--accent);
    width: 20px;
    height: 20px;
}

.courier-details h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-dark);
}

.courier-details p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Floating interactive badges */
.floating-badge {
    position: absolute;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: floatAnimation 4s infinite alternate ease-in-out;
}

.fb-1 {
    top: -20px;
    left: -20px;
}

.fb-2 {
    bottom: -10px;
    right: -20px;
    animation-delay: 2s;
}

.fb-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(var(--accent-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.fb-content h5 {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
}

.fb-content p {
    font-size: 13px;
    font-weight: 700;
    color: var(--bg-dark);
}

@keyframes pulseCircle {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.1); opacity: 1; }
}

@keyframes dotPulse {
    0% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(var(--accent-rgb), 0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0); }
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

/* Hero Responsiveness */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 120px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        width: 100%;
        justify-content: center;
    }
    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .hero-circle-bg {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
    }
    .hero-description {
        font-size: 16px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .hero-stats {
        gap: 24px;
    }
    .hero-stat-item h3 {
        font-size: 24px;
    }
}

/* --- ABOUT SECTION --- */
.about-section {
    background-color: var(--bg-primary);
}

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

.about-visual {
    position: relative;
}

.about-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.about-img-box img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: brightness(0.9);
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-dark);
    max-width: 220px;
    z-index: 2;
}

.about-experience-badge h4 {
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.about-experience-badge p {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

.about-features {
    margin-bottom: 40px;
}

.about-feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.about-feature-item:last-child {
    margin-bottom: 0;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
}

.about-feature-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 4px;
}

.about-feature-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-visual {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .about-experience-badge {
        right: -10px;
        bottom: -20px;
        padding: 20px;
    }
    .about-experience-badge h4 {
        font-size: 32px;
    }
}

/* --- SERVICES SECTION --- */
.services-section {
    background-color: var(--bg-secondary);
}

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

.service-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(var(--accent-rgb), 0.3);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background-color: var(--accent);
    color: var(--bg-dark);
    transform: scale(1.1) rotate(5deg);
}

.service-icon-box svg {
    width: 28px;
    height: 28px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features-list {
    margin-bottom: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.service-feature svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--bg-dark);
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-smooth);
}

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

.service-card:hover .service-link svg {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 30px;
    }
}

/* --- TRUST / TESTIMONIALS SECTION --- */
.trust-section {
    background-color: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, var(--border-color) 50%, rgba(0,0,0,0) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

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

.stat-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 8px;
}

.stat-num span {
    color: var(--accent);
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Slider */
.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 0 40px;
    animation: fadeEffect 0.6s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--accent);
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--accent);
}

.testimonial-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--bg-dark);
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--bg-dark);
}

.author-company {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

/* Slider Controls */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--accent);
    width: 24px;
    border-radius: 4px;
}

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

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-text {
        font-size: 16px;
    }
    .testimonial-slide {
        padding: 0 10px;
    }
}

/* --- CONTACT & QUOTE SECTION --- */
.contact-section {
    background-color: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: stretch;
}

.quote-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.quote-card-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 8px;
}

.quote-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
    font-family: var(--font-family);
    color: var(--bg-dark);
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--bg-primary);
    box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.1);
}

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

/* Form Button Loading & Feedback */
.form-submit-btn {
    width: 100%;
}

.form-message {
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    display: none;
    animation: fadeEffect 0.4s ease-in-out;
}

.form-message.success {
    display: block;
    background-color: #e6f7ed;
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.form-message.error {
    display: block;
    background-color: #fde8e8;
    color: #c81e1e;
    border: 1px solid rgba(200, 30, 30, 0.2);
}

/* Spinner */
.spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(39, 39, 39, 0.25);
    border-top-color: var(--bg-dark);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn.loading .spinner {
    display: inline-block;
}

.btn.loading span {
    display: none;
}

/* Contact Info Panel */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 16px;
}

.contact-info-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 30px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.info-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon svg {
    width: 22px;
    height: 22px;
}

.info-card-details h5 {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.info-card-details p {
    font-size: 16px;
    font-weight: 700;
    color: var(--bg-dark);
}

.info-card-details a {
    color: inherit;
}

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

/* Map Frame wrapper */
.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 250px;
    box-shadow: var(--shadow-sm);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

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

@media (max-width: 576px) {
    .quote-card {
        padding: 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
}

/* --- FOOTER SECTION --- */
.footer-wrapper {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding-top: 80px;
}

.footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
}

.footer-brand-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-brand-desc {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.social-link:hover {
    background-color: var(--accent);
    color: var(--text-light);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-link-item:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-newsletter-desc {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form .form-control {
    background-color: var(--bg-dark-secondary);
    border-color: var(--border-dark);
    color: var(--text-light);
}

.newsletter-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: none;
}

.newsletter-form .btn {
    padding: 14px 20px;
}

.footer-bottom {
    padding: 30px 0;
    background-color: var(--bg-dark-secondary);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

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

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom-flex {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Footer Bottom Links & Signature */
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.designer-signature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.designer-signature a {
    display: flex;
    align-items: center;
}

.signature-logo {
    display: inline-block !important;
    height: 16px !important;
    max-height: 16px !important;
    width: auto !important;
    object-fit: contain !important;
    opacity: 0.85;
    vertical-align: middle;
    transition: var(--transition-smooth);
}

.signature-logo:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .footer-divider {
        display: none;
    }
}

/* Legal Pages (Gizlilik & Kullanım) Styling */
.legal-section {
    padding: 140px 0 80px 0;
    background-color: var(--bg-secondary);
}

.legal-card {
    background-color: var(--bg-primary);
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.legal-card h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: center;
}

.legal-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 50px;
}

.legal-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    margin: 40px 0 15px 0;
    border-bottom: 2px solid var(--bg-secondary);
    padding-bottom: 8px;
}

.legal-card h2:first-of-type {
    margin-top: 0;
}

.legal-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 0 10px 0;
}

.legal-card p {
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-card ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-card li {
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 100px 0 60px 0;
    }
    .legal-card {
        padding: 30px 20px;
    }
    .legal-card h1 {
        font-size: 24px;
    }
}


