/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.logo-title {
    font-family: 'Bad Script', cursive;
    color: #0E2F44;
    font-weight: 400;
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #0E2F44;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #D4AE3A;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #0E2F44;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0E2F44 0%, #1a4a6b 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title-main {
    color: #D4AE3A;
    font-family: 'Bad Script', cursive;
}

.hero-title-sub {
    color: white;
    font-size: 1.75rem;
}

.hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Countdown Timer Styles */
.countdown-container {
    margin: 2rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Countdown Timer (Smaller Version) */
.countdown-container-hero {
    margin: 1.5rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-title-hero {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #D4AE3A;
}

.countdown-timer-hero {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.countdown-item-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.countdown-number-hero {
    font-size: 1.8rem;
    font-weight: 700;
    color: #D4AE3A;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-label-hero {
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
    margin-top: 0.3rem;
    opacity: 0.9;
}

.countdown-date-hero {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    opacity: 0.9;
    margin: 0;
}

.countdown-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #D4AE3A;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AE3A;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.countdown-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    opacity: 0.9;
    margin: 0;
}

/* Secondary Countdown Timer (for start date section) */
.countdown-section {
    margin: 3rem 0;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.countdown-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #0E2F44;
}

.countdown-timer-secondary {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.countdown-item-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number-secondary {
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AE3A;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.countdown-label-secondary {
    font-size: 0.9rem;
    font-weight: 500;
    color: #0E2F44;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.countdown-date-secondary {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0E2F44;
    opacity: 0.8;
    margin: 0;
}

/* Countdown Animation */
.countdown-update {
    animation: countdownPulse 0.3s ease-in-out;
}

@keyframes countdownPulse {
    0% {
        transform: scale(1);
        color: #D4AE3A;
    }
    50% {
        transform: scale(1.1);
        color: #ffffff;
    }
    100% {
        transform: scale(1);
        color: #D4AE3A;
    }
}

/* Countdown Finished State */
.countdown-finished {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(45deg, #D4AE3A, #b8942a);
    border-radius: 15px;
    color: #0E2F44;
    animation: fadeInUp 0.6s ease-out;
}

.countdown-finished h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0E2F44;
}

.countdown-finished p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 2rem;
}

.btn-primary {
    background: linear-gradient(45deg, #D4AE3A, #b8942a);
    color: #0E2F44;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 174, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 174, 58, 0.4);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.hero-price {
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.9;
}

.current-price {
    font-weight: 700;
    color: #D4AE3A;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    margin-left: 0.5rem;
}

.voucher-info {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-logo-title {
    font-family: 'Bad Script', cursive;
    color: white;
    font-weight: 400;
    font-size: 2rem;
    margin-top: 1rem;
    text-align: center;
    opacity: 0.9;
}

/* Brand Story Section */
.brand-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.brand-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.brand-icon {
    margin-bottom: 2rem;
}

.brand-icon i {
    font-size: 4rem;
    color: #D4AE3A;
}

.brand-story h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0E2F44;
}

.brand-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.how-it-works h2 {
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #0E2F44;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-icon {
    margin-bottom: 1.5rem;
}

.step-icon i {
    font-size: 3rem;
    color: #D4AE3A;
}

.step h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0E2F44;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Services & Opinion Section */
.services-opinion {
    padding: 80px 0;
    background: linear-gradient(135deg, #0E2F44 0%, #1a4a6b 100%);
    color: white;
}

.services-opinion h2 {
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.google-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
}

.google-form-container iframe {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: white;
}



/* Trust Signals Section */
.trust-signals {
    padding: 80px 0;
    background: #f8f9fa;
}

.trust-signals h2 {
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #0E2F44;
}

.trust-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    margin-bottom: 1.5rem;
}

.trust-icon i {
    font-size: 3rem;
    color: #D4AE3A;
}

.trust-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #0E2F44;
}

.trust-item p {
    color: #666;
    line-height: 1.6;
}

/* Money Back Guarantee Section */
.money-back-guarantee {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-highlight {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.7em;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.money-back-guarantee h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0E2F44;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.guarantee-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* When Do We Start Section */
.start-date {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.start-date h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0E2F44;
}

.start-date-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.start-date-description strong {
    color: #D4AE3A;
    font-weight: 700;
}

/* Final Offer Section */
.final-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #0E2F44 0%, #1a4a6b 100%);
    color: white;
    text-align: center;
}

.final-offer h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.offer-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offer-cta {
    margin-top: 2rem;
}

.newsletter-link {
    margin-top: 2rem;
}

.newsletter-link a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.newsletter-link a:hover {
    color: #0E2F44;
    background-color: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.newsletter-link a:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.modal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1rem;
    color: #0E2F44;
}

.modal-content p {
    margin-bottom: 2rem;
    color: #666;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #D4AE3A;
}

/* Contact Form Styles */
.contact-form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.contact-form-container h2 {
    color: #0E2F44;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1.8rem;
}

.contact-form-description {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #0E2F44;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AE3A;
}

.form-group textarea {
    min-height: 100px;
}

.contact-form .btn-primary {
    margin-top: 1rem;
    width: 100%;
}

.contact-form-note {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Footer */
.footer {
    background: #0E2F44;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-logo-title {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(14, 47, 68, 0.1);
    }
    
    .nav-menu a:last-child {
        border-bottom: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo-image {
        height: 45px;
        max-width: 180px;
    }
    
    .logo-title {
        font-size: 1.3rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .trust-container {
        grid-template-columns: 1fr;
    }
    
    .google-form-container {
        padding: 1.5rem;
    }
    
    .google-form-container iframe {
        width: 100% !important;
        max-width: 600px;
    }
    
    .contact-form-container {
        padding: 15px;
    }
    
    .contact-form-container h2 {
        font-size: 1.5rem;
    }
    
    /* Full screen modal on mobile */
    .modal {
        align-items: flex-start;
        padding: 0;
    }
    
    .modal-content {
        width: 100%;
        height: 100vh;
        max-width: none;
        margin: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .brand-story h2,
    .how-it-works h2,
    .services-opinion h2,
    .trust-signals h2,
    .money-back-guarantee h2,
    .start-date h2,
    .final-offer h2 {
        font-size: 2rem;
    }
    
    /* Countdown Timer Responsive */
    .countdown-timer,
    .countdown-timer-secondary {
        gap: 1rem;
    }
    
    .countdown-item,
    .countdown-item-secondary {
        min-width: 60px;
    }
    
    .countdown-number,
    .countdown-number-secondary {
        font-size: 2rem;
    }
    
    .countdown-label,
    .countdown-label-secondary {
        font-size: 0.8rem;
    }
    
    .countdown-container {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .countdown-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    /* Hero Countdown Responsive */
    .countdown-timer-hero {
        gap: 0.8rem;
    }
    
    .countdown-item-hero {
        min-width: 45px;
    }
    
    .countdown-number-hero {
        font-size: 1.5rem;
    }
    
    .countdown-label-hero {
        font-size: 0.7rem;
    }
    
    .countdown-container-hero {
        padding: 1.2rem;
        margin: 1.2rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo-title {
        font-size: 1.5rem;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .google-form-container {
        padding: 1rem;
    }
    
    .google-form-container iframe {
        width: 100% !important;
        max-width: 500px;
    }
    
    .contact-form-container {
        padding: 10px;
    }
    
    .contact-form-container h2 {
        font-size: 1.3rem;
    }
    
    /* Full screen modal on small mobile */
    .modal {
        align-items: flex-start;
        padding: 0;
    }
    
    .modal-content {
        width: 100%;
        height: 100vh;
        max-width: none;
        margin: 0;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .logo-image {
        height: 40px;
        max-width: 150px;
    }
    
    .logo-title {
        font-size: 1.1rem;
    }
    
    .money-back-guarantee h2 {
        font-size: 1.8rem;
    }
    
    .guarantee-description {
        font-size: 1rem;
    }
    
    .guarantee-highlight {
        font-size: 0.8em;
        padding: 3px 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.step,
.trust-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #D4AE3A, #b8942a);
    color: #0E2F44;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 174, 58, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 174, 58, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #D4AE3A;
    outline-offset: 2px;
} 

/* Mailchimp Form Styles */
#mc_embed_signup {
    background: transparent;
    padding: 0;
    margin: 0;
}

#mc_embed_signup h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0E2F44;
    margin-bottom: 1rem;
    text-align: center;
}

#mc_embed_signup .indicates-required {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

#mc_embed_signup .asterisk {
    color: #D4AE3A;
    font-weight: bold;
}

#mc_embed_signup .mc-field-group {
    margin-bottom: 1rem;
}

#mc_embed_signup .mc-field-group label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    color: #0E2F44;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

#mc_embed_signup .mc-field-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#mc_embed_signup .mc-field-group input:focus {
    outline: none;
    border-color: #D4AE3A;
    box-shadow: 0 0 0 3px rgba(212, 174, 58, 0.1);
}

#mc_embed_signup .mc-field-group input.required {
    border-left: 4px solid #D4AE3A;
}

#mc_embed_signup .clear {
    margin-top: 1.5rem;
}

#mc_embed_signup .button {
    background: linear-gradient(135deg, #D4AE3A 0%, #c19b2e 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: none;
    letter-spacing: normal;
}

#mc_embed_signup .button:hover {
    background: linear-gradient(135deg, #c19b2e 0%, #a88a25 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 174, 58, 0.3);
}

#mc_embed_signup .button:active {
    transform: translateY(0);
}

#mc_embed_signup .response {
    margin-top: 1rem;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
}

#mc_embed_signup #mce-error-response {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

#mc_embed_signup #mce-success-response {
    background: #efe;
    color: #363;
    border: 1px solid #cfc;
}

#mc_embed_signup .refferal_badge {
    display: none !important;
}

#mc_embed_signup p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

/* Hide Mailchimp branding */
#mc_embed_signup a[href*="mailchimp"] {
    display: none !important;
}

/* Responsive adjustments for Mailchimp form */
@media (max-width: 768px) {
    #mc_embed_signup h2 {
        font-size: 1.3rem;
    }
    
    #mc_embed_signup .mc-field-group input {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
    
    #mc_embed_signup .button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    #mc_embed_signup h2 {
        font-size: 1.2rem;
    }
    
    #mc_embed_signup .mc-field-group input {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    #mc_embed_signup .button {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
} 