body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

#myVideo {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}

.logo {
    position: fixed;
    bottom: 20px;
    right: 8px;
    width: 100px;
    background-color: transparent;
}

.sound-control {
    position: fixed;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 1em;
    cursor: pointer;
}

.content {
    position: relative;
    z-index: 1;
    color: #fff;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
}

header {
    color: #fff;
    text-align: center;
}

.main-headline {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    margin: 0;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
}

.sub-headline {
    font-size: 1.5em;
    font-weight: 300;
    margin-top: 10px;
    opacity: 0;
    animation: fadeIn 2s ease-in-out 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

main {
    padding: 20px;
}

.features {
    margin-bottom: 20px;
}

.cta {
    text-align: center;
}

.btn {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
}

footer {
    background-color: rgba(51, 51, 51, 0.5);
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Large Desktop - 1200px to 1600px */
@media (min-width: 1200px) and (max-width: 1600px) {
    .main-headline {
        font-size: 4.5em;
    }

    .sub-headline {
        font-size: 1.7em;
    }

    .container {
        max-width: 1400px;
    }

    .cta-buttons {
        margin-top: 180px;
    }
}

/* Ultra-wide screens - 1600px and up */
@media (min-width: 1600px) {
    .main-headline {
        font-size: 5.5em;
    }

    .sub-headline {
        font-size: 2em;
    }

    .container {
        max-width: 1600px;
    }

    .cta-buttons {
        margin-top: 200px;
    }

    .cta-button {
        font-size: 1.4em;
        padding: 18px 35px;
    }

    .secondary-cta {
        font-size: 1.3em;
        padding: 15px 30px;
    }
}

/* Tablet - 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .main-headline {
        font-size: 3.5em;
    }

    .sub-headline {
        font-size: 1.4em;
    }

    .cta-buttons {
        margin-top: 120px;
    }

    .steps-grid {
        gap: 30px;
    }

    .phone-frame {
        width: 250px;
        height: 450px;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    .main-headline {
        font-size: 2.5em;
    }

    .sub-headline {
        font-size: 1.2em;
    }

    header {
        padding: 50px 10px;
    }

    .logo {
        width: 70px;
        bottom: 10px;
        right: 10px;
    }

    .cta-buttons {
        margin-top: 100px;
        gap: 25px;
    }

    .cta-button {
        font-size: 1.1em;
        padding: 12px 25px;
    }

    .secondary-cta {
        font-size: 1em;
        padding: 10px 20px;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .main-headline {
        font-size: 2em;
        line-height: 1.2;
    }

    .sub-headline {
        font-size: 1em;
        margin-top: 15px;
    }

    .cta-buttons {
        margin-top: 80px;
        gap: 22px;
    }

    /* Touch-friendly button sizes (minimum 44px height) */
    .cta-button {
        font-size: 1em;
        padding: 14px 24px;
        min-height: 44px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .secondary-cta {
        font-size: 0.95em;
        padding: 12px 22px;
        min-height: 44px;
    }

    .logo {
        width: 60px;
        bottom: 5px;
        right: 5px;
    }

    .sound-control {
        top: 10px;
        right: 10px;
        font-size: 0.9em;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.cta-buttons {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 2s ease-in-out 2s forwards;
}

.primary-cta {
    color: white;
    background-color: #7E211B;
    animation: fadeIn 2s ease-in-out 2s forwards, pulse 2s infinite 4s;
}

.secondary-cta {
    color: #D4AF37;
    background-color: transparent;
    border: 2px solid #D4AF37;
    font-size: 1.1em;
    padding: 12px 25px;
    animation: fadeIn 2s ease-in-out 2.5s forwards;
}

.secondary-cta:hover {
    background-color: #D4AF37;
    color: #7E211B;
    transform: translateY(-2px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 105, 180, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 105, 180, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 105, 180, 0);
    }
}

.details-section {
    padding: 50px 20px;
    background-color: #FDF8F5;
    color: #333;
}

.details-section.hidden {
    display: none;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab {
    padding: 10px 20px;
    margin: 0 10px;
    color: #333;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease;
}

.tab.active {
    border-bottom: 2px solid #D4AF37;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Gold Dust Particles */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* How It Works Section */
.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.how-it-works-headline {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 60px;
    margin-top: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    position: relative;
}

/* Connecting Line */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    /* Adjust based on icon size */
    left: 15%;
    width: 70%;
    height: 2px;
    background-image: linear-gradient(to right, #D4AF37 50%, transparent 50%);
    background-size: 20px 100%;
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

.step-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    background: #FDF8F5;
    /* Match section background to hide line behind icon */
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
}

.step-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}

.step-item p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Mobile responsiveness for steps */
@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-grid::before {
        display: none;
        /* Hide connecting line on mobile */
    }


    .how-it-works-headline {
        font-size: 2em;
    }

    .step-item h3 {
        font-size: 1.2em;
    }

    .step-item p {
        font-size: 0.95em;
    }
}

/* Small mobile adjustments for steps */
@media (max-width: 480px) {
    .details-section {
        padding: 40px 15px;
    }

    .how-it-works-headline {
        font-size: 1.8em;
        margin-bottom: 40px;
    }

    .steps-grid {
        gap: 25px;
    }

    .step-item h3 {
        font-size: 1.1em;
        margin-bottom: 10px;
    }

    .step-item p {
        font-size: 0.9em;
        line-height: 1.5;
    }

    .step-icon svg {
        width: 50px;
        height: 50px;
    }
}


.hidden {
    display: none !important;
}

/* Content sections initially hidden */
.content-sections {
    transition: all 0.5s ease-in-out;
}

.content-sections.hidden {
    display: none;
}

/* Prevent body scroll when content is hidden */
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* Container for sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section 3: What You Get */
.what-you-get-section {
    background-color: #7E211B;
    /* Maroon Background */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Add a subtle pattern overlay or gradient if desired */
.what-you-get-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.1), transparent 60%);
    pointer-events: none;
}

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

.carousel-3d-container {
    width: 100%;
    height: 400px;
    position: relative;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.carousel-item {
    position: absolute;
    width: 300px;
    height: 400px;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    /* Half width */
    margin-top: -200px;
    /* Half height */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid #D4AF37;
    background: #000;
}

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

/* States */
.carousel-item.active {
    transform: translateZ(0) scale(1.1);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    /* Gold glow */
}

.carousel-item.next {
    transform: translateX(60%) translateZ(-100px) rotateY(-15deg);
    opacity: 0.6;
    z-index: 5;
    filter: brightness(0.7);
}

.carousel-item.prev {
    transform: translateX(-60%) translateZ(-100px) rotateY(15deg);
    opacity: 0.6;
    z-index: 5;
    filter: brightness(0.7);
}

.carousel-item.hidden {
    transform: translateZ(-200px);
    opacity: 0;
    z-index: 0;
}

.section-headline {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #D4AF37;
    /* Gold Headline */
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25em;
    color: #FDF8F5;
    /* Off-white text */
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    /* Subtle divider */
}

.features-list li:last-child {
    border-bottom: none;
}

.checkmark {
    color: #D4AF37;
    margin-right: 20px;
    font-size: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Section 4: Social Proof */
.social-proof-section {
    background-color: #FDF8F5;
    padding: 80px 0;
    overflow: hidden;
}

.social-proof-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
    margin-top: 0;
}

.testimonials-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.testimonials-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
    width: auto;
    will-change: transform;
    /* Optimize for JS animation */
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
    /* Standard */
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #7E211B;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    /* More flexible minimum width */
    width: 400px;
    /* Fixed width for uniform look */
    flex-shrink: 0;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    /* padding-bottom: 60px; Removed as we want flex layout */
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.5);
}

.testimonial-card .testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-style: italic;
    color: #4a4a4a;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card .testimonial-attribution {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #D4AF37;
    font-style: normal;
    font-weight: 600;
}

.testimonial-card .play-button {
    /* position: absolute; Removed to align in footer */
    /* top: 15px; */
    /* right: 15px; */
    background-color: #D4AF37;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-card .play-button:hover {
    background-color: #b8941f;
    transform: scale(1.1);
}

.testimonial-card .play-button i {
    font-size: 20px;
}

/* Section 5: Final Call to Action */
.final-cta-section {
    background-color: #7B241C;
    padding: 80px 0;
}

.final-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-cta-headline {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    color: #F5F5F5;
    margin-bottom: 40px;
}

/* Primary WhatsApp Action */
.primary-action {
    margin-bottom: 50px;
}

.whatsapp-button {
    background-color: #d4af37;
    color: #7B241C;
    font-size: 1.3em;
    padding: 18px 40px;
    margin-top: 0;
    display: inline-block;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    opacity: 1;
}

.whatsapp-button:hover {
    background-color: #b8941f;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}



/* Mobile responsiveness for final CTA */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 60px 0;
    }

    .final-cta-headline {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .whatsapp-button {
        font-size: 1.2em;
        padding: 16px 35px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .email-input {
        width: 100%;
    }

    .email-button {
        width: 100%;
        padding: 15px;
    }

    .form-message {
        margin-top: 15px;
        padding: 12px 15px;
        font-size: 0.9em;
    }

    .testimonial-card {
        min-width: 250px;
        width: calc(100vw - 50px);
        max-width: calc(100vw - 50px);
        padding: 25px;
    }

    .testimonial-quote {
        font-size: 0.95rem;
    }

    .social-proof-heading {
        font-size: 2em;
        margin-bottom: 40px;
    }

    .testimonials-track {
        gap: 20px;
    }
}

/* Small mobile responsiveness */
@media (max-width: 480px) {
    .final-cta-section {
        padding: 50px 0;
    }

    .final-cta-headline {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .whatsapp-button {
        font-size: 1.1em;
        padding: 14px 30px;
    }

    .email-headline {
        font-size: 1.1em;
    }

    .testimonial-card {
        min-width: 200px;
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        padding: 20px;
    }

    .testimonial-quote {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .testimonial-attribution {
        font-size: 0.85rem;
    }

    .testimonials-track {
        gap: 15px;
    }

    .social-proof-heading {
        font-size: 1.8em;
        margin-bottom: 35px;
    }

    .what-you-get-section,
    .social-proof-section {
        padding: 60px 0;
    }

    .section-headline {
        font-size: 1.8em;
    }

    .features-list li {
        font-size: 1em;
        margin-bottom: 12px;
    }
}

/* Footer */
.main-footer {
    background-color: #333333;
    padding: 40px 0 20px 0;
}

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

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5em;
    color: #ccc;
}

.footer-social .social-link {
    color: #ccc;
    text-decoration: none;
    margin-left: 15px;
}

.footer-social .social-link:hover {
    color: #fff;
}

.footer-contact {
    font-family: 'Montserrat', sans-serif;
    color: #ccc;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.footer-copyright p {
    font-family: 'Montserrat', sans-serif;
    color: #999;
    margin: 0;
    font-size: 0.9em;
}

/* Additional mobile responsiveness - consolidated */
@media (max-width: 768px) {
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .phone-frame {
        width: 240px;
        height: 430px;
    }

    .section-headline {
        font-size: 2em;
        text-align: center;
    }

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

    .footer-brand {
        font-size: 1.3em;
    }
}

/* Small mobile - additional layout adjustments */
@media (max-width: 480px) {
    .phone-frame {
        width: 200px;
        height: 360px;
        padding: 15px;
    }

    .video-placeholder .material-icons {
        font-size: 3em;
    }

    .placeholder-content p {
        font-size: 0.8em;
    }

    .footer-brand {
        font-size: 1.2em;
    }

    .footer-contact {
        font-size: 0.9em;
    }
}

/* Extra small screens - 320px and below */
@media (max-width: 320px) {
    .testimonial-card {
        min-width: 180px;
        width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
        padding: 15px;
    }

    .testimonial-quote {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .testimonial-attribution {
        font-size: 0.8rem;
    }

    .testimonials-track {
        gap: 10px;
    }

    .social-proof-heading {
        font-size: 1.6em;
        margin-bottom: 30px;
    }

    .social-proof-section {
        padding: 50px 0;
    }
}

/* Tablet-specific adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonial-card {
        min-width: 300px;
        width: 300px;
        max-width: 320px;
        padding: 22px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .testimonials-track {
        gap: 25px;
    }

    .final-cta-headline {
        font-size: 2.2em;
    }

    .whatsapp-button {
        font-size: 1.25em;
        padding: 17px 38px;
    }
}

/* Questionnaire Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #FDF8F5;
    /* Warm off-white */
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #D4AF37;
    /* Gold border */
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #7E211B;
    /* Maroon */
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: #D4AF37;
    /* Gold */
    text-decoration: none;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    color: #7E211B;
    margin-top: 0;
    margin-bottom: 5px;
    text-align: center;
}

.modal-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
    font-size: 0.95em;
}

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

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #D4AF37;
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #7E211B;
    /* Maroon */
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(126, 33, 27, 0.3);
}

.submit-btn:hover {
    background-color: #D4AF37;
    /* Gold */
    color: #7E211B;
    /* Maroon text on gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}