/* Delivery & Payment Page - Modern & Beautiful Styles */
:root {
    --primary-color: #C0353C;
    --primary-dark: #D51920;
    --secondary-color: #FFCF26;
    --text-color: #333;
    --light-text-color: #666;
    --border-color: #e0e0e0;
    --background-color: #f8f9fa;
    --white-color: #fff;
    --shadow-light: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-medium: 0 5px 25px rgba(0,0,0,0.12);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --border-radius-small: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #F5C842 100%);
    --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Hero Section */
.delivery-hero {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 0 100px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.delivery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(10px) translateX(-10px); }
}

.delivery-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.delivery-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.delivery-hero .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.5;
}

.delivery-hero .hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.12);
    padding: 1.5rem 1.5rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
    text-align: center;
    min-height: 100px;
    flex-direction: column;
}

.hero-feature:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-feature i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    margin-bottom: 0.5rem;
}

.hero-feature span {
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.3;
}

/* Main Content Section */
.delivery-content {
    padding: 100px 0;
    background: white;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .delivery-grid {
        max-width: 1000px;
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .delivery-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        gap: 2rem;
    }
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: rgba(192, 53, 60, 0.3);
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    align-self: flex-start;
}

.feature-card-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-card-icon::after {
    opacity: 1;
    inset: -10px;
}

.feature-card-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.feature-card p {
    color: var(--light-text-color);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
    flex-grow: 1;
}

.feature-card .feature-list {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.feature-card .feature-list li {
    padding: 0.75rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.feature-card .feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Shipping Zones */
.shipping-zones {
    padding: 100px 0;
    background: white;
}

.shipping-zones h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .zones-grid {
        max-width: 1000px;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .zones-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
}

.zone-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.zone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.zone-card:hover::before {
    opacity: 0.05;
}

.zone-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.zone-card * {
    position: relative;
    z-index: 2;
}

.zone-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.zone-card h4 i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.zone-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.zone-detail {
    text-align: center;
    padding: 1.2rem 1rem;
    background: var(--background-color);
    border-radius: var(--border-radius-small);
    border: 1px solid var(--border-color);
}

.zone-detail-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.zone-detail-label {
    font-size: 0.85rem;
    color: var(--light-text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.zone-countries {
    font-size: 0.95rem;
    color: var(--light-text-color);
    line-height: 1.6;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* FAQ Section */
.faq-section {
    background: var(--background-color);
    padding: 100px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    padding: 2rem 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--background-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--background-color);
}

.faq-item.active .faq-answer {
    padding: 2rem 2.5rem;
    max-height: 400px;
}

.faq-answer p {
    color: var(--light-text-color);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Support Section */
.support-section {
    background: white;
    padding: 100px 0;
}

.support-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 4rem;
}

.support-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.support-section p {
    font-size: 1.2rem;
    color: var(--light-text-color);
    margin-bottom: 4rem;
    line-height: 1.6;
}

.support-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 992px) {
    .support-methods {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 2rem;
    }
}

.support-method {
    padding: 2.5rem 2.5rem;
    background: var(--background-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.support-method:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.support-method i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.support-method h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.support-method p {
    font-size: 1rem;
    color: var(--light-text-color);
    margin: 0;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Call to Action */
.cta-section {
    background: var(--gradient-primary);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>') repeat;
    animation: float 20s ease-in-out infinite;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: #F5C842;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    color: var(--text-color);
    text-decoration: none;
}

.cta-button i {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .delivery-hero h1 {
        font-size: 3rem;
    }
    
    .delivery-hero .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-feature {
        min-height: 80px;
        padding: 1.2rem 1rem;
    }
    
    .delivery-grid,
    .payment-grid,
    .zones-grid {
        gap: 2rem;
    }
    
    .zone-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .support-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card,
    .payment-method,
    .zone-card {
        padding: 2rem 1.5rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    h2 {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 768px) {
    .delivery-hero {
        padding: 80px 0 60px;
        min-height: 60vh;
    }
    
    .delivery-hero h1 {
        font-size: 2.5rem;
    }
    
    .delivery-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .delivery-hero .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .hero-feature {
        flex-direction: row;
        gap: 1rem;
        text-align: left;
        min-height: auto;
        padding: 1rem 1.5rem;
    }
    
    .hero-feature i {
        margin-bottom: 0;
        font-size: 1.5rem;
    }
    
    .delivery-grid,
    .payment-grid,
    .zones-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card,
    .payment-method,
    .zone-card,
    .support-method {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .feature-card {
        min-height: 350px;
    }
    
    .payment-method {
        min-height: 200px;
    }
    
    .zone-card {
        min-height: 250px;
    }
    
    .support-method {
        min-height: 200px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .cta-section h2 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 480px) {
    .delivery-hero {
        padding: 60px 0 40px;
    }
    
    .delivery-hero h1 {
        font-size: 2rem;
    }
    
    .delivery-hero .hero-subtitle {
        font-size: 1rem;
    }
      .feature-card,
    .payment-method,
    .zone-card,
    .support-method {
        padding: 1.5rem;
    }
    
    .feature-card {
        min-height: 300px;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.2rem 1.5rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    h2 {
        font-size: 1.8rem !important;
    }
    
    .cta-section h2 {
        font-size: 2rem !important;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
}





/* Copyright Section Styles - Footer-like appearance with enhanced spacing */
.copyright-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    text-align: center;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.copyright-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(192, 53, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 207, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(192, 53, 60, 0.05) 0%, transparent 50%);
    animation: copyrightGlow 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes copyrightGlow {
    0% { opacity: 0.6; }
    100% { opacity: 0.9; }
}

.copyright-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(192, 53, 60, 0.5) 50%, transparent 100%);
    box-shadow: 0 0 8px rgba(192, 53, 60, 0.3);
}

.copyright-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    backdrop-filter: blur(5px);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.copyright-section:hover .copyright-text {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

/* Responsive Design for Copyright */
@media (max-width: 768px) {
    .copyright-section {
        padding: 20px 0;
        font-size: 13px;
    }
    
    .copyright-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .copyright-section {
        padding: 15px 0;
        font-size: 12px;
    }
}
