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

/* Thank You Page Styles */
.thank-you-page {
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rubik', sans-serif;
    margin: 0;
    padding: 20px;
    box-sizing: border-box;
}

.thankyou-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.6s ease-out;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 30px;
    animation: bounce 0.8s ease-out 0.3s both;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.thankyou-container h1 {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.phone-display {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 25px 0;
    font-size: 1.1rem;
    color: #495057;
    border-left: 4px solid #667eea;
}

.phone-display span {
    font-weight: 600;
    color: #333;
}

.important-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffeaa7;
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    text-align: right;
}

.important-notice h3 {
    color: #856404;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.important-notice h3::before {
    content: "⚠️";
    margin-left: 10px;
    font-size: 1.2rem;
}

.important-notice p {
    color: #856404;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.call-times {
    background: rgba(255, 255, 255, 0.7);
    padding: 12px 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-weight: 600;
    color: #495057;
    border: 1px solid rgba(133, 100, 4, 0.2);
}

.closing-note {
    font-weight: 600;
    color: #495057 !important;
    font-size: 1.05rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(133, 100, 4, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .thank-you-page {
        padding: 15px;
    }
    
    .thankyou-container {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .thankyou-container h1 {
        font-size: 1.7rem;
    }
    
    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
        margin-bottom: 25px;
    }
    
    .important-notice {
        padding: 20px 15px;
    }
    
    .important-notice h3 {
        font-size: 1.2rem;
    }
    
    .phone-display {
        padding: 12px 15px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .thankyou-container {
        padding: 25px 15px;
    }
    
    .thankyou-container h1 {
        font-size: 1.5rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .important-notice h3 {
        font-size: 1.1rem;
    }
    
    .important-notice p {
        font-size: 0.95rem;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
    direction: rtl;
    text-align: right;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #d4af37;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 2rem 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-nav-menu.active {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
}

.mobile-nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding-right: 2.5rem;
}

.mobile-nav-menu a:last-child {
    border-bottom: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-stats {
    margin: 3rem 0;
}

.stat-item {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #d4af37;
}

.stat-label {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
}

.green-text {
    color: #28a745 !important;
}

.stat-title {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: bold;
    margin-top: 0.5rem;
}

.stat-description {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.hero-feature {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-feature h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.hero-feature p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Order Form Section (Enhanced Design) */
.cta-order-form {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c2c2c;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.cta-order-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
}

.cta-order-form::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.cta-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 0;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Simple Price Display */
.simple-price {
    text-align: center;
    margin: 20px 0;
}

.simple-price .current-price {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.old-price-display {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 8px;
    font-weight: 500;
}

.simple-price .price-value {
    font-size: 2.2rem;
    font-weight: bold;
    color: #2c2c2c;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-price {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #d4af37;
}

.delivery-pricing {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
}

.free-delivery {
    color: #28a745;
    font-weight: 600;
}

.cta-offers {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.offer-card {
    background: rgba(255,255,255,0.95);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s ease;
}

.offer-card:hover::before {
    left: 100%;
}

.offer-card:hover:not(.selected) {
    background: rgba(255,255,255,1);
    border-color: #d4af37;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.offer-card label {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    position: relative;
    z-index: 2;
}

.offer-card input[type="radio"] {
    margin-left: 1.5rem;
    transform: scale(1.4);
    accent-color: #d4af37;
    transition: transform 0.3s ease;
}

.offer-card input[type="radio"]:hover {
    transform: scale(1.6);
}

.offer-card input[type="radio"]:checked {
    accent-color: #d4af37;
}

.offer-card.selected {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(244, 208, 63, 0.1) 100%);
    border-color: #d4af37;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.offer-card input[type="radio"]:checked + .offer-title {
    color: #d4af37;
    font-weight: 700;
}

.offer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.popular-offer {
    position: relative;
}

.popular-offer.selected {
    border-color: #d4af37;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(244, 208, 63, 0.15) 100%);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.popular-offer:hover:not(.selected) {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 208, 63, 0.05) 100%);
    transform: translateY(-5px) scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 25px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-fields {
    display: grid;
    gap: 2rem;
    max-width: 500px;
    margin: 2rem auto;
    position: relative;
    z-index: 2;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
}

.field-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c2c2c;
    text-align: right;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.field-label::after {
    content: "";
}

.cta-fields input {
    padding: 1.2rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1.1rem;
    text-align: right;
    direction: rtl;
    background: white;
    color: #2c2c2c;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.cta-fields input:hover {
    border-color: #d4af37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
}

.cta-fields input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2), 0 4px 12px rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
}

.cta-fields input:valid {
    border-color: #28a745;
}

.cta-fields input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.field-group::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.field-group:focus-within::after {
    opacity: 1;
}

.field-group:focus-within .field-label {
    color: #d4af37;
}

#submitBtn {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
    min-width: 300px;
}

#submitBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

#submitBtn:hover::before {
    left: 100%;
}

#submitBtn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

#submitBtn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    background: linear-gradient(135deg, #999 0%, #777 100%);
}

#submitBtn:disabled:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Hero Main Image Styling */
.hero-main-image {
    text-align: center;
    margin-bottom: 30px;
}

.hero-main-hero-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Durability Image Styling */
.durability-image {
    text-align: center;
    margin-bottom: 30px;
}

.durability-hero-image {
    max-width: 700px;
    width: 100%;
    height: auto;
}

.benefits-image {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-hero-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #4a4a4a;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
    line-height: 1.4;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

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

.feature-card {
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: #d4af37;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Specifications Section */
.specs {
    padding: 80px 0;
    background: #f8f9fa;
}

.specs-image {
    text-align: center;
    margin-bottom: 3rem;
}

.specs-hero-image {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.specs h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.specs-table {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
    opacity: 0;
    transform: translateX(30px);
}

.spec-row.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.spec-row:hover {
    background-color: #f8f9fa;
}

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

.spec-label {
    padding: 1.5rem;
    font-weight: 600;
    background: #4a4a4a;
    color: white;
}

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

@media (max-width: 768px) {
    .spec-row {
        grid-template-columns: 1fr 2fr;
    }
    
    .spec-label {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .spec-value {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: white;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.review-card {
    display: none;
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.review-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

.review-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.reviewer strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.reviewer span {
    opacity: 0.8;
    font-size: 1rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: #4a4a4a;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #2c2c2c;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4a4a4a;
    transform: scale(1.2);
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    color: white;
    text-align: center;
}

.guarantee h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #d4af37;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.guarantee-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.guarantee-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 2rem;
}

.badge-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.badge-text span {
    opacity: 0.8;
    font-size: 0.9rem;
}

.guarantee-cta {
    margin-top: 3rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    text-decoration: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* FAQs Section */
.faqs {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faqs h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
}

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

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

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.faq-question h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d4af37;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
}

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

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #4a4a4a 0%, #2c2c2c 100%);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-email {
    margin-top: 1rem;
    color: #d4af37;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 2rem;
    }
    
    .hero-feature {
        padding: 1.5rem;
    }
    
    .hero-feature img {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .hero-main-hero-image {
        max-width: 100% !important;
    }
    
    .hero-main-hero-image {
        max-width: 100% !important;
    }
    
    .benefits-hero-image {
        max-width: 100% !important;
    }
    
    .durability-hero-image {
        max-width: 100% !important;
    }
    
    .specs-hero-image {
        max-width: 100% !important;
    }
    
    .faqs h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 20px 15px;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 15px;
    }

    .faq-item.active .faq-answer {
        padding: 20px 15px;
    }
    
    .cta-order-form {
        padding: 50px 20px;
    }
    
    .cta-order-form h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .cta-order-form .subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .cta-offers {
        gap: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .offer-card {
        padding: 1.8rem;
        border-radius: 18px;
    }
    
    .offer-title {
        font-size: 1.05rem;
    }
    
    .popular-badge {
        font-size: 0.8rem;
        padding: 0.45rem 1.1rem;
        top: -11px;
        right: 20px;
    }
    
    .cta-fields {
        gap: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .field-group {
        margin-bottom: 1.2rem;
    }
    
    .field-label {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    input {
        padding: 14px 18px;
        font-size: 1.05rem;
    }
    
    #submitBtn {
        padding: 18px 35px;
        font-size: 1.2rem;
        margin-top: 25px;
    }
    
    .simple-price {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .spec-row {
        grid-template-columns: 1fr;
    }
    
    .spec-label {
        border-bottom: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .guarantee-badges {
        grid-template-columns: 1fr;
    }
    
    .badge {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-feature img {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .faqs {
        padding: 60px 0;
    }

    .faqs h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }

    .faq-container {
        padding: 0 15px;
    }

    .faq-item {
        margin-bottom: 15px;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 1rem;
        padding-right: 10px;
    }

    .faq-toggle {
        font-size: 1.3rem;
        min-width: 25px;
    }

    .faq-item.active .faq-answer {
        padding: 15px;
        max-height: 250px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1.8rem;
    }
    
    .cta-order-form h2,
    .benefits h2,
    .features h2,
    .specs h2,
    .reviews h2,
    .guarantee h2 {
        font-size: 1.8rem;
    }
    
    .cta-order-form {
        padding: 40px 15px;
    }
    
    .cta-order-form h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .cta-order-form .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-offers {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .offer-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .offer-title {
        font-size: 1rem;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        top: -10px;
        right: 15px;
    }
    
    .cta-fields {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .field-group {
        margin-bottom: 1rem;
    }
    
    .field-label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    input {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    #submitBtn {
        padding: 15px 30px;
        font-size: 1.1rem;
        margin-top: 20px;
    }
    
    .simple-price {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .review-card {
        padding: 2rem;
    }
    
    .review-content p {
        font-size: 1.1rem;
    }
}

/* Animation Classes */
.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

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

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus states for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}