:root {
    --primary-green: #154724;
    --accent-gold: #D4AF37;
    --soft-bg: #F9FAFB;
    --text-muted: #A6A6A6;
}

.text-muted {
    color: var(--text-muted);
    font-family: "Work Sans", sans-serif !important;
}

body {
    font-family: 'Inter', 'Lato', sans-serif;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 50%, #F1F5F9 100%);
    color: #111827;
}

.playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.gold-text {
    color: var(--accent-gold);
}

.green-text {
    color: var(--primary-green);
}

/* Hero Section */
.promo-hero {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.promo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 0 20px;
}

.promo-hero h1 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.promo-hero p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Promo Grid */
.section-padding {
    padding: 80px 0;
}

.promo-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.promo-img-wrapper {
    position: relative;
    height: 280px;
}

.promo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-gold);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.promo-badge svg {
    width: 20px;
    height: 20px;
}

.promo-content {
    padding: 32px;
    text-align: left;
}

.promo-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.promo-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    height: 80px;
    overflow: hidden;
    margin-bottom: 20px;
}

.promo-footer {
    text-align: center;
    border-top: 1px solid #F3F4F6;
    padding-top: 20px;
}

.promo-price-info {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-style: italic;
}

.btn-promo {
    background: linear-gradient(180deg, #D1A139 0%, #F6BD43 100%);
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    width: 100%;
}

.btn-promo:hover {
    background-color: #C19A2E;
    color: white;
    transform: translateY(-2px);
}

/* Modal Styling */
.modal-content {
    border-radius: 24px; /* Matches Figma/Screenshot */
    border: none;
    padding: 32px;
}

.modal-header {
    border: none;
    padding: 0 0 24px 0;
    position: relative;
    background: transparent;
}

.modal-title {
    color: #111827;
    font-size: 18px;
    font-family: 'Work Sans', sans-serif !important;
}

.modal-header .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #111827;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.modal-header .close:hover {
    opacity: 1;
}

.modal-body {
    padding: 0;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #111827;
    margin-bottom: 8px;
    font-size: 16px;
    font-family: 'Work Sans', sans-serif !important;
}

.form-control, .form-select {
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    background-color: #F9FAFB;
    width: 100%;
    margin-bottom: 20px;
    transition: all 0.2s;
    font-family: 'Work Sans', sans-serif !important;
}

.form-control:focus, .form-select:focus {
    background-color: white;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.modal-footer-custom {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.btn-cancel {
    background: white;
    border: 1px solid #E5E7EB;
    color: #111827;
    border-radius: 12px;
    padding: 12px 0;
    font-weight: 600;
    flex: 1;
}

.btn-submit-modal {
    background: var(--accent-gold);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 0;
    font-weight: 600;
    flex: 1;
    transition: all 0.3s ease;
}

.btn-submit-modal:hover {
    background-color: #C19A2E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Success Modal */
.success-icon-wrap {
    text-align: center;
    margin-bottom: 24px;
}

.success-icon-wrap img {
    width: 100px;
    height: 100px;
}

.success-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: center;
}

.success-text {
    color: #4B5563;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 991px) {
    .promo-content {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .promo-hero {
        height: 260px;
    }

    .promo-hero h1 {
        font-size: 1.5rem;
    }

    .promo-hero p {
        font-size: 0.95rem;
    }

    .section-padding {
        padding: 40px 0;
    }

    .promo-img-wrapper {
        height: 200px;
    }

    .promo-content {
        padding: 20px;
    }

    /* Allow description to expand naturally on mobile */
    .promo-description {
        height: auto;
        overflow: visible;
    }
}