.advantages-section {
    padding: 100px 20px;
    text-align: center;
}

.section-title {
    
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--brand-secondary);
    line-height: 1;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.section-title span {
    color: var(--brand-secondary-light);
}

/* Grid Layout */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Base Card Styling */
.adv-card {
    border-radius: 24px;
    padding: 40px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 26, 46, 0.08);
}

.adv-card h3 {
    
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--brand-secondary);
}

.adv-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Icon Positioning (Like the illustration in your image) */
.card-icon {
    align-self: flex-end;
    font-size: 3rem;
    opacity: 0.8;
}

/* Color Variations */
.teal-tint { background-color: #E6F7F1; } /* Based on brand-teal-soft */
.teal-tint .card-icon { color: var(--brand-teal); }

.secondary-tint { background-color: #F0F0F8; } /* brand-secondary-soft */
.secondary-tint .card-icon { color: var(--brand-secondary); }

.primary-tint { background: #FEF6EE; } /* brand-primary-soft */
.primary-tint .card-icon { color: var(--brand-primary); }

.chalk-tint { background-color: var(--chalk); border: 1px solid var(--border-subtle); }

.border-tint { background-color: var(--white); border: 1px solid var(--border); }

/* Image Card Styling */
.image-card {
    padding: 0;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Button */
.cta-wrapper {
    margin-top: 60px;
}

.btn-primary {
    background-color: #000; /* Black like the image */
    color: white;
    padding: 16px 48px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: var(--brand-secondary-light);
}

/* Responsiveness */
@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .adv-card {
        min-height: auto;
        padding: 30px;
    }
}

.how-it-works {
    padding: 70px 20px;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.title-bold {
    
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--brand-secondary);
    text-transform: uppercase;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 7px;
}

/* Layout */
.split-layout {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.visual-side, .steps-side {
    flex: 1;
}

/* Image & Stickers */
.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticker {
    position: absolute;
    padding: 8px 15px;
    
    font-weight: 900;
    color: #000;
    font-size: 1.2rem;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}

.s-1 { background: #00f2ff; bottom: 80px; right: 80px; transform: rotate(-5deg); }
.s-2 { background: #fdfd96; bottom: 50px; right: 20px; transform: rotate(3deg); }
.s-3 { background: #00ffcc; bottom: 15px; right: 40px; transform: rotate(-2deg); }

/* Step Cards */
.step-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #E6F7F1; /* Soft mint tint like the image */
    padding: 30px;
    border-radius: 18px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateX(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--brand-primary); /* Your Orange */
    color: var(--brand-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-info h3 {
    
    font-size: 1.2rem;
    color: var(--brand-secondary);
    margin-bottom: 5px;
}

.step-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
    .split-layout {
        flex-direction: column;
    }
    .visual-side {
        width: 100%;
        max-width: 500px;
    }
}

.partner-cta {
    padding: 60px 20px;
    background-color: var(--white);
}

.partner-container {
    max-width: 1100px;
    margin: 0 auto;
    background-color: var(--brand-secondary-light); /* The bright cyan from the image */
    border-radius: 24px;
    overflow: hidden;
    min-height: 450px;
    display: flex;
}

.partner-inner {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 0 60px;
    gap: 40px;
}

/* Text Styling */
.partner-text {
    flex: 1;
}

.partner-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--brand-primary); /* Charcoal Obsidian */
    line-height: 0.95;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.partner-subtitle {
    color: var(--brand-secondary-light);
    font-size: 1.1rem;
    max-width: 350px;
    line-height: 1.5;
}

/* The Globe Masking Logic */
.globe-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-mask {
    width: 350px;
    height: 350px;
    position: relative;
    /* This creates the 'globe' cutouts using clip-path or a mask */
    /* Using a standard circle for the base */
    clip-path: circle(50% at 50% 50%);
    background-color: rgba(255, 255, 255, 0.2);
}

.masked-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Optional: Overlaying a grid pattern to mimic the globe lines */
    mask-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIj48ZyBmaWxsPSJub25lIiBzdHJva2U9ImJsYWNrIiBzdHJva2Utd2lkdGg9IjUiPjxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjQ4Ii8+PHBhdGggZD0iTTAgNTBoMTAwTTUwIDB2MTAwIi8+PHBhdGggZD0iTTUwIDVhNDUgNDUgMCAwIDAgMCA5ME01MCA1YTQ1IDQ1IDAgMCAxIDAgOTAiLz48L2c+PC9zdmc+');
    mask-size: contain;
    mask-repeat: no-repeat;
}

/* Making it pop with your brand primary */
.partner-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--brand-primary); /* Sunset Orange Accent */
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .partner-inner {
        flex-direction: column;
        padding: 60px 30px;
        text-align: center;
    }
    
    .globe-mask {
        width: 250px;
        height: 250px;
    }
}
/* ── Signup Form Section ──────────────────────────────────── */
.partner-signup-section {
    padding: 80px 20px;
    background: var(--chalk);
}

.partner-signup-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.partner-signup-info h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--brand-secondary);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 18px;
}

.partner-signup-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.partner-benefit-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.partner-benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem;
    color: var(--text-main);
    font-weight: 500;
}

.benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-teal-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-teal);
    font-size: 1rem;
    flex-shrink: 0;
}

.partner-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(26, 26, 46, .10);
}

.partner-form-card h3 {
    font-size: 1.4rem;
    color: var(--brand-secondary);
    margin-bottom: 6px;
}

.partner-form-card .form-desc {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 28px;
}

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

.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: .9rem;
    color: var(--text-main);
    background: var(--white);
    transition: border-color .2s;
    outline: none;
}

.form-group input:focus {
    border-color: var(--brand-primary);
}

.form-group input.is-invalid {
    border-color: #ef4444;
}

.invalid-feedback {
    display: block;
    font-size: .78rem;
    color: #ef4444;
    margin-top: 4px;
}

.partner-submit-btn {
    width: 100%;
    padding: 13px;
    background: var(--brand-secondary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    margin-top: 8px;
}

.partner-submit-btn:hover {
    background: var(--brand-primary);
}

.form-signin-link {
    text-align: center;
    margin-top: 14px;
    font-size: .84rem;
    color: var(--text-muted);
}

.form-signin-link a {
    color: var(--brand-primary);
    font-weight: 600;
}

.partner-alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: .88rem;
    font-weight: 500;
}

.partner-alert.success {
    background: rgba(16, 185, 129, .1);
    border: 1px solid rgba(16, 185, 129, .3);
    color: #065f46;
}

.partner-alert.error {
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .25);
    color: #991b1b;
}

/* Live Stats Strip */
.partner-stats-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 32px 20px;
    background: var(--brand-secondary);
    flex-wrap: wrap;
}

.pstat-item {
    text-align: center;
    color: var(--white);
}

.pstat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary);
    display: block;
    line-height: 1;
}

.pstat-label {
    font-size: .78rem;
    opacity: .7;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .partner-signup-inner {
        grid-template-columns: 1fr;
    }
}

/* ── Hero modifier for partners page ─────────────────────── */
.destination-hero-container.partner {
    background: url('https://images.pexels.com/photos/6322867/pexels-photo-6322867.jpeg') no-repeat center center/cover;
}
