/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.text-success {
    color: #28a745;
}

.text-danger {
    color: #dc3545;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Header */
.promo-banner {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-weight: 500;
    animation: pulse 3s infinite;
}

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand h2 {
    color: #ff1493;
    font-size: 28px;
    font-weight: 700;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff1493;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffeef8, #fff5fd);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.highlight {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h2 {
    font-size: 32px;
    color: #ff1493;
    margin-bottom: 20px;
    font-weight: 600;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.stars {
    color: #ffc107;
    font-size: 18px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.features-list i {
    color: #28a745;
    font-size: 20px;
}

.pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.price-current {
    font-size: 48px;
    font-weight: 700;
    color: #ff1493;
}

.price-original {
    font-size: 24px;
    text-decoration: line-through;
    color: #999;
}

.discount-badge {
    background: #ff4444;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.cta-buttons {
    margin-bottom: 20px;
}

.payment-info {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image {
    position: relative;
}

.product-showcase {
    position: relative;
    text-align: center;
}

.product-gallery {
    position: relative;
    display: inline-block;
}

.main-image {
    position: relative;
    margin-bottom: 20px;
}

.main-product-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
    transition: transform 0.3s ease;
}

.main-image:hover .main-product-image {
    transform: scale(1.05);
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.product-thumbnail:hover {
    opacity: 1;
    transform: scale(1.1);
}

.product-thumbnail.active {
    border-color: #ff1493;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}


/* Product Info Card */
.product-info-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 15px 35px rgba(255, 105, 180, 0.15);
    border: 2px solid #ffeef8;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.product-info-card .features-list {
    list-style: none;
    margin-bottom: 25px;
}

.product-info-card .features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.product-info-card .features-list i {
    color: #28a745;
    font-size: 18px;
    flex-shrink: 0;
}

.product-info-card .pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.product-info-card .price-current {
    font-size: 36px;
    font-weight: 700;
    color: #ff1493;
}

.product-info-card .price-original {
    font-size: 20px;
    text-decoration: line-through;
    color: #999;
}

.product-info-card .discount-badge {
    background: #ff4444;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 12px;
}

.product-info-card .cta-buttons {
    text-align: center;
}

.product-info-card .btn {
    width: 100%;
    margin-bottom: 15px;
}

.product-info-card .payment-info {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

/* Video Demo Section */
.video-demo {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.video-demo h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.video-demo p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.video-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.video-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
}

.video-benefit i {
    color: #ff1493;
    font-size: 20px;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeef8, #fff5fd);
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

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

.step {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeef8, #fff5fd);
}

.benefits h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

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

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Before After Section */
.before-after {
    padding: 80px 0;
    background: white;
}

.before-after h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.before-after > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.before-after-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.before-after-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.before-after-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.before-after-image {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

.before-after-image img {
    width: 100%;
    height: auto;
    display: block;
}

.transformation-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.before-label, .after-label {
    background: #ff1493;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.arrow {
    font-size: 24px;
    color: #ff1493;
    font-weight: bold;
}

.before-after-card p {
    color: #666;
    line-height: 1.6;
}

.transformation-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ff1493;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeef8, #fff5fd);
    text-align: center;
}

.social-proof h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.mentions-image {
    max-width: 600px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.2);
}

.mentions-image img {
    width: 100%;
    height: auto;
    display: block;
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.social-stat {
    text-align: center;
}

.social-stat i {
    font-size: 40px;
    color: #ff1493;
    margin-bottom: 15px;
    display: block;
}

.social-number {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.social-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Comparison Table */
.comparison {
    padding: 80px 0;
    background: white;
}

.comparison h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-table th {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 20px;
    font-weight: 600;
    text-align: center;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table i {
    font-size: 20px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeef8, #fff5fd);
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .stars {
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.testimonial-card cite {
    font-weight: 600;
    color: #ff1493;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-section .rating {
    justify-content: center;
    margin-bottom: 40px;
}

.cta-section .btn-primary {
    background: white;
    color: #ff1493;
    font-size: 20px;
    padding: 20px 40px;
}

.cta-section .btn-primary:hover {
    background: #f8f9fa;
}

.security-badge {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #ff1493;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ff69b4;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff69b4;
}

.footer-section ul li i {
    margin-right: 8px;
    color: #ff69b4;
}


.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Page Styles for Additional Pages */
.page-header {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.nav-menu .active {
    color: #ff1493;
    font-weight: 600;
}

/* Tracking Page Styles */
.tracking-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.tracking-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.tracking-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.tracking-form h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.tracking-form p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group label {
    font-weight: 600;
    color: #333;
}

.input-group input {
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #ff1493;
}

.tracking-tips {
    margin-top: 30px;
    padding: 20px;
    background: #ffeef8;
    border-radius: 10px;
}

.tracking-tips h3 {
    color: #ff1493;
    margin-bottom: 15px;
    font-size: 18px;
}

.tracking-tips ul {
    list-style: none;
    padding: 0;
}

.tracking-tips li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.tracking-tips li:before {
    content: "•";
    color: #ff1493;
    position: absolute;
    left: 0;
}

.tracking-result {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.order-info {
    margin-bottom: 40px;
}

.order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.detail-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.status-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.status-badge.confirmed {
    background: #d4edda;
    color: #155724;
}

.status-badge.shipping {
    background: #fff3cd;
    color: #856404;
}

.status-badge.delivered {
    background: #d1ecf1;
    color: #0c5460;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #eee;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 40px;
}

.timeline-icon {
    position: absolute;
    left: -40px;
    top: 0;
    width: 30px;
    height: 30px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.timeline-item.active .timeline-icon {
    background: #ff1493;
    color: white;
}

.timeline-content h4 {
    margin-bottom: 5px;
    color: #333;
}

.timeline-content p {
    color: #666;
    margin-bottom: 5px;
}

.timeline-date {
    font-size: 12px;
    color: #999;
}

.delivery-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.quick-faq {
    padding: 60px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* FAQ Page Styles */
.faq-search {
    padding: 40px 0;
    background: white;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #eee;
    border-radius: 25px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #ff1493;
}

.faq-categories {
    padding: 40px 0;
    background: #f8f9fa;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid #eee;
    padding: 15px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn:hover, .tab-btn.active {
    background: #ff1493;
    color: white;
    border-color: #ff1493;
}

.faq-content {
    padding: 60px 0;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-category h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

/* Contact Page Styles */
.contact-methods {
    padding: 60px 0;
    background: #f8f9fa;
}

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

.method-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-10px);
}

.method-icon {
    font-size: 48px;
    color: #ff1493;
    margin-bottom: 20px;
}

.method-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.method-card p {
    color: #666;
    margin-bottom: 25px;
}

.method-info {
    font-size: 14px;
    color: #999;
    margin-top: 15px;
    display: block;
}

.contact-form-section {
    padding: 80px 0;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff1493;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #ff1493;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    margin-bottom: 8px;
    color: #666;
}

.quick-links {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.quick-link {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: #ff1493;
}

.quick-link i {
    font-size: 24px;
    color: #ff1493;
}

/* Delivery/Returns Page Styles */
.delivery-section, .return-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

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

.card-icon {
    font-size: 48px;
    color: #ff1493;
    margin-bottom: 20px;
    text-align: center;
}

.guarantee-badge {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.guarantee-badge i {
    font-size: 60px;
    margin-bottom: 20px;
}

.policy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.process-steps {
    margin-top: 30px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #ff1493;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 8px;
    color: #333;
}

.policy-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.policy-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.policy-card h4 {
    color: #ff1493;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.return-reasons {
    padding: 60px 0;
    background: #f8f9fa;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reason-card i {
    font-size: 48px;
    color: #ff1493;
    margin-bottom: 20px;
}

.reason-action {
    display: inline-block;
    background: #ff1493;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
}

.delivery-faq {
    padding: 60px 0;
}

.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: white;
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #ff1493;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    padding: 10px;
    border: none;
    background: none;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: #ff1493;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 9999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        font-size: 18px;
        font-weight: 500;
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: #ff1493;
    }
    
    .nav-menu .btn {
        margin-top: 20px;
        padding: 15px 25px;
        text-align: center;
        border-radius: 25px;
    }
    
    /* Mobile menu overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: -280px;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: -1;
    }
    
    /* Close button for mobile menu */
    .nav-menu::after {
        content: '×';
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 30px;
        color: #999;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #f8f9fa;
        transition: all 0.3s ease;
    }
    
    .nav-menu::after:hover {
        background: #ff1493;
        color: white;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text h2 {
        font-size: 24px;
    }
    
    .price-current {
        font-size: 36px;
    }
    
    
    .product-info-card {
        margin-top: 20px;
        padding: 25px 20px;
        max-width: 100%;
    }
    
    .product-info-card .price-current {
        font-size: 32px;
    }
    
    .product-info-card .features-list li {
        font-size: 15px;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .video-container {
        margin: 0 auto 30px;
    }
    
    .video-benefits {
        gap: 20px;
    }
    
    .before-after-grid {
        grid-template-columns: 1fr;
    }
    
    .transformation-stats {
        gap: 40px;
    }
    
    .social-stats {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text h2 {
        font-size: 20px;
    }
    
    .price-current {
        font-size: 32px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .step {
        padding: 25px 15px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    /* Additional mobile improvements for new pages */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .policy-content {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        order: -1;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .category-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .nav-menu {
        width: 100vw !important;
        right: -100vw !important;
    }
    
    .nav-menu.active {
        right: 0 !important;
    }
}
