/* Policy Pages Styles */

.policy-main {
    min-height: 100vh;
    padding-top: 80px;
}

/* Hero Section */
.policy-hero {
    background: linear-gradient(135deg, #03c6fb 0%, #0099cc 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-highlight i {
    font-size: 1.2rem;
}

/* Policy Section */
.policy-section {
    padding: 4rem 0;
}

.policy-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
    text-align: center;
}

.policy-block {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #03c6fb;
}

.policy-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.policy-block h3 i {
    color: #03c6fb;
}

.policy-block p {
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 1rem;
}

.policy-block ul {
    list-style: none;
    padding: 0;
}

.policy-block li {
    padding: 0.5rem 0;
    color: #34495e;
    position: relative;
    padding-left: 1.5rem;
}

.policy-block li::before {
    content: '✓';
    color: #03c6fb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Sidebar */
.policy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card, .steps-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.contact-card h3, .steps-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #03c6fb;
    color: white;
    transform: translateY(-2px);
}

.contact-method i {
    font-size: 1.1rem;
    width: 20px;
}

/* Steps */
.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.step-number {
    background: #03c6fb;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step p {
    margin: 0;
    color: #34495e;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #34495e;
    line-height: 1.6;
    margin: 0;
}

/* Shipping Options */
.shipping-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.shipping-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.shipping-card.featured {
    border-color: #03c6fb;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(3, 198, 251, 0.2);
}

.shipping-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.shipping-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.shipping-header i {
    font-size: 2rem;
    color: #03c6fb;
}

.shipping-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.shipping-details .price {
    font-size: 2rem;
    font-weight: 700;
    color: #03c6fb;
    margin: 0 0 0.5rem 0;
}

.shipping-details .time {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 1rem 0;
}

.shipping-details .description {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Free Shipping Banner */
.free-shipping-banner {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    margin-top: 3rem;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.banner-content i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.banner-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.banner-content p {
    margin: 0;
    opacity: 0.9;
}

/* International Section */
.international-section {
    background: #2c3e50;
    color: white;
    padding: 4rem 0;
}

.international-section .section-title {
    color: white;
}

.international-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.international-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.international-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #03c6fb;
}

.international-info p {
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary {
    background: #03c6fb;
    color: white;
    box-shadow: 0 4px 16px rgba(3, 198, 251, 0.4);
}

.btn-primary:hover {
    background: #0099cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(3, 198, 251, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .shipping-card.featured {
        transform: none;
    }

    .shipping-options {
        grid-template-columns: 1fr;
    }

    .international-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}