﻿:root {
            --primary: #42C4C1;
            --accent: #B89B72;
            --blue: #1E90FF;
            --yellow: #FFD700;
            --bg-dark: #0a0e0d;
            --bg-dark-lighter: #1a1f1d;
            --white: #FFFFFF;
            --text: #ffffff;
            --text-soft: rgba(255, 255, 255, 0.7);
            --green: #7BBF6A;
            --orange: #F39221;
            --border: rgba(66, 196, 193, 0.2);
            --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            --shadow-hover: 0 35px 60px -15px rgba(66, 196, 193, 0.3);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
.delivery-hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0a0e0d 0%, #141a18 50%, #1a1f1d 100%);
            padding: clamp(80px, 12vw, 120px) 0 clamp(60px, 10vw, 100px);
        }
.delivery-hero::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -20%;
            width: 140%;
            height: 140%;
            background: 
                radial-gradient(circle at 30% 20%, rgba(66, 196, 193, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(243, 146, 33, 0.12) 0%, transparent 50%);
            animation: heroGradientMove 20s ease-in-out infinite;
            pointer-events: none;
        }
.delivery-hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }
.delivery-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(66, 196, 193, 0.2) 0%, rgba(243, 146, 33, 0.15) 100%);
            border: 2px solid var(--primary);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 800;
            font-size: clamp(0.75rem, 1.5vw, 0.9rem);
            margin-bottom: 30px;
            text-transform: uppercase;
            box-shadow: 0 10px 30px rgba(66, 196, 193, 0.4);
            animation: badgePulse 3s ease-in-out infinite;
        }
@keyframes badgePulse {
            0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(66, 196, 193, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(243, 146, 33, 0.5); }
        }
.delivery-hero h1{
            font-family:'Manrope',sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight:800;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleGradientShift 6s ease infinite;
            background-size: 200% 200%;
        }
.delivery-hero-description {
            font-size: clamp(1.1rem, 2.2vw, 1.4rem);
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            max-width: 900px;
            margin: 0 auto 50px;
        }
.delivery-hero-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }
.stat-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 30px 25px;
            text-align: center;
            transition: var(--transition);
        }
.stat-card:hover {
            background: rgba(66, 196, 193, 0.08);
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(66, 196, 193, 0.3);
        }
.stat-icon {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            margin-bottom: 15px;
            display: block;
        }
.stat-number {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }
.stat-label {
            font-size: clamp(0.85rem, 1.5vw, 0.95rem);
            color: rgba(255, 255, 255, 0.7);
        }
.delivery-methods-section {
            padding: clamp(60px, 10vw, 100px) 0;
            background: linear-gradient(135deg, #0a0e0d 0%, #1a1f1d 100%);
            position: relative;
            overflow: hidden;
        }
.delivery-methods-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 20%, rgba(66, 196, 193, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 85% 80%, rgba(243, 146, 33, 0.03) 0%, transparent 40%);
            pointer-events: none;
        }
.section-header {
            text-align: center;
            margin-bottom: clamp(50px, 8vw, 70px);
            position: relative;
            z-index: 2;
        }
.section-title {
            font-family:'Manrope',sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: white;
            margin-bottom: 20px;
            line-height: 1.1;
        }
.section-title span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.section-subtitle {
            font-size: clamp(1rem, 1.8vw, 1.2rem);
            color: rgba(255, 255, 255, 0.7);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }
.methods-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: clamp(25px, 4vw, 35px);
            position: relative;
            z-index: 2;
        }
.method-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: 25px;
            padding: clamp(35px, 5vw, 45px);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
.method-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(66, 196, 193, 0.1) 50%, transparent 70%);
            opacity: 0;
            transition: 0.8s;
            pointer-events: none;
        }
.method-card:hover::before {
            opacity: 1;
            transform: rotate(45deg);
        }
.method-card:hover {
            background: rgba(66, 196, 193, 0.08);
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(66, 196, 193, 0.3);
        }
.method-icon {
            font-size: clamp(3.5rem, 6vw, 5rem);
            margin-bottom: 25px;
            display: block;
            animation: methodIconFloat 3s ease-in-out infinite;
        }
@keyframes methodIconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
.method-card:hover .method-icon {
            animation: none;
            transform: scale(1.1);
        }
.method-title {
            font-size: clamp(1.3rem, 2.2vw, 1.6rem);
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
.method-description {
            font-size: clamp(0.95rem, 1.6vw, 1.05rem);
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 20px;
        }
.method-features {
            list-style: none;
            padding: 0;
        }
.method-features li {
            padding: 10px 0;
            color: rgba(255, 255, 255, 0.6);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: clamp(0.85rem, 1.5vw, 0.95rem);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
.method-features li:last-child {
            border-bottom: none;
        }
.method-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
            font-size: 1.3rem;
            min-width: 20px;
        }
.payment-process-section {
            padding: clamp(60px, 10vw, 100px) 0;
            background: radial-gradient(circle at 50% 50%, #1a1f1d 0%, #0a0e0d 100%);
            position: relative;
        }
.payment-process-section::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: 
                linear-gradient(rgba(66, 196, 193, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(66, 196, 193, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.5;
            pointer-events: none;
        }
.payment-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 6vw, 60px);
            align-items: start;
            position: relative;
            z-index: 2;
        }
@media (max-width: 1024px) {
            .payment-grid {
                grid-template-columns: 1fr;
            }
        }
.payment-steps {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            border-radius: 25px;
            padding: clamp(35px, 5vw, 45px);
        }
.step-item {
            display: flex;
            gap: 25px;
            padding: 30px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }
.step-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
.step-item:hover {
            transform: translateX(10px);
        }
.step-number {
            min-width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: black;
            font-size: 1.8rem;
            font-weight: 800;
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(66, 196, 193, 0.4);
        }
.step-content h3{
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            font-weight:800;
            color: white;
            margin-bottom: 12px;
        }
.step-content p {
            font-size: clamp(0.9rem, 1.6vw, 1rem);
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }
.payment-options {
            background: linear-gradient(135deg, rgba(66, 196, 193, 0.1) 0%, rgba(243, 146, 33, 0.05) 100%);
            border: 2px solid rgba(66, 196, 193, 0.3);
            border-radius: 25px;
            padding: clamp(35px, 5vw, 45px);
            position: sticky;
            top: 100px;
        }
.option-card {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 20px;
            transition: var(--transition);
        }
.option-card:last-child {
            margin-bottom: 0;
        }
.option-card:hover {
            background: rgba(66, 196, 193, 0.08);
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(66, 196, 193, 0.2);
        }
.option-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }
.option-title {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            font-weight: 700;
            color: white;
            margin-bottom: 12px;
        }
.option-description {
            font-size: clamp(0.9rem, 1.6vw, 1rem);
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }
.documents-section {
            padding: clamp(60px, 10vw, 100px) 0;
            background: linear-gradient(135deg, #0a0e0d 0%, #141a18 100%);
            position: relative;
        }
.documents-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: clamp(25px, 4vw, 30px);
            position: relative;
            z-index: 2;
        }
.document-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: clamp(30px, 4vw, 40px);
            transition: var(--transition);
            text-align: center;
        }
.document-card:hover {
            background: rgba(66, 196, 193, 0.08);
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(66, 196, 193, 0.3);
        }
.document-icon {
            width: 80px;
            height: 80px;
            background: rgba(66, 196, 193, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            transition: var(--transition);
        }
.document-card:hover .document-icon {
            background: var(--primary);
            transform: scale(1.1) rotate(5deg);
        }
.document-title {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }
.document-description {
            font-size: clamp(0.9rem, 1.6vw, 1rem);
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }
.zoo-section {
            padding: clamp(60px, 10vw, 100px) 0;
            background: radial-gradient(circle at 50% 50%, #1a1f1d 0%, #0a0e0d 100%);
            position: relative;
        }
.zoo-content {
            background: linear-gradient(135deg, rgba(66, 196, 193, 0.1) 0%, rgba(243, 146, 33, 0.05) 100%);
            border: 2px solid var(--primary);
            border-radius: 30px;
            padding: clamp(45px, 7vw, 60px);
            text-align: center;
            position: relative;
            z-index: 2;
        }
.zoo-icon {
            font-size: clamp(4rem, 8vw, 6rem);
            margin-bottom: 30px;
            display: block;
        }
.zoo-title {
            font-family:'Manrope',sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: white;
            margin-bottom: 25px;
        }
.zoo-description {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            max-width: 900px;
            margin: 0 auto 40px;
        }
.zoo-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
.zoo-feature {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid var(--border);
            border-radius: 15px;
            padding: 25px;
            transition: var(--transition);
        }
.zoo-feature:hover {
            background: rgba(66, 196, 193, 0.08);
            border-color: var(--primary);
            transform: translateY(-5px);
        }
.zoo-feature-icon {
            font-size: 2rem;
            margin-bottom: 15px;
        }
.zoo-feature-text {
            font-size: clamp(0.95rem, 1.7vw, 1.05rem);
            color: rgba(255, 255, 255, 0.8);
        }
.cta-section {
            padding: clamp(80px, 12vw, 120px) 0;
            background: linear-gradient(135deg, #0a0e0d 0%, #1a1f1d 50%, #0a0e0d 100%);
            position: relative;
            overflow: hidden;
        }
.cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 30% 50%, rgba(66, 196, 193, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 70% 50%, rgba(243, 146, 33, 0.12) 0%, transparent 40%);
            animation: finalCtaGlow 15s ease-in-out infinite;
            pointer-events: none;
        }
.cta-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
.cta-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            color: black;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 800;
            font-size: clamp(0.75rem, 1.5vw, 0.9rem);
            text-transform: uppercase;
            margin-bottom: 30px;
            letter-spacing: 1px;
        }
.cta-title {
            font-family:'Manrope',sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            color: white;
            line-height: 1.1;
            margin-bottom: 30px;
        }
.cta-title span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.cta-text {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 50px;
            line-height: 1.7;
        }
.cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
.btn-cta {
            padding: clamp(18px, 3vw, 22px) clamp(40px, 6vw, 50px);
            font-size: clamp(1rem, 1.8vw, 1.2rem);
            font-weight: 800;
            text-transform: uppercase;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }
.btn-cta-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            color: white;
        }
.btn-cta-primary:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 25px 60px rgba(66, 196, 193, 0.6);
        }
.btn-cta-secondary {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid var(--primary);
            color: white;
        }
.btn-cta-secondary:hover {
            background: rgba(66, 196, 193, 0.15);
            border-color: var(--orange);
            transform: translateY(-8px) scale(1.05);
        }
@media (max-width: 768px) {
            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            
            .btn-cta {
                width: 100%;
                justify-content: center;
            }
        }
.modal-box { 
            position: relative !important; 
            background: linear-gradient(135deg, #111 0%, #1a1f1d 100%); 
            border: 2px solid var(--primary); 
            border-radius: 25px; 
            width: 500px; 
            max-width: 95%; 
            max-height: 90vh; 
            display: flex; 
            flex-direction: column; 
            overflow: hidden; 
            animation: modalZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
            box-shadow: 0 30px 80px rgba(0,0,0,0.8); 
        }
@media (max-width: 480px) {
            .modal-box {
                width: 100%;
                max-width: 100%;
                height: 100vh;
                max-height: 100vh;
                border-radius: 0;
                border: none;
                border-top: 3px solid var(--primary);
            }
        }
.modal-close { 
            position: absolute !important; 
            top: 20px !important; 
            right: 20px !important; 
            width: 44px !important; 
            height: 44px !important; 
            background: rgba(0,0,0,0.7) !important; 
            border: 2px solid var(--primary) !important; 
            border-radius: 50% !important; 
            color: white !important; 
            font-size: 24px !important; 
            display: flex !important; 
            align-items: center !important; 
            justify-content: center !important; 
            cursor: pointer !important; 
            z-index: 100 !important; 
            transition: var(--transition) !important;
            line-height: 1 !important;
        }
.modal-close:hover {
            background: var(--primary) !important;
            color: #000 !important;
            transform: rotate(90deg);
            border-color: var(--orange) !important;
        }
.modal-title {
            font-family:'Manrope',sans-serif;
            font-size: clamp(1.6rem, 3vw, 2rem);
            color: white;
            margin-bottom: 15px;
            line-height: 1.2;
        }
.modal-title span {
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.modal-subtitle {
            font-size: clamp(0.85rem, 1.6vw, 0.95rem);
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
        }
.modal-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
.form-input-modal {
            width: 100%;
            padding: clamp(14px, 2.5vw, 16px) clamp(18px, 3vw, 20px);
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            color: white;
            font-size: clamp(0.95rem, 1.6vw, 1rem);
            outline: none;
            transition: 0.3s;
            -webkit-appearance: none;
            font-family: inherit;
        }
.form-input-modal:focus {
            border-color: var(--primary);
            background: rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 15px rgba(66, 196, 193, 0.3);
        }
.btn-modal-submit {
            width: 100%;
            padding: clamp(16px, 3vw, 18px);
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            border: none;
            border-radius: 12px;
            color: white;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: 0.3s;
            font-size: clamp(0.95rem, 1.7vw, 1rem);
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(66, 196, 193, 0.4);
            -webkit-appearance: none;
        }
.btn-modal-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(66, 196, 193, 0.6);
        }
@media (max-width: 480px) {
            .btn-modal-submit {
                padding: 14px;
                font-size: 0.9rem;
                border-radius: 10px;
            }
        }
.modal-note {
            font-size: clamp(0.7rem, 1.3vw, 0.75rem);
            color: rgba(255, 255, 255, 0.4);
            text-align: center;
            margin-top: 15px;
            line-height: 1.4;
        }
.scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--orange) 100%);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9000;
            box-shadow: 0 5px 20px rgba(66, 196, 193, 0.5);
            transition: 0.3s;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }
.scroll-to-top:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 10px 30px rgba(66, 196, 193, 0.7);
        }