/* =====================================================
   ExpressKurye - Banabikurye Tarzı Tasarım
   AcilKurye Düzeni ile
   ===================================================== */

:root {
    /* Ana Renkler - Banabikurye tarzı */
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #E6F0FF;
    --secondary: #00C48C;
    --accent: #FF6B35;
    
    /* Nötr tonlar */
    --dark: #0D1B2A;
    --dark-soft: #1B263B;
    --gray-900: #415A77;
    --gray-700: #778DA9;
    --gray-600: #8B9BAE;
    --gray-500: #A8B5C4;
    --gray-300: #E0E1DD;
    --gray-100: #F8FAFC;
    --white: #FFFFFF;
    
    /* Gölge & Radius */
    --shadow-sm: 0 2px 12px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 12px 40px rgba(15, 23, 42, 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Tipografi */
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--white);
    line-height: 1.55;
    overflow-x: hidden;
}

/* ==================== Mobil Sabit Alt Bar ==================== */
.mobile-fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.65rem 0.85rem;
    box-shadow: 0 -6px 20px rgba(15, 23, 42, 0.08);
    z-index: 1020;
}

.mobile-fixed-bar .btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    font-size: 0.78rem;
    padding: 0.55rem 0.35rem;
    border-radius: 12px;
    white-space: nowrap;
}

.mobile-fixed-bar .btn i {
    font-size: 1.1rem;
    line-height: 1;
}

@media (max-width: 991.98px) {
    body {
        padding-bottom: 84px;
    }
}

/* ==================== Announcement Bar ==================== */
.announcement-bar {
    background: linear-gradient(90deg, var(--primary) 0%, #0052CC 100%);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    text-align: center;
}

.announcement-bar strong {
    background: rgba(255,255,255,0.25);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

/* ==================== Navbar ==================== */
.navbar {
    background: var(--white) !important;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    padding: 0.6rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.4rem;
    color: var(--dark) !important;
}

.navbar-brand i {
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700) !important;
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover, .nav-link:focus {
    color: var(--primary) !important;
    background: var(--primary-light);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 999px;
    padding: 0.55rem 1.25rem;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-success {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-success:hover {
    background: #00a877;
    border-color: #00a877;
    transform: translateY(-1px);
}

/* ==================== Hero Section ==================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #F0F7FF 0%, #E8F4FD 50%, #F5F9FF 100%);
    padding: 3.5rem 0 4.5rem;
    overflow: hidden;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--dark);
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #00A3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: 2rem;
    max-width: 420px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2.5rem;
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(0, 102, 255, 0.12);
    border-bottom: 1px solid rgba(0, 102, 255, 0.12);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    line-height: 1.3;
}

.hero-cta {
    margin-top: 2rem;
}

.hero-cta .btn {
    border-radius: 999px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.hero-bg-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%23ffffff' d='M0,96L48,90C96,84,192,72,288,66C384,60,480,60,576,72C672,84,768,108,864,108C960,108,1056,84,1152,72C1248,60,1344,60,1392,60L1440,60L1440,150L0,150Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    pointer-events: none;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}

.hero-kurye-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 60vh;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 991px) {
    .hero-image-wrapper {
        margin-top: 2rem;
    }

    .hero-kurye-img {
        max-height: 50vh;
    }
}

@media (max-width: 576px) {
    .hero-kurye-img {
        max-height: 300px;
    }
}

/* ==================== Kurye Form Page ==================== */
.kurye-form-section {
    background: linear-gradient(135deg, #F0F7FF 0%, #E8F4FD 50%, #F5F9FF 100%);
    min-height: 70vh;
}

/* ==================== Order Form Card ==================== */
.order-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    border: 1px solid rgba(0, 102, 255, 0.06);
    position: relative;
}

.form-title {
    font-weight: 700;
    color: var(--dark);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.input-group-text {
    background: var(--primary-light);
    border-color: var(--gray-300);
    color: var(--primary);
}

.form-control, .form-select {
    border-radius: var(--radius-sm);
    border-color: var(--gray-300);
    padding: 0.65rem 1rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

/* ==================== Trust Section ==================== */
.trust-section {
    background: var(--white);
    padding: 3.5rem 0 !important;
}

.section-title {
    font-size: clamp(1.65rem, 4vw, 2.1rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}


.trust-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
    height: 100%;
    transition: var(--transition);
}

.trust-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: rgba(0, 102, 255, 0.15);
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.trust-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* ==================== Services Section ==================== */
.services-section {
    background: #F8FAFC;
    padding: 3.5rem 0 !important;
}

.section-subtitle {
    color: var(--gray-700);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.service-card {
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--primary);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
}

.badge-express {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-full);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: var(--primary);
}

.service-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* ==================== Delivery Options ==================== */
.delivery-options {
    background: linear-gradient(135deg, #F0F7FF 0%, #E8F4FD 50%, #F5F9FF 100%);
    padding: 3.5rem 0 !important;
}

.delivery-options-title {
    font-size: clamp(1.65rem, 4vw, 2.1rem);
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 2.5rem;
}

.delivery-card {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    position: relative;
}

.delivery-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.delivery-card-green {
    background: var(--white);
    border: 1px solid rgba(0, 102, 255, 0.12);
}

.delivery-card-yellow {
    background: var(--white);
    border: 1px solid rgba(0, 102, 255, 0.12);
}

.delivery-card-purple {
    background: var(--white);
    border: 1px solid rgba(0, 102, 255, 0.12);
}

.delivery-card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.delivery-price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.delivery-price-tag {
    background: var(--dark);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
}

.delivery-discount-tag {
    background: var(--secondary);
    color: #fff;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
}

.delivery-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.delivery-desc {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-bottom: 1.25rem;
}

.delivery-card .btn-delivery-cta {
    margin-top: auto;
}

.delivery-features span {
    display: flex;
    align-items: center;
}

.delivery-features i {
    color: var(--gray-600);
}

.delivery-icon-car {
    color: var(--secondary) !important;
}

.btn-delivery-cta {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #fff !important;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
}

.btn-delivery-cta:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* ==================== İhtiyaca Göre Teslimat ==================== */
.ihityaca-teslimat-section {
    background: var(--white);
}

.ihityaca-card {
    background: #F8FAFC;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    height: 100%;
    transition: var(--transition);
}

.ihityaca-card:hover {
    border-color: rgba(0, 102, 255, 0.2);
}

.ihityaca-card i {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.ihityaca-card h6 {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.ihityaca-card p {
    color: var(--gray-600);
}

/* ==================== Features Section ==================== */
.features-section {
    background: #F8FAFC;
    padding: 3.5rem 0 !important;
}

.feature-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

/* ==================== App Section ==================== */
.app-section {
    background: linear-gradient(135deg, #F0F7FF 0%, #E8F4FD 50%, #F5F9FF 100%);
    color: var(--dark);
    padding: 3.5rem 0 !important;
}

.app-section .section-title {
    color: var(--dark);
}

.app-section .lead {
    color: var(--gray-700);
}

.app-features li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.app-features li i {
    color: var(--secondary);
    margin-right: 0.75rem;
}

.app-download-btns {
    gap: 0.75rem;
}

.app-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    background: #1a1a1a;
    color: #fff !important;
    border: none;
    border-radius: 8px;
}

.app-download-btn:hover {
    background: #333 !important;
    color: #fff !important;
}

.app-download-btn i {
    font-size: 1.25rem;
}

@media (max-width: 767px) {
    .app-download-btns {
        flex-direction: column;
        gap: 0.5rem;
    }

    .app-download-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .app-download-btn {
        padding: 0.6rem 1.25rem;
    }
}

/* ==================== Web Panel Section ==================== */
.web-section {
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF4FA 100%);
    padding: 3.5rem 0 !important;
}

.web-section .section-title {
    font-size: clamp(1.9rem, 4vw, 2.5rem);
}

.web-section .lead {
    color: var(--gray-700);
}

.web-feature-list li {
    display: flex;
    align-items: center;
    font-size: 0.98rem;
    color: var(--gray-700);
    margin-bottom: 0.75rem;
}

.web-feature-list li:last-child {
    margin-bottom: 0;
}

.laptop-simulator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5rem 1rem;
}

.laptop-frame {
    position: relative;
    max-width: 680px;
    width: 100%;
    padding: 0;
    filter: drop-shadow(0 25px 50px rgba(0, 102, 255, 0.08));
}

/* Modern monitör çerçevesi */
.laptop-screen {
    background: linear-gradient(165deg, #2d2d2d 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 12px 12px 8px 8px;
    padding: 12px 14px 14px;
    border: 1px solid #000;
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 4px 0 rgba(0, 0, 0, 0.2),
        0 20px 45px rgba(0, 0, 0, 0.25);
}

.laptop-display {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e6ec;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.laptop-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 16px 18px 18px;
    background: #fff;
}

.laptop-content-hero {
    padding: 0;
}

.laptop-content .laptop-kurye-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.laptop-toolbar {
    padding: 10px 16px;
    border-bottom: 1px solid #e8ecf1;
    background: #fafbfc;
    font-size: 0.8rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.toolbar-title {
    font-weight: 600;
    color: var(--dark);
    margin-left: 10px;
}

.toolbar-user {
    font-weight: 500;
    color: var(--gray-600);
}


.laptop-filters .btn {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.laptop-filters .btn-light {
    background: #f0f3f7;
    border: none;
    color: var(--gray-700);
}

.laptop-filters .btn-light:hover {
    background: #e4e8ef;
}

.laptop-filters .btn.active {
    background: var(--primary);
    color: #fff;
    border: none;
}

.laptop-filters .btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.laptop-table {
    border-radius: 10px;
    border: 1px solid #e8ecf1;
    background: #fff;
    overflow: hidden;
    font-size: 0.82rem;
}

.laptop-table-header {
    padding: 10px 14px;
    background: #f8fafc;
    color: var(--gray-700);
    font-weight: 600;
}

.laptop-table-row {
    padding: 9px 14px;
    border-top: 1px solid #f0f3f7;
    color: var(--gray-700);
}

.status-col { min-width: 90px; }
.time-col { min-width: 50px; text-align: right; }

.status-onway { color: #e65100; font-weight: 600; }
.status-delivered { color: #2e7d32; font-weight: 600; }
.status-created { color: var(--gray-600); font-weight: 500; }

.laptop-base {
    position: relative;
    margin: 10px auto 0;
    width: 38%;
    height: 24px;
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.laptop-base-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 4px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
}

/* Mobilde laptop landscape oranını koru */
@media (max-width: 767px) {
    .laptop-simulator {
        padding: 1.5rem 0.5rem;
    }

    .laptop-frame {
        max-width: 100%;
    }

    .laptop-toolbar {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .laptop-content {
        padding: 10px 12px 12px;
    }

    .laptop-table {
        font-size: 0.75rem;
    }

    .laptop-table-header,
    .laptop-table-row {
        padding: 6px 10px;
    }

    .laptop-filters .btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.72rem;
    }
}

/* Phone Simulator - iPhone Style */
.phone-simulator {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    min-height: 480px;
    transform: scale(0.9);
    transform-origin: center;
}

/* Telefon çerçevesi - siyah dış hatlar */
.phone-frame {
    width: 265px;
    min-width: 265px;
    background: linear-gradient(160deg, #2d2d2d 0%, #1c1c1e 30%, #121214 70%, #0a0a0c 100%);
    border-radius: 42px;
    padding: 6px;
    position: relative;
    border: 2px solid #1a1a1c;
    box-shadow: 
        0 0 0 1px #0d0d0f,
        0 4px 6px rgba(0,0,0,0.2),
        0 20px 40px rgba(0,0,0,0.4);
}

/* Mobilde telefon önce görünsün */
@media (max-width: 991px) {
    .app-section .row {
        flex-direction: column-reverse;
    }
}

/* Volume buttons - left side */
.phone-volume {
    position: absolute;
    left: -3px;
    width: 3px;
    height: 50px;
    background: linear-gradient(180deg, #3a3a3c 0%, #2a2a2c 100%);
    border-radius: 2px 0 0 2px;
}

.phone-volume-top {
    top: 90px;
}

.phone-volume-bottom {
    top: 145px;
}

/* Power button - right side */
.phone-power {
    position: absolute;
    right: -3px;
    top: 115px;
    width: 3px;
    height: 75px;
    background: linear-gradient(180deg, #3a3a3c 0%, #2a2a2c 100%);
    border-radius: 0 2px 2px 0;
}

/* Notch - Dynamic Island benzeri */
.phone-notch {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background: #000;
    border-radius: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notch-camera {
    width: 6px;
    height: 6px;
    background: #1a2a3a;
    border-radius: 50%;
}

/* Screen */
.phone-screen {
    background: #f5f5f7;
    border-radius: 36px;
    height: 520px;
    overflow: hidden;
    position: relative;
    border: none;
    display: flex;
    flex-direction: column;
}

/* Status bar */
.phone-statusbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px 8px;
    font-size: 0.72rem;
    font-weight: 600;
}

.status-time { color: #1c1c1e; }

.status-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-icons i {
    font-size: 0.65rem;
    color: #1c1c1e;
}

/* App screen - açık renkli harita */
.app-screen {
    background: #f0f2f5;
}

.app-map {
    flex: 1;
    position: relative;
    background: #e8eaed;
}

/* Harita - sokaklar (açık gri) */
.map-streets {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, #c8ccd1 1px, transparent 1px),
        linear-gradient(#c8ccd1 1px, transparent 1px);
    background-size: 24px 24px;
    background-color: #e8eaed;
}

.map-streets::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 48%, #8a9aaa 48%, #8a9aaa 52%, transparent 52%),
        linear-gradient(0deg, transparent 45%, #8a9aaa 45%, #8a9aaa 49%, transparent 49%);
    background-size: 120px 100px;
    opacity: 0.6;
}

.map-back-btn {
    position: absolute;
    top: 48px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.map-bell {
    position: absolute;
    top: 48px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.badge-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    background: #e53935;
    border-radius: 50%;
}

.map-banner {
    position: absolute;
    top: 92px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.7rem;
    color: #5f6368;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.map-pin {
    position: absolute;
    width: 26px;
    height: 32px;
    background: #3d3d3d;
    color: #fff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.map-pin.pin-1 { top: 35%; left: 42%; }
.map-pin.pin-2 { top: 48%; left: 52%; }

.app-delivery-card {
    position: absolute;
    bottom: 75px;
    left: 12px;
    right: 12px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.delivery-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    padding: 5px 0;
    color: #3c4043;
}

.delivery-row i {
    color: var(--primary);
    font-size: 1rem;
}

.delivery-status {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.85rem;
    color: #1e8e3e;
    font-weight: 600;
}

.delivery-status i {
    margin-right: 6px;
}

.app-fab {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 26px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0,102,255,0.35);
}

/* Eski lockscreen - silindi, notification stili korundu */
.lockscreen-notification {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.95);
    color: #1c1c1e;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.lockscreen-notification.greeting {
    padding: 10px 14px;
    margin-right: 20px;
    align-self: flex-start;
}

.profile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.notification-icon {
    color: #34c759;
    font-size: 1.25rem;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .phone-simulator {
        transform: scale(0.78);
    }
    
    .phone-frame {
        width: 260px;
    }
    
    .phone-screen {
        height: 460px;
    }
}

/* ==================== Cities Section ==================== */
.cities-section {
    background: var(--white);
    padding: 3.5rem 0 !important;
}

.city-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: #F8FAFC;
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
}

.city-card:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: rgba(0, 102, 255, 0.2);
}

.city-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.city-card span {
    font-weight: 600;
}

/* Şehir detay sayfası - özellikleri daha düzenli göster */
.area-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.area-feature-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0.5rem 0.65rem;
    border: 1px solid rgba(0, 102, 255, 0.08);
    border-radius: 12px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(0, 102, 255, 0.05) 100%);
    color: var(--gray-700);
    font-size: 0.92rem;
    line-height: 1.55;
}

.area-feature-item i {
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Açıklama metni - alt alta okunur liste */
.area-description-list {
    margin: 0 0 0.75rem 0;
    padding: 0;
    list-style: none;
    color: var(--gray-700);
}

.area-description-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.25rem 0;
    line-height: 1.6;
}

.area-description-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.2);
    margin-top: 0.55rem;
    flex-shrink: 0;
}

/* Hizmet Sözleşmesi bloğu (Kuryesi) */
.service-agreement {
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
}

.service-agreement-sm {
    border-radius: 10px;
}

.agreement-header {
    padding: 0.45rem 0.75rem;
}

.agreement-toggle {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.agreement-toggle.active {
    color: var(--primary);
}

.agreement-content {
    display: none;
    padding: 0.5rem 0.75rem 0.75rem;
    border-top: 1px solid #E2E8F0;
    max-height: 180px;
    overflow-y: auto;
    font-size: 0.8rem;
}

.agreement-content.show {
    animation: fadeIn 0.25s ease;
}

.agreement-text p {
    margin-bottom: 0.35rem;
}

/* ==================== Blog Section ==================== */
.blog-section {
    background: #F8FAFC;
    padding: 3.5rem 0 !important;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.blog-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #E8F4FD 100%);
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-detail-card .blog-detail-hero {
    border-radius: 0;
}

.blog-detail-card .blog-detail-hero {
    /* Kapak görseli: sayfayı taşırmasın, tutarlı oran */
    /* aspect-ratio bazı ortamlarda beklenmedik davranabiliyor;
       bunun yerine kontrollü bir yükseklik ile her zaman alanı kaplat */
    height: clamp(240px, 28vw, 420px);
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light) 0%, #E8F4FD 100%);
}

.blog-detail-hero img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 767.98px) {
    .blog-detail-card .blog-detail-hero {
        height: 220px;
    }
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.blog-content h5 {
    font-weight: 700;
    margin: 0.5rem 0 0.75rem;
    line-height: 1.4;
}

.blog-post-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
}

.blog-post-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.blog-content p {
    color: var(--gray-700);
    font-size: 0.95rem;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.read-more:hover {
    color: var(--primary-dark);
}

/* ==================== FAQ Section ==================== */
.faq-section {
    background: var(--white);
    padding: 3.5rem 0 !important;
}

.accordion-button {
    font-weight: 600;
    color: var(--dark);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
}

.accordion-item {
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 0.5rem;
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

/* ==================== Müşteri Yorumları ==================== */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: #F8FAFC;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    height: 100%;
    border: 1px solid #E2E8F0;
    transition: all 0.25s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 102, 255, 0.2);
}

.testimonial-text {
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.testimonial-author strong {
    color: var(--primary);
}

/* Müşteri yorumları — carousel (slayt başına 3 kart, Kuryemart ile aynı davranış) */
.testimonials-carousel {
    position: relative;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

@media (min-width: 768px) {
    .testimonials-carousel {
        padding-left: 2.75rem;
        padding-right: 2.75rem;
    }
}

.testimonials-carousel--single {
    padding-left: 0;
    padding-right: 0;
}

.testimonials-carousel--mobile.testimonials-carousel--single {
    padding-left: 0;
    padding-right: 0;
}

.testimonials-carousel-control {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 1;
    background-color: var(--primary);
}

.testimonials-carousel-control:hover {
    opacity: 0.92;
}

.testimonials-carousel .carousel-control-prev {
    left: 0;
}

.testimonials-carousel .carousel-control-next {
    right: 0;
}

.testimonials-carousel .carousel-control-prev-icon,
.testimonials-carousel .carousel-control-next-icon {
    width: 1.25rem;
    height: 1.25rem;
    filter: brightness(0) invert(1);
}

.testimonials-carousel-indicators {
    position: static;
    margin: 1.35rem 0 0;
    padding-bottom: 0.25rem;
    justify-content: center;
    gap: 0.35rem;
}

.testimonials-carousel-indicators [data-bs-target] {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    margin: 0;
    border: none;
    background-color: #adb5bd;
    opacity: 1;
}

.testimonials-carousel-indicators [data-bs-target].active {
    background-color: var(--primary);
}

/* Mobil müşteri yorumları: yuvarlak renkli arka plan yok; oklar görünür (BS ikonları beyaz SVG), kutunun yan boşluğunda */
@media (max-width: 767.98px) {
    .testimonials-carousel--mobile:not(.testimonials-carousel--single) {
        padding-left: 2.25rem;
        padding-right: 2.25rem;
    }

    .testimonials-carousel--mobile .testimonials-carousel-control {
        width: 2.25rem !important;
        max-width: none;
        height: 2.75rem;
        min-height: 2.75rem;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 0;
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        box-shadow: none;
        border: none;
        opacity: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonials-carousel--mobile .testimonials-carousel-control:hover {
        opacity: 0.85;
    }

    .testimonials-carousel--mobile .carousel-control-prev {
        left: 0;
    }

    .testimonials-carousel--mobile .carousel-control-next {
        right: 0;
    }

    /* Varsayılan BS okları #fff; şeffaf zeminde görünsün diye primary’e yakın ton */
    .testimonials-carousel--mobile .carousel-control-prev-icon,
    .testimonials-carousel--mobile .carousel-control-next-icon {
        width: 1.35rem;
        height: 1.35rem;
        filter: brightness(0) saturate(100%) invert(32%) sepia(99%) saturate(2873%) hue-rotate(209deg) brightness(99%) contrast(104%);
    }
}

/* ==================== CTA Section ==================== */
.cta-section {
    background: #F8FAFC;
    padding: 3.5rem 0 !important;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.cta-card h2 {
    font-weight: 800;
}

.cta-card .btn-light {
    color: var(--primary);
}

/* ==================== Footer ==================== */
.footer {
    background: var(--dark);
    color: var(--gray-300);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
}

.footer-brand:hover {
    color: var(--gray-300) !important;
}

.footer h6 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--white);
}

.footer hr {
    border-color: rgba(255,255,255,0.1);
}

.text-white-50 {
    color: rgba(255,255,255,0.5) !important;
}

.text-white-50:hover {
    color: rgba(255,255,255,0.8) !important;
}

/* Scroll animasyonları */
.animate-pending {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== Utilities ==================== */
.btn {
    border-radius: 999px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-lg {
    padding: 0.7rem 1.5rem;
}

.btn-outline-dark {
    border-radius: 999px;
}

.btn-outline-primary {
    border-radius: 999px;
}

/* ==================== Responsive ==================== */
@media (max-width: 991px) {
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .order-form-card {
        margin-top: 2rem;
    }
    
    .navbar .btn {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 2rem 0 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .delivery-card.highlight {
        transform: none;
    }
    
    .delivery-card.highlight:hover {
        transform: translateY(-4px);
    }
}

/* Hero mobil iyileştirmeleri */
@media (max-width: 767px) {
    .hero-section .min-vh-75 {
        min-height: auto;
    }

    .hero-section .row {
        --bs-gutter-x: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .hero-stats {
        padding: 1rem 0 1.25rem;
        gap: 0.6rem;
        flex-direction: column;
        border-top-width: 1px;
    }

    .stat-item {
        flex-direction: row;
        align-items: baseline;
        gap: 0.5rem;
    }

    .stat-item .stat-number {
        margin-right: 0.25rem;
    }

    .stat-number {
        font-size: 1.35rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-cta {
        margin-top: 1.25rem;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.25rem;
    }

    .hero-section .col-lg-6.mb-5 {
        margin-bottom: 1rem !important;
    }

    .hero-image-wrapper {
        margin-top: 0.75rem;
        padding: 0 0.5rem;
    }

    .hero-kurye-img {
        max-height: 220px;
    }

    .hero-bg-shape {
        height: 80px;
    }
}

/* ==================== İletişim Sayfası ==================== */
.page-iletisim .contact-hero {
    position: relative;
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 50%, #0047B3 100%);
}

.contact-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.contact-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-cards-section {
    padding: 0;
    margin-top: -2.5rem;
    position: relative;
    z-index: 3;
}

.contact-card {
    display: block;
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 24px rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.08);
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
}

.contact-card-static {
    cursor: default;
}

.contact-card:not(.contact-card-static):hover,
a.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.15);
    border-color: rgba(0, 102, 255, 0.2);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, #D6E8FF 100%);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-card-icon-phone {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #2E7D32;
}

.contact-card-icon-email {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    color: #E65100;
}

.contact-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.contact-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary);
    background: rgba(0, 196, 140, 0.12);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
}

.contact-form-section {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, #F8FAFC 0%, #fff 100%);
}

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 32px rgba(15, 23, 42, 0.08);
    padding: 2.5rem;
    border: 1px solid rgba(0, 102, 255, 0.06);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.form-control-iletisim,
.form-select.form-control-iletisim {
    border-radius: 10px;
    padding: 0.65rem 1rem;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
}

.form-control-iletisim:focus,
.form-select.form-control-iletisim:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.btn-iletisim {
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
}

.btn-iletisim:hover {
    transform: translateY(-1px);
}

.contact-quick-cta {
    background: linear-gradient(135deg, #fff 0%, #F8FAFC 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid #E2E8F0;
    position: sticky;
    top: 100px;
}

.contact-quick-cta h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.contact-cta-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.contact-cta-btn i {
    font-size: 1.4rem;
}

.contact-cta-phone {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.contact-cta-phone:hover {
    transform: translateX(4px);
    color: #fff;
}

.contact-cta-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-cta-whatsapp:hover {
    transform: translateX(4px);
    color: #fff;
}

.contact-hours {
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .contact-quick-cta {
        position: static;
    }
}
