/* ===============================================
   GHANA MONTH LANDING PAGE - UPDATED DESIGN
   New Color Palette: #495f6b
   =============================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Colors - Updated Palette with #495f6b */
    --primary-blue: #495f6b;
    --primary-dark: #364854;
    --primary-light: #5d7480;
    --accent-teal: #4a9d9c;
    --accent-light-blue: #7da3b3;
    
    --accent-red: #CE1126;
    --accent-green: #006B3F;
    --accent-yellow: #FCD116;
    
    --bg-white: #FFFFFF;
    --bg-cream: #FAFAF8;
    --bg-light: #F5F7F8;
    --text-dark: #1A1A1A;
    --text-gray: #4A4A4A;
    --text-light-gray: #7A7A7A;
    --border-light: #E8E8E8;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #495f6b 0%, #5d7480 50%, #495f6b 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.95) 100%);
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 5%;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
    --font-accent: 'Montserrat', sans-serif;
    
    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-hard: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 32px rgba(73, 95, 107, 0.25);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== LANGUAGE TOGGLE BUTTON ===== */
.language-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    box-shadow: var(--shadow-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

.language-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(73, 95, 107, 0.35);
}

.lang-icon {
    font-size: 20px;
}

.lang-text {
    letter-spacing: 1px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--primary-blue);
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 24px;
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: #FFFFFF !important;
    border-radius: 30px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 5% 80px;
    overflow: hidden;
    background: var(--bg-white);
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(73, 95, 107, 0.1);
    border: 1px solid var(--accent-light-blue);
    border-radius: 30px;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 40px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -2px;
    color: var(--text-dark);
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(73, 95, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: rgba(73, 95, 107, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-gray);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--primary-blue), transparent);
}

/* ===== IMAGE BANNER ===== */
.image-banner {
    padding: 60px 0;
    background: var(--bg-cream);
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.banner-image {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-image:hover img {
    transform: scale(1.05);
}

/* ===== SECTION COMMON STYLES ===== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin-bottom: 16px;
    padding: 8px 20px;
    background: rgba(73, 95, 107, 0.1);
    border-radius: 20px;
    border: 1px solid var(--accent-light-blue);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== PROPERTIES SECTION (NEW) ===== */
.properties-section {
    background: var(--bg-white);
    padding: 100px 0;
    width: 100%;
}

.properties-section .container {
    padding: 0;
    width: 100%;
}

.properties-section .section-header {
    padding: 0 5%;
    margin-bottom: 60px;
    text-align: center;
}

.properties-card {
    width: 100%;
    margin: 0;
    padding: 80px 5%;
    background: var(--bg-light);
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    text-align: center;
}

.properties-card:hover {
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.properties-content h3 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.properties-content p {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 48px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.properties-content .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}
    box-shadow: 0 16px 56px rgba(73, 95, 107, 0.4);
}

.btn-properties .arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.btn-properties:hover .arrow {
    transform: translateX(5px);
}

.properties-note {
    margin-top: 30px;
    font-size: 14px;
    color: var(--text-light-gray);
    font-style: italic;
}

/* ===== WHAT IS GHANA MONTH SECTION ===== */
.what-is {
    background: var(--bg-white);
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.feature-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-card:hover .feature-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.8), transparent);
}

.image-caption {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-light-blue);
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    gap: 30px;
}

.feature-item {
    padding: 30px;
    background: var(--bg-cream);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--bg-light);
    border-color: var(--accent-light-blue);
    transform: translateX(10px);
    box-shadow: var(--shadow-soft);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    border-radius: 50%;
    overflow: hidden;
}

.feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-item h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-gray);
    font-size: 16px;
}

/* ===== EXPERIENCE GALLERY ===== */
.experience-section {
    background: var(--bg-cream);
}

.experience-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 300px;
    gap: 20px;
    margin-top: 60px;
}

.exp-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-soft);
}

.exp-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.exp-card.tall {
    grid-row: span 2;
}

.exp-card:hover {
    transform: translateY(-8px);
    z-index: 10;
    box-shadow: var(--shadow-hard);
}

.exp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.exp-card:hover .exp-image {
    transform: scale(1.1);
}

.exp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.exp-card:hover .exp-overlay {
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.3) 100%);
}

.exp-content {
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.exp-card:hover .exp-content {
    transform: translateY(-10px);
}

.exp-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: var(--gradient-primary);
    padding: 6px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.exp-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.exp-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== SUCCESS SECTION ===== */
.success-section {
    background: var(--bg-white);
}

.success-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.success-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.success-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.success-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.success-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    padding: 20px 30px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
}

.success-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.success-label {
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.success-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.success-image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.highlight-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-blue);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.highlight-box h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.success-stats-grid {
    display: grid;
    gap: 24px;
}

.success-stat {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--bg-cream);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.success-stat:hover {
    background: var(--bg-light);
    border-color: var(--accent-light-blue);
    transform: translateX(10px);
    box-shadow: var(--shadow-soft);
}

.stat-icon-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.stat-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-info h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.stat-info p {
    font-size: 15px;
    color: var(--text-gray);
}

/* ===== PARTNERSHIP SECTION (HORIZONTAL STEPS) ===== */
.partnership-section {
    background: var(--bg-cream);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-soft);
    transform: translateX(8px);
}

.step-marker {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
}

.step-details {
    flex: 1;
}

.step-details h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.step-list {
    list-style: none;
}

.step-list li {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.step-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 600;
}

.partnership-cta {
    text-align: center;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: var(--bg-white);
    border: 2px solid var(--accent-light-blue);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.cta-box h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.4;
}

.cta-box p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== VALUE SECTION ===== */
.value-section {
    background: var(--bg-white);
    padding: 80px 0;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.value-card {
    background: var(--bg-cream);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.value-card.gold {
    background: var(--bg-light);
    border-color: var(--primary-blue);
}

.value-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.value-card:hover .value-image img {
    transform: scale(1.05);
}

.value-header {
    padding: 40px 40px 0 40px;
}

.value-header h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-dark);
}

.guarantee-badge {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.value-list {
    padding: 30px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    color: var(--text-gray);
}

.value-item.highlight {
    background: rgba(73, 95, 107, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--accent-light-blue);
}

.check {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 700;
}

.value-badge {
    margin-left: auto;
    background: var(--gradient-primary);
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 12px;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.guarantee-content {
    padding: 0 40px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.guarantee-text {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
}

.guarantee-bonus {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.5);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--accent-light-blue);
}

.bonus-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.bonus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guarantee-bonus p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

.guarantee-bonus strong {
    color: var(--primary-blue);
}

.guarantee-footer {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--accent-light-blue);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--bg-cream);
    padding: 100px 5%;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.urgency-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(206, 17, 38, 0.1);
    border: 2px solid rgba(206, 17, 38, 0.3);
    padding: 16px 32px;
    border-radius: 40px;
    margin-bottom: 40px;
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-red);
}

.urgency-pulse {
    width: 10px;
    height: 10px;
    background: var(--accent-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 64px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

.form-container {
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-soft);
}

.partnership-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.form-group input {
    padding: 16px 20px;
    background: var(--bg-cream);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(73, 95, 107, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light-gray);
}

.btn-submit {
    margin-top: 16px;
    padding: 20px 40px;
    background: var(--gradient-primary);
    color: #FFFFFF;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-primary);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 56px rgba(73, 95, 107, 0.4);
}

.btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-arrow {
    transform: translateX(5px);
}

.form-disclaimer {
    font-size: 20px;
    color: var(--text-light-gray);
    text-align: center;
    line-height: 1.6;
}

.deadline-reminder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
    background: var(--bg-white);
    border: 2px solid var(--accent-light-blue);
    border-radius: 16px;
}

.deadline-icon-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.deadline-icon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deadline-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.deadline-text strong {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
}

.deadline-text span {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-white);
    padding: 80px 5% 40px;
    border-top: 2px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    color: var(--primary-blue);
    margin: 20px 0;
}

.footer-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 500px;
}

.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-dark);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.footer-note {
    font-family: var(--font-accent);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-blue);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .steps-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .split-content,
    .success-content,
    .value-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .banner-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 350px;
    }
    
    .exp-card.large,
    .exp-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-divider {
        display: none;
    }

    .steps-horizontal {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .properties-cta-box {
        padding: 40px 30px;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero {
        min-height: 80vh;
        padding: 120px 5% 60px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }

    .properties-card {
        padding: 40px 25px;
    }

    .properties-content h3 {
        font-size: 24px;
    }

    .form-container {
        padding: 30px 20px;
    }
    
    .cta-box {
        padding: 40px 30px;
    }

    .language-toggle {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }

    .logo-image {
        height: 40px;
    }
}