/* ==========================================================================
   DESIGN SYSTEM FOR CRUISE WEDDING GROUPS
   Colors:
   - Primary Deep Navy: #0a2540
   - Accent Warm Gold:  #d4af37
   - Soft Champagne:     #fcf8f2
   - Light Gray/Silver: #e2e8f0
   - Off-White:         #f8fafc
   ========================================================================== */

:root {
    --primary-navy: #0a2540;
    --primary-navy-light: #1e3a5f;
    --accent-gold: #c5a059;
    --accent-gold-hover: #b48e47;
    --bg-champagne: #fcf8f2;
    --bg-white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;
    --border-color: #e2e8f0;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.25;
}

a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Header & Navigation */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
    font-family: 'Playfair Display', serif;
}

.logo-accent {
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo-main {
    font-weight: 400;
    color: var(--primary-navy);
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--primary-navy);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-btn {
    background-color: var(--accent-gold);
    color: var(--text-white) !important;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

.nav-cta-btn:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(197, 160, 89, 0.4);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-navy);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(10,37,64,0.85) 0%, rgba(10,37,64,0.6) 100%), url('https://images.unsplash.com/photo-1548574505-5e239809ee19?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    padding: 180px 20px 120px;
    text-align: center;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    color: var(--text-white);
    font-size: 48px;
    max-width: 900px;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
}

.hero-description {
    font-size: 18px;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.2s ease;
}

.btn-primary-gold {
    background-color: var(--accent-gold);
    color: var(--text-white);
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.btn-primary-gold:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.5);
    color: var(--text-white);
}

.btn-secondary-outline {
    border: 2px solid var(--text-white);
    color: var(--text-white);
    padding: 12px 33px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-secondary-outline:hover {
    background-color: var(--text-white);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

/* Sections */
.section-padding {
    padding: 90px 20px;
}

.section-bg-champagne {
    background-color: var(--bg-champagne);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tagline {
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-desc {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Offers Toolbar Component */
.offers-toolbar-container {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border-color);
}

.toolbar-header {
    background-color: var(--primary-navy);
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--accent-gold);
}

.toolbar-title {
    color: var(--text-white);
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toolbar-title i {
    color: var(--accent-gold);
}

.tab-nav-wrapper {
    display: flex;
    gap: 10px;
}

.toolbar-tab-select {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: var(--transition-smooth);
}

.toolbar-tab-select option {
    background-color: var(--primary-navy);
    color: var(--text-white);
}

.toolbar-tab-select:focus, .toolbar-tab-select:hover {
    border-color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.15);
}

.tab-nav-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    border-bottom: 3px solid transparent;
    transition: var(--transition-smooth);
}

.tab-nav-btn:hover {
    color: var(--text-white);
}

.tab-nav-btn.active {
    color: var(--accent-gold);
    border-bottom-color: var(--accent-gold);
}

.offers-grid-pane {
    padding: 30px;
    display: none;
}

.offers-grid-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Offers Grid & Cards */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.offer-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.offer-img-wrapper {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.offer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-navy);
    color: var(--text-white);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border-left: 3px solid var(--accent-gold);
}

.offer-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.offer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.offer-logo {
    height: 24px;
    object-fit: contain;
}

.offer-brand-name {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.offer-title {
    font-size: 20px;
    margin-bottom: 10px;
    height: 54px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.offer-details-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-details-item i {
    color: var(--accent-gold);
    width: 16px;
    text-align: center;
}

.offer-action {
    margin-top: auto;
}

.btn-card-action {
    display: block;
    text-align: center;
    background-color: var(--primary-navy);
    color: var(--text-white) !important;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

.btn-card-action:hover {
    background-color: var(--primary-navy-light);
}

.no-offers-msg {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    grid-column: 1 / -1;
}

/* Multi-step Inquiry Form / Lead Capturer */
.calc-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    position: relative;
}

.step-indicator::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step-circle {
    width: 32px;
    height: 32px;
    background-color: var(--border-color);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-light);
    position: relative;
    z-index: 2;
    background-color: var(--bg-white);
    transition: var(--transition-smooth);
}

.step-circle.active {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 700;
}

.step-circle.completed {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--text-white);
}

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

.form-label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--primary-navy);
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-champagne);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--accent-gold);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
}

.btn-form-prev {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

.btn-form-prev:hover {
    background-color: var(--bg-champagne);
    color: var(--text-dark);
}

.btn-form-next, .btn-form-submit {
    background-color: var(--accent-gold);
    color: var(--text-white);
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-form-next:hover, .btn-form-submit:hover {
    background-color: var(--accent-gold-hover);
}

/* Side-by-Side Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background-color: var(--bg-white);
}

.comp-table th, .comp-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.comp-table th {
    background-color: var(--primary-navy);
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 16px;
}

.comp-table td strong {
    color: var(--primary-navy);
}

.comp-table tbody tr:hover td {
    background-color: var(--bg-champagne);
}

.badge-benefit {
    background-color: rgba(197,160,89,0.15);
    color: var(--accent-gold-hover);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

/* FAQ Accordion Component */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-white);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-question i {
    font-size: 14px;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 300px;
    border-top-color: var(--border-color);
}

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

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--bg-champagne);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.1);
}

.step-card-num {
    display: block;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.step-card-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card-desc {
    font-size: 14px;
    color: var(--text-light);
}

/* Call to Action Pane */
.cta-pane {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
    color: var(--text-white);
    padding: 70px 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-pane h2 {
    color: var(--text-white);
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-pane p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 20px 0;
    border-top: 5px solid var(--accent-gold);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.7);
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--accent-gold);
    color: var(--text-white);
}

.footer-title {
    color: var(--text-white);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

.footer-links-list, .footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links-list a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-list i {
    color: var(--accent-gold);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    background-color: #051629;
    padding: 30px 20px;
    margin: 0 -20px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    font-size: 12px;
}

.copyright {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.copyright a {
    color: var(--accent-gold);
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.copyright a:hover {
    color: var(--text-white);
}

.disclaimer {
    color: rgba(255, 255, 255, 0.3);
    max-width: 800px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

/* Navigation Dropdowns */
.nav-dropdown {
    position: relative;
}

.nav-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: var(--transition-smooth);
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    list-style: none;
    z-index: 1100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent var(--border-color) transparent;
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 7px;
    border-style: solid;
    border-color: transparent transparent var(--bg-white) transparent;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-navy);
    transition: var(--transition-smooth);
    text-align: left;
}

.dropdown-menu a:hover {
    background-color: var(--bg-champagne);
    color: var(--accent-gold);
    padding-left: 25px;
}

.dropdown-menu a.dropdown-see-more {
    border-top: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--accent-gold);
    background-color: rgba(10, 37, 64, 0.02);
}

.dropdown-menu a.dropdown-see-more:hover {
    background-color: var(--bg-champagne);
    color: var(--primary-navy);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .nav-list {
        display: none; /* Mobile menu toggled */
    }
    
    .main-navigation.active .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        border-top: 1px solid var(--border-color);
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 20px;
    }
    
    .dropdown-menu {
        position: static;
        transform: none !important;
        box-shadow: none;
        border: none;
        background-color: rgba(10, 37, 64, 0.03);
        opacity: 1;
        visibility: visible;
        display: none;
        padding: 5px 0;
        margin-left: 20px;
        min-width: unset;
        width: 100%;
    }
    
    .dropdown-menu::before, .dropdown-menu::after {
        display: none;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand-section {
        grid-column: span 2;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand-section {
        grid-column: span 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.btn-more-offers {
    background-color: var(--accent-gold);
    color: var(--text-white);
    border: 2px solid var(--accent-gold);
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
    box-shadow: var(--shadow-md);
    font-family: 'Montserrat', sans-serif;
}

.btn-more-offers:hover {
    background-color: var(--primary-navy);
    color: var(--text-white);
    border-color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .partners-grid > div:last-child {
        margin-top: 25px;
    }
}

