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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #faf5ff;
}

/* Color Scheme - Purple and Teal */
:root {
    --primary-red: #7c3aed;
    --primary-gold: #14b8a6;
    --dark-red: #5b21b6;
    --light-gold: #c4b5fd;
    --cream: #faf5ff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 2rem;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: nowrap;
}

nav a {
    color: var(--light-gold);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s;
}

nav a:hover {
    color: #fff;
}

.header-contact {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 0.9rem;
    color: var(--light-gold);
    white-space: nowrap;
}

.header-contact a {
    color: var(--light-gold);
    text-decoration: none;
}

.header-contact a:hover {
    color: #fff;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--light-gold);
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark-red);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--light-gold);
    text-decoration: none;
}

/* Banner */
.banner {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.banner h1 {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 3.5rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    padding: 0 2rem;
}

/* Advantages - Steps */
.advantages {
    padding: 5rem 2rem;
    background: var(--cream);
    max-width: 1400px;
    margin: 0 auto;
}

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 5px solid var(--primary-gold);
}

.step-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-gold);
    min-width: 60px;
}

.step-content h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    background: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

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

.service-card {
    background: var(--cream);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-card-content {
    padding: 2rem;
}

.service-card h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-gold);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: var(--dark-red);
}

/* Achievements */
.achievements {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: #fff;
}

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

.achievements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--light-gold);
}

.achievements-content {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    line-height: 1.9;
}

.achievements-content p {
    margin-bottom: 1.5rem;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--light-gold);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Booking Form */
.booking-form-section {
    padding: 5rem 2rem;
    background: var(--cream);
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.booking-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Bonus Program */
.bonus-program {
    padding: 5rem 2rem;
    background: #fff;
}

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

.bonus-program h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 3rem;
}

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

.bonus-item {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 10px;
    transition: transform 0.3s;
}

.bonus-item:hover {
    transform: translateY(-5px);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bonus-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.bonus-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* About Page */
.about-content {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h1 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.about-images img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Services Page */
.services-detail {
    padding: 5rem 2rem;
    background: var(--cream);
}

.services-detail-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-detail h1 {
    font-size: 2.5rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 3rem;
}

.service-detail-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.service-detail-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-detail-card:nth-child(even) .service-detail-image {
    order: 2;
}

.service-detail-card:nth-child(even) .service-detail-content {
    order: 1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 3rem;
}

.service-detail-content h2 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    color: var(--primary-gold);
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* Contact Page */
.contact-page {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page h1 {
    font-size: 2.5rem;
    color: var(--primary-red);
    text-align: center;
    margin-bottom: 3rem;
}

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

.contact-item {
    background: var(--cream);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-item h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-red);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    color: var(--light-gold);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 280px 280px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.footer-section h3 {
    color: var(--light-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section {
    min-width: 0;
}

.footer-section:first-child {
    min-width: 280px;
}

.footer-section nav ul {
    display: block;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.footer-section a {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255,255,255,0.2);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--light-gold);
}

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

/* Policy Pages */
.policy-page {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.policy-page h1 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 2rem;
}

.policy-page h2 {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-page p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr !important;
    }
    
    .service-detail-card:nth-child(odd) .service-detail-image,
    .service-detail-card:nth-child(even) .service-detail-image {
        order: 1 !important;
    }
    
    .service-detail-card:nth-child(odd) .service-detail-content,
    .service-detail-card:nth-child(even) .service-detail-content {
        order: 2 !important;
    }
    
    .service-detail-image {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    nav {
        display: none;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .banner {
        height: 400px;
    }
    
    .banner h1 {
        font-size: 2rem;
    }
    
    .advantages,
    .services,
    .achievements,
    .booking-form-section {
        padding: 3rem 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .achievements-stats {
        grid-template-columns: 1fr;
    }
    
    .booking-form-container {
        padding: 2rem 1.5rem;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr !important;
    }
    
    .service-detail-card:nth-child(odd) .service-detail-image,
    .service-detail-card:nth-child(even) .service-detail-image {
        order: 1 !important;
    }
    
    .service-detail-card:nth-child(odd) .service-detail-content,
    .service-detail-card:nth-child(even) .service-detail-content {
        order: 2 !important;
    }
    
    .service-detail-image {
        min-height: 300px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }
    
    .logo img {
        height: 50px;
    }
    
    .banner h1 {
        font-size: 1.5rem;
    }
    
    .advantages h2,
    .services h2,
    .achievements h2 {
        font-size: 2rem;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .about-images {
        grid-template-columns: 1fr;
    }
}

