* {
    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;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-img {
    height: 45px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #b8860b;
}

.book-btn, .hero-btn, .learn-more-btn, .book-service-btn, .booking-btn, .guarantee-btn, .contact-btn, .footer-cta-btn {
    background: #b8860b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.book-btn:hover, .hero-btn:hover, .learn-more-btn:hover, .book-service-btn:hover, .booking-btn:hover, .guarantee-btn:hover, .contact-btn:hover, .footer-cta-btn:hover {
    background: #9a7209;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    background: rgba(184, 134, 11, 0.1);
    color: #b8860b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.1);
}

/* Quality Section */
.quality {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.quality h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a1a1a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.quality p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
}

.google-logo {
    height: 30px;
}

.stars {
    display: flex;
    gap: 5px;
}

.star {
    color: #ffd700;
    font-size: 24px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.services h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 80px;
    color: #1a1a1a;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    text-align: center;
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Booking Section */
.booking {
    padding: 100px 0;
    background: #fff;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.booking h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

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

.booking-features li {
    padding: 8px 0;
    font-size: 1rem;
    color: #333;
}

.booking-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
}

/* Guarantee Section */
.guarantee {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.guarantee h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.guarantee > p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.guarantee-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 50px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-icon {
    color: #b8860b;
    font-weight: bold;
    font-size: 18px;
}

.guarantee-item span:last-child {
    font-weight: 500;
    color: #333;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.google-logo-big {
    height: 50px;
    margin-bottom: 40px;
}

.testimonial-content blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.reviewer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    color: #ffd700;
    font-size: 16px;
}

/* Standards Section */
.standards {
    padding: 100px 0;
    background: #f8f9fa;
}

.standards-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.standards h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.standards p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.standards-img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}

/* Footer */
.footer {
    background: #1e3a5f;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 40px;
    align-items: center;
}

.footer-logo-img {
    height: 45px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 12px;
    letter-spacing: 1px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 5px;
    color: #ccc;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #ccc;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #b8860b;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer-right {
    text-align: right;
}

.footer-right h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #fff;
    line-height: 1.3;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 14px;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0;
}

.thanks-content {
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 600px;
}

.thanks-icon svg {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.order-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

.contact-emergency {
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-emergency h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-emergency a {
    color: #b8860b;
    text-decoration: none;
    font-weight: 600;
}

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

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #b8860b;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #9a7209;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .booking-content,
    .standards-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-right {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        gap: 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .quality h2,
    .services h2,
    .booking h2,
    .guarantee h2,
    .standards h2 {
        font-size: 1.8rem;
    }

    .thanks-content {
        margin: 20px;
        padding: 40px 30px;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .sections {
        padding: 60px 0;
    }

    .reviewer {
        flex-direction: column;
        gap: 10px;
    }
}

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

.hero-content,
.service-card,
.booking-content,
.standards-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
button:focus,
a:focus {
    outline: 2px solid #b8860b;
    outline-offset: 2px;
}
