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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
    text-align: right;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
}

h1 {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #111111, #d90429);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(90deg, #6f0000, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
}

/* Responsive Typography */
@media (min-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    h3 {
        font-size: 1.6rem;
    }
    
    h4 {
        font-size: 1.4rem;
    }
    
    p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.2rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 1.8rem;
    }
    
    h4 {
        font-size: 1.5rem;
    }
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0 2rem 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.05), rgba(217, 4, 41, 0.05));
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 19px;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.8;
}

.hero-image {
    max-width: 600px;
    margin: 0 auto 3rem;
    border-radius: 19px;
    display: block;
    animation: bounce 1.5s ease-in-out infinite;
}

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

/* Benefits Section */
.benefits-section {
    padding: 3rem 0 5rem 0;
    background: #f8f9fa;
}

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

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #111111, #d90429, #ffb347);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(217, 4, 41, 0.3));
}

/* Force Control Section */
.force-control-section {
    padding: 5rem 0;
    text-align: center;
}

.section-image {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    border-radius: 15px;
}

/* Durability Section */
.durability-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(111, 0, 0, 0.05), rgba(255, 179, 71, 0.05));
}

.durability-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #111111, #d90429) border-box;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Applications Section */
.applications-section {
    padding: 5rem 0;
}

.applications-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.application-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-right: 4px solid;
    border-image: linear-gradient(135deg, #111111, #d90429) 1;
    transition: all 0.3s ease;
}

.application-item:hover {
    transform: translateX(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.application-item p {
    margin: 0;
    font-weight: 500;
    color: #333;
}

/* Kit Section */
.kit-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.kit-items {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.kit-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.kit-item:hover {
    transform: translateX(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.kit-number {
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #111111, #d90429);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 1rem;
    min-width: 40px;
}

.kit-description {
    font-weight: 500;
    color: #333;
}

/* Specifications Section */
.specifications-section {
    padding: 5rem 0;
}

.specs-table {
    margin-top: 3rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.spec-row:hover {
    background: linear-gradient(90deg, rgba(111, 0, 0, 0.02), rgba(255, 179, 71, 0.02));
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    padding: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #111111, #d90429);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-left: 1px solid #eee;
}

.spec-value {
    padding: 1.5rem;
    color: #555;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.02), rgba(217, 4, 41, 0.02));
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #111111, #d90429);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card h4 {
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer-location {
    color: #666;
    font-size: 0.85em;
    margin: 0 0 10px 0;
    font-style: italic;
    opacity: 0.8;
}

.testimonial-card p {
    font-style: italic;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Guarantee Section - Clean Modern Design */
.guarantee-section {
    background: linear-gradient(135deg, #faf8f0, #f5f1e8, #faf8f0);
    padding: 60px 20px;
    text-align: center;
    border-top: 3px solid #d4af37;
    position: relative;
    overflow: hidden;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.guarantee-card {
    background: linear-gradient(135deg, #fff9e6, #fffbf0, #fff9e6);
    border: 2px solid #d4af37;
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 
        0 15px 35px rgba(212, 175, 55, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #b8860b, #ffd700, #ffed4e, #ffd700, #b8860b);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.guarantee-card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    pointer-events: none;
}

.guarantee-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #b8860b, #d4af37, #ffd700, #d4af37, #b8860b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
    filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.4));
}

.guarantee-card h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, #ffd700, #d4af37, transparent);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.guarantee-card p {
    text-align: right;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    color: #2c2c2c;
}

.guarantee-card strong {
    color: #b8860b;
    font-weight: 600;
}

.warning-text {
    color: #dc3545 !important;
    font-weight: 600 !important;
    background: linear-gradient(135deg, #fff5f5, #ffe6e6);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #dc3545;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.15);
    margin-top: 25px;
}

.guarantee-content {
    text-align: right;
    line-height: 1.8;
}

.guarantee-content p {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.1rem;
}

.guarantee-content p:last-child {
    margin-bottom: 0;
}

.guarantee-content strong {
    color: #d4af37;
    font-weight: 700;
}

@media (min-width: 768px) {
    .guarantee-content p {
        font-size: 1.2rem;
    }
}

.guarantee-card h3 {
    background: linear-gradient(135deg, #111111, #ff4b4b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 800;
}



/* CTA Order Form */
.cta-order-form {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(111, 0, 0, 0.05), rgba(255, 179, 71, 0.05));
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-price {
    font-size: 1.9rem;
    font-weight: 700;
    text-align: center;
}

.cta-offers {
    display: grid;
    gap: 1rem;
    margin-bottom: 3rem;
}

.offer-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    margin: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.popular-offer {
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    background: linear-gradient(135deg, #d4af37, #ffd700, #ffed4e);
    color: #2c2c2c;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 15px;
    box-shadow: 0 3px 8px rgba(212, 175, 55, 0.3);
    z-index: 10;
    border: 1px solid #b8860b;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.delivery-pricing {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.delivery-text {
    font-size: 16px;
    color: #666;
    display: block;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-weight: normal;
}

.free-delivery {
    color: #28a745;
    font-weight: bold;
    background: linear-gradient(135deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #d4af37;
}

.offer-card.selected {
    border-color: #d4af37;
    background: linear-gradient(135deg, #fffbf0, #ffffff);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.offer-card label {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    width: 100%;
    margin: 0;
}

.offer-card input[type="radio"] {
    margin-left: 1rem;
    transform: scale(1.2);
    accent-color: #d90429;
}

.offer-title {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.cta-fields {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-fields input {
    padding: 1rem 1.5rem;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Tajawal', Arial, sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.cta-fields input:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px rgba(217, 4, 41, 0.3);
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #111111, #d90429) border-box;
}

.cta-fields input::placeholder {
    color: #999;
}

.form-container {
    background: white;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #ff0040, #000000, #ff0040);
    background-origin: border-box;
    background-clip: content-box, border-box;
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
}

.confirmation-note {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}

.confirmation-note p {
    margin: 0;
    font-size: 14px;
    color: #495057;
    line-height: 1.5;
}

#submitBtn {
    background: linear-gradient(135deg, #111111, #d90429);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Tajawal', Arial, sans-serif;
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.3);
    width: 100%;
}

#submitBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(217, 4, 41, 0.4);
    background: linear-gradient(135deg, #d90429, #111111);
}

#submitBtn:active {
    transform: translateY(-1px);
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

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

.faq-list {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: right;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    font-family: 'Tajawal', Arial, sans-serif;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #111111, #d90429);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #111111, #2c2c2c);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

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

.revealed {
    animation: fadeInUp 0.8s ease forwards;
}

section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

section.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Typography Enhancement */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-section {
        padding: 2rem 0 1rem 0;
    }
    
    .benefits-section {
        padding: 1.5rem 0 3rem 0;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    /* Mobile Image Responsive Fixes */
    .hero-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        margin: 0 auto 2.5rem;
        animation: bounce 5s ease-in-out infinite;
    }
    
    .section-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        margin: 0 auto 2.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .durability-features {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-table {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .spec-row {
        display: flex;
        flex-direction: column;
        border-bottom: none;
        border: 1px solid #eee;
        margin: 0;
    }
    
    .spec-row:nth-child(odd) {
        border-right: none;
    }
    
    .spec-row:nth-child(even) {
        border-left: none;
    }
    
    .spec-label {
        border-left: none;
        border-bottom: 1px solid #eee;
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .spec-value {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .cta-offers {
        grid-template-columns: 1fr;
    }
    
    .offer-card label {
        padding: 1.2rem;
    }
    
    .kit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .kit-number {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 769px) {
    .cta-offers {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta-fields {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-fields input:last-child {
        grid-column: 1 / -1;
    }
    
    .durability-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .applications-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Print Styles */
@media print {
    .cta-order-form,
    .faq-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .benefit-card,
    .feature-card,
    .testimonial-card {
        border: 2px solid #000;
    }
    
    h1, h2, h3 {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
    }
}

/* Thank You Page Styles */
.thank-you-page {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.02), rgba(217, 4, 41, 0.02));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.thankyou-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeInUp 1s ease forwards;
}

.thankyou-container h1 {
    font-size: 2.5rem;
    font-weight: 900;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.thankyou-details {
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(217, 4, 41, 0.1);
}

.thankyou-details p {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.thankyou-details strong {
    background: linear-gradient(135deg, #111111, #d90429);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.thankyou-details span {
    color: #d90429;
    font-weight: 700;
    font-size: 1.3rem;
}

.important-notice {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 2rem;
    text-align: right;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.important-notice h3 {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(90deg, #6f0000, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: center;
}

.important-notice p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.call-times {
    background: linear-gradient(135deg, rgba(217, 4, 41, 0.1), rgba(255, 179, 71, 0.1));
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-right: 4px solid;
    border-image: linear-gradient(135deg, #111111, #d90429) 1;
}

.call-times strong {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #111111, #d90429);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.urgent-note {
    background: linear-gradient(135deg, rgba(217, 4, 41, 0.05), rgba(255, 179, 71, 0.05));
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(217, 4, 41, 0.2);
    font-weight: 600;
    color: #d90429;
    font-size: 1.1rem;
}

.closing-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    font-style: italic;
    color: #666;
    border-right: 4px solid;
    border-image: linear-gradient(135deg, #111111, #d90429) 1;
    margin-top: 1.5rem;
}

/* Thank You Page Mobile Styles */
@media (max-width: 768px) {
    .thankyou-container {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .thankyou-container h1 {
        font-size: 2rem;
    }
    
    .thankyou-details {
        padding: 1.5rem;
    }
    
    .important-notice {
        padding: 2rem 1.5rem;
    }
    
    .important-notice h3 {
        font-size: 1.4rem;
    }
    
    .thankyou-details p,
    .important-notice p {
        font-size: 1rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *:not(.hero-image) {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .revealed {
        animation: none;
    }
    
    section {
        opacity: 1;
        transform: none;
    }
}