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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #F5F1EB; /* Tom terroso suave */
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(196, 166, 97, 0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.logo {
    margin-bottom: 30px;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #1A1A1A;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #B8860B, #A0722D);
    color: #FFFFFF;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(135deg, #A0722D, #8B4513);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.4);
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

/* Sections */
.services, .about, .testimonials, .how-it-works, .quiz-section, .faq, .location {
    padding: 80px 0;
    background-color: #F5F1EB; /* Tom terroso principal */
}

.services:nth-child(even), .about:nth-child(even), .testimonials:nth-child(even) {
    background-color: #EDE7DD; /* Tom terroso mais escuro para alternância */
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #1A1A1A;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #D4AF37;
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1A1A1A;
}

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

/* Image Scroll Container */
.image-scroll-container {
    margin-top: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 10px;
    background-color: #EDE7DD;
    padding: 10px;
}

.image-scroll-content {
    display: flex;
    gap: 15px;
    padding: 5px;
    min-width: max-content;
}

.image-scroll-content img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #B8860B;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.image-scroll-content img:hover {
    transform: scale(1.1);
    border-color: #A0722D;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

/* Custom Scrollbar */
.image-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.image-scroll-container::-webkit-scrollbar-track {
    background: #F5F1EB;
    border-radius: 10px;
}

.image-scroll-container::-webkit-scrollbar-thumb {
    background: #B8860B;
    border-radius: 10px;
}

.image-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #A0722D;
}

/* About Section */
.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #B8860B;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}

.testimonial span {
    font-weight: 600;
    color: #B8860B;
}

/* How it Works */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    text-align: center;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B8860B, #A0722D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #FFFFFF;
}

.step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1A1A1A;
}

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

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

.faq-item {
    background: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

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

.faq-question h3 {
    font-size: 1.2rem;
    color: #1A1A1A;
    margin: 0;
}

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

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

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

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

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

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

/* Location */
.location-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.location-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #444;
}

.map-button {
    display: inline-block;
    background: linear-gradient(135deg, #B8860B, #A0722D);
    color: #FFFFFF;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.map-button:hover {
    background: linear-gradient(135deg, #A0722D, #8B4513);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info h3 {
    font-family: 'Playfair Display', serif;
    color: #B8860B;
    margin-bottom: 10px;
}

.footer-info p {
    margin-bottom: 5px;
    color: #CCCCCC;
}

.footer-links {
    display: flex;
    gap: 20px;
}

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

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

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #B8860B, #A0722D);
    color: #FFFFFF;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1001;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    color: #FFFFFF;
}

/* Quiz Section */
.quiz-section {
    background: linear-gradient(135deg, #F5F1EB, #EDE7DD);
    padding: 80px 0;
}

.quiz-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quiz-question {
    display: none;
    text-align: center;
}

.quiz-question.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.quiz-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1A1A1A;
    margin-bottom: 30px;
}

.quiz-options {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #F5F1EB;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.quiz-option:hover {
    background: #EDE7DD;
    border-color: #B8860B;
}

.quiz-option input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    accent-color: #B8860B;
}

.quiz-option.selected {
    background: #EDE7DD;
    border-color: #B8860B;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.2);
}

.option-text {
    font-size: 1.1rem;
    color: #1A1A1A;
    font-weight: 500;
}

.quiz-input-group {
    margin-bottom: 30px;
}

.quiz-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: #F5F1EB;
}

.quiz-input:focus {
    outline: none;
    border-color: #B8860B;
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.2);
}

.quiz-next {
    background: linear-gradient(135deg, #B8860B, #A0722D);
    color: #FFFFFF;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
}

.quiz-next:hover {
    background: linear-gradient(135deg, #A0722D, #8B4513);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.4);
}

.quiz-next:disabled {
    background: #CCCCCC;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.quiz-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.quiz-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1A1A1A;
    margin-bottom: 15px;
}

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

.loading-animation {
    margin-top: 30px;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.loading-dots span {
    width: 10px;
    height: 10px;
    background: #B8860B;
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .quiz-container {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .quiz-question h3 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .image-scroll-content img {
        width: 100px;
        height: 100px;
    }
    
    .about-text {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .quiz-container {
        padding: 25px 15px;
    }
    
    .quiz-question h3 {
        font-size: 1.3rem;
    }
    
    .option-text {
        font-size: 1rem;
    }
    
    .image-scroll-content img {
        width: 80px;
        height: 80px;
    }
}verflow-x: hidden;
    background-color: #FAF5F0; /* New base background color */
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #1A1A1A; /* New title color */
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1A1A1A;
    font-weight: 600;
}

/* Notification Effect */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #D4AF37, #B8860B); /* Lighter gold color */
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transform: translateX(400px);
    transition: transform 0.5s ease;
    z-index: 1000;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.logo {
    margin-bottom: 2rem;
}

.logo-img {
    height: 120px; /* Increased logo size */
    width: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white; /* Explicit white color for hero title */
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    color: white; /* Explicit white color for hero subtitle */
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #D4AF37, #B8860B); /* Lighter gold color */
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #B8860B, #D4AF37); /* New hover color */
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #F4F0EA; /* New block background color */
}

.about-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #FAF5F0; /* New base background color */
}

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

.service-card {
    background: #F4F0EA; /* New block background color */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img,
.service-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img,
.service-card:hover .service-image video {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 20px 20px 15px;
    color: #1A1A1A;
}

.service-card p {
    padding: 0 20px 25px;
    color: #666;
    line-height: 1.6;
}

.image-scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px; /* Space for scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #D4AF37 #F4F0EA;
}

.image-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.image-scroll-container::-webkit-scrollbar-track {
    background: #F4F0EA;
    border-radius: 4px;
}

.image-scroll-container::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 4px;
}

.image-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #B8860B;
}

.image-scroll-content {
    display: flex;
    gap: 15px;
    padding: 0 20px;
    min-width: max-content; /* Ensures proper scrolling */
}

.image-scroll-content img {
    flex-shrink: 0;
    width: 180px; /* Optimized for mobile scroll */
    height: 180px; /* Optimized for mobile scroll */
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(212, 175, 55, 0.2); /* Soft border with gold accent */
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.image-scroll-content img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    border-color: #D4AF37;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #F4F0EA; /* New block background color */
}

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

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #FAF5F0; /* New base background color */
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial {
    min-width: 300px;
    background: #F4F0EA; /* New block background color */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    scroll-snap-align: start;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}

.testimonial span {
    font-weight: 600;
    color: #D4AF37; /* Lighter gold color */
}

/* How it Works Section */
.how-it-works {
    padding: 80px 0;
    background: #F4F0EA; /* New block background color */
}

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

.step {
    text-align: center;
    background: #FAF5F0; /* New base background color */
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37, #B8860B); /* Lighter gold color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1A1A1A;
}

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

/* Contact Form Section */
.contact-form {
    padding: 80px 0;
    background: #FAF5F0; /* New base background color */
}

.form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #E5E5E5;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #D4AF37; /* Lighter gold color */
}

.form .cta-button {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.form-message {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: #e6ffe6; /* Light green for success */
    color: #339933; /* Dark green text */
    border: 1px solid #a3d9a3;
    border-radius: 8px;
    display: none; /* Hidden by default */
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #F4F0EA; /* New block background color */
}

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

.faq-item {
    background: #FAF5F0; /* New base background color */
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.faq-question h3 {
    font-size: 1.1rem;
    color: #1A1A1A;
    margin: 0;
}

.faq-question i {
    color: #D4AF37; /* Lighter gold color */
    transition: transform 0.3s ease;
}

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

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

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

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

/* Location Section */
.location {
    padding: 80px 0;
    background: #FAF5F0; /* New base background color */
}

.location-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.location-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}

.map-button {
    display: inline-block;
    background: #D4AF37; /* Lighter gold color */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.map-button:hover {
    background: #B8860B; /* New hover color */
}

/* Footer */
.footer {
    background: #1A1A1A; /* New dark background color */
    color: white;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info h3 {
    color: #D4AF37; /* Lighter gold color */
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

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

.footer-links a:hover {
    opacity: 1;
    color: #D4AF37; /* Lighter gold color */
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

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

    .hero-title {
        font-size: 2.2rem; /* Adjusted for mobile */
        color: white; /* Explicit white color for mobile */
    }

    .hero-subtitle {
        font-size: 1rem; /* Adjusted for mobile */
        color: white; /* Explicit white color for mobile */
    }

    .section-title {
        font-size: 1.8rem; /* Adjusted for mobile */
        margin-bottom: 2rem; /* Increased spacing */
        color: #1A1A1A; /* Explicit black color for section titles */
    }

    .about-text {
        font-size: 1rem; /* Adjusted for mobile */
        padding: 0 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px; /* Increased spacing */
    }

    .service-card h3 {
        font-size: 1.3rem; /* Adjusted for mobile */
        color: #1A1A1A; /* Explicit black color */
    }

    .service-card p {
        font-size: 0.95rem; /* Adjusted for mobile */
    }

    .image-scroll-content {
        padding: 0 15px; /* Better mobile padding */
    }

    .image-scroll-content img {
        width: 150px; /* Smaller images for mobile scroll */
        height: 150px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 30px; /* Increased spacing */
    }

    .testimonial {
        min-width: 280px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .logo-img {
        height: 80px; /* Adjusted logo size for mobile */
    }

    .hero-background {
        background-attachment: scroll;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .form-group input {
        padding: 15px 18px;
    }

    .faq-question h3 {
        font-size: 1rem;
        color: #1A1A1A; /* Explicit black color */
    }

    .faq-answer p {
        font-size: 0.95rem;
    }

    .location-info p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        color: white; /* Explicit white color */
    }

    .hero-subtitle {
        font-size: 0.9rem;
        color: white; /* Explicit white color */
    }

    .section-title {
        font-size: 1.6rem;
        color: #1A1A1A; /* Explicit black color */
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        min-width: 250px;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .logo-img {
        height: 70px; /* Further adjusted for very small screens */
    }
}



/* Quiz Section */
.quiz-section {
    padding: 80px 0;
    background: #F4F0EA;
}

.quiz-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: #FAF5F0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quiz-question {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.quiz-question.active {
    display: block;
}

.quiz-question h3 {
    font-size: 1.5rem;
    color: #1A1A1A;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.quiz-options {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.quiz-option {
    display: flex;
    align-items: center;
    padding: 20px;
    background: white;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.quiz-option:hover {
    border-color: #D4AF37;
    background: #FEFCF8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.quiz-option input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    accent-color: #D4AF37;
}

.quiz-option.selected {
    border-color: #D4AF37;
    background: #FEFCF8;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.option-text {
    font-size: 1rem;
    color: #1A1A1A;
    font-weight: 500;
}

.quiz-input-group {
    margin-bottom: 30px;
}

.quiz-input {
    width: 100%;
    padding: 20px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    background: white;
}

.quiz-input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.quiz-next {
    width: 100%;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.quiz-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #B8860B, #D4AF37);
}

.quiz-next:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.quiz-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.quiz-success h3 {
    font-size: 2rem;
    color: #1A1A1A;
    margin-bottom: 15px;
}

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

.loading-animation {
    margin-top: 30px;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: #D4AF37;
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

.loading-animation p {
    color: #D4AF37;
    font-weight: 600;
    margin: 0;
}

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

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Quiz Mobile Responsive */
@media (max-width: 768px) {
    .quiz-container {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .quiz-question h3 {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .quiz-option {
        padding: 15px;
    }

    .quiz-option input[type="radio"] {
        width: 18px;
        height: 18px;
        margin-right: 12px;
    }

    .option-text {
        font-size: 0.95rem;
    }

    .quiz-input {
        padding: 15px;
        font-size: 0.95rem;
    }

    .quiz-next {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .quiz-success h3 {
        font-size: 1.6rem;
    }

    .quiz-success p {
        font-size: 1rem;
    }

    .success-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .quiz-container {
        padding: 25px 15px;
    }

    .quiz-question h3 {
        font-size: 1.2rem;
    }

    .quiz-option {
        padding: 12px;
    }

    .option-text {
        font-size: 0.9rem;
    }

    .quiz-input {
        padding: 12px;
        font-size: 0.9rem;
    }

    .quiz-next {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

