/* Base Styles and Resets */
:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFC107;
    --gold-accent: #FFB300;
    --dark-text: #333333;
    --light-text: #FFFFFF;
    --light-bg: #F9F7F2;
    --transition-smooth: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--dark-text);
    transition: var(--transition-smooth);
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Gold Gradient Pattern Background */
.gold-gradient-bg {
    background: repeating-linear-gradient(
        45deg,
        var(--primary-gold),
        var(--secondary-gold) 10px,
        var(--primary-gold) 10px,
        var(--primary-gold) 20px
    );
}

/* Button Styles with Stamp Effect */
.btn-stamp {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(145deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-text);
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-stamp:hover {
    transform: scale(1.05);
    box-shadow: inset 0 -1px 3px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-stamp.primary {
    background: linear-gradient(145deg, var(--primary-gold), var(--secondary-gold));
}

.btn-stamp.secondary {
    background: #FFFFFF;
    border: 1px solid var(--gold-accent);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
}

/* Header Styles */
.header {
    padding: 1.5rem 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.nav-menu ul {
    display: flex;
    gap: 1.5rem;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover {
    color: var(--secondary-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('https://images.unsplash.com/photo-1546412414-e1885259563a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    padding-right: 2rem;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.hero-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--gold-accent);
    border-radius: 12px;
    z-index: -1;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Benefits Section */
.value-proposition {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border: 1px dashed var(--gold-accent);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    margin: 0 auto 1.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    padding: 15px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: #F4F0E5;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 209, 0, 0.05) 10px,
        rgba(255, 209, 0, 0.05) 20px
    );
    z-index: 0;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.step-card {
    background: white;
    padding: 2rem;
    border: 1px dashed var(--gold-accent);
    border-radius: 8px;
    width: 30%;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.step-arrow {
    font-size: 2rem;
    color: var(--gold-accent);
}

.process-image {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-image img {
    border-radius: 12px;
    max-height: 400px;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Exclusive Offers Section */
.exclusive-offers {
    padding: 5rem 0;
    background: white;
}

.offers-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
}

.offers-slider::-webkit-scrollbar {
    height: 0;
    width: 0;
}

.offer-card {
    min-width: calc(33.333% - 1.4rem);
    border: 1px dashed var(--gold-accent);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    scroll-snap-align: start;
    transition: var(--transition-smooth);
}

.offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.offer-image {
    height: 200px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-content {
    padding: 1.5rem;
}

.offer-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(145deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-text);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 1rem;
}

.offer-content h3 {
    margin-bottom: 0.5rem;
}

.offer-tag {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--gold-accent);
    font-weight: 600;
}

.offers-navigation {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.offer-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #DDD;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.offer-nav-dot.active {
    background: var(--gold-accent);
    transform: scale(1.2);
}

/* Satisfaction Guarantee Section */
.satisfaction-guarantee {
    padding: 5rem 0;
    background: #F9F7F2;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.guarantee-points {
    margin: 1.5rem 0;
}

.guarantee-points li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.guarantee-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-accent);
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #F9F7F2;
    padding: 2rem;
    border: 1px dashed var(--gold-accent);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-accent);
}

.testimonial-profile h4 {
    margin-bottom: 0.2rem;
}

.testimonial-profile p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    color: var(--gold-accent);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Membership Tiers Section */
.membership-tiers {
    padding: 5rem 0;
    background: #F4F0E5;
    position: relative;
}

.membership-tiers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 209, 0, 0.05) 10px,
        rgba(255, 209, 0, 0.05) 20px
    );
    z-index: 0;
}

.tiers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.tier-card {
    background: white;
    border: 1px dashed var(--gold-accent);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
}

.tier-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.tier-card.featured {
    border: 2px solid var(--gold-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tier-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(145deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-text);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 30px;
}

.tier-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--gold-accent);
}

.tier-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.tier-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-text);
}

.tier-price .period {
    font-size: 0.9rem;
    opacity: 0.7;
}

.tier-features ul {
    margin-bottom: 2rem;
}

.tier-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-accent);
}

.tier-card .btn-stamp {
    width: 100%;
}

/* Partners Map Section */
.partners-map {
    padding: 5rem 0;
    background: white;
}

.map-container {
    position: relative;
    margin-bottom: 2rem;
}

.map-container img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-hotspot {
    position: absolute;
    z-index: 2;
    cursor: pointer;
}

.hotspot-dot {
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold-accent);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--gold-accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 179, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 179, 0, 0);
    }
}

.hotspot-popup {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.hotspot-popup::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: white transparent transparent;
}

.map-hotspot:hover .hotspot-popup {
    opacity: 1;
    visibility: visible;
    bottom: 35px;
}

.partners-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.category-tag {
    padding: 0.5rem 1.5rem;
    background: #F4F0E5;
    border: 1px dashed var(--gold-accent);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.category-tag:hover {
    background: linear-gradient(145deg, var(--primary-gold), var(--secondary-gold));
    border-color: transparent;
}

/* Application Form Section */
.application-form {
    padding: 5rem 0;
    background: #F4F0E5;
    position: relative;
}

.application-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 209, 0, 0.05) 10px,
        rgba(255, 209, 0, 0.05) 20px
    );
    z-index: 0;
}

.form-content {
    background: white;
    border: 1px dashed var(--gold-accent);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #DDD;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 2px rgba(255, 179, 0, 0.2);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group.checkbox input {
    width: auto;
}

.form-group.checkbox label {
    margin: 0;
}

.contact-info {
    background: white;
    border: 1px dashed var(--gold-accent);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-method h4 {
    margin-bottom: 0.3rem;
}

.contact-method p {
    margin: 0;
    font-size: 0.9rem;
}

/* Footer Styles */
.footer {
    background: #333;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-accent);
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: white;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--gold-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
    
    .hero-content,
    .guarantee-content {
        grid-template-columns: 1fr;
    }
    
    .hero-text {
        padding-right: 0;
        order: 1;
    }
    
    .hero-image {
        order: 0;
        margin-bottom: 2rem;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-card {
        width: 100%;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-menu ul li {
        margin: 0.8rem 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .offer-card {
        min-width: 85%;
    }
}

@media (max-width: 576px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .form-content,
    .contact-info {
        padding: 2rem 1.5rem;
    }
} 