/* ==========================================
   Ubuntu Finance Design System & Style Sheet
   ========================================== */

/* Design Tokens & Theme Variables */
:root {
    /* Color Palette derived from logo.jpg & content.jpg */
    --primary-color: #0da1e6;       /* Bright Cyan Blue from logo F */
    --primary-hover: #0c8ec8;
    --primary-light: #e0f2fe;
    
    --secondary-color: #1a365d;     /* Dark Navy Blue from logo "UBUNTU" */
    --secondary-dark: #0f2544;
    --secondary-light: #2c5282;
    
    --accent-color: #d97706;        /* Warm Gold from flyer accents */
    --accent-hover: #b45309;
    --accent-light: #fef3c7;
    
    --bg-dark: #0f172a;             /* Dark Slate for Footer & Rich Elements */
    --bg-light: #f8fafc;            /* Ice white/grey for alternating sections */
    --white: #ffffff;
    
    /* Text Colors */
    --text-main: #334155;           /* Medium Slate for readable paragraphs */
    --text-dark: #0f172a;           /* Dark Slate for headings */
    --text-muted: #64748b;          /* Cool grey for metadata */
    --text-on-primary: #ffffff;
    
    /* UI Spacing & Roundness */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(13, 161, 230, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }

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

.subtitle {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header .section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.1) 80%, transparent);
    margin: 20px 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(13, 161, 230, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 161, 230, 0.4);
}

.btn-secondary {
    background-color: rgba(26, 54, 93, 0.05);
    color: var(--secondary-color);
    border: 2px solid rgba(26, 54, 93, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(26, 54, 93, 0.1);
    border-color: rgba(26, 54, 93, 0.2);
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.btn-gold:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-block {
    width: 100%;
}

.btn-spinner {
    display: none;
}

/* Loading State for submit button */
.btn.loading .btn-text {
    display: none;
}
.btn.loading .btn-spinner {
    display: inline-block;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13, 161, 230, 0.1);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    height: 90px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand-ubuntu {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.logo-text .brand-finance {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.logo-text .registration-nr {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--secondary-color);
    position: relative;
    padding: 6px 0;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

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

.nav-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(26, 54, 93, 0.2);
}

.nav-phone-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(13, 161, 230, 0.3);
}

/* Mobile Nav Toggle */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 8px;
}

.hamburger .bar {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--secondary-color);
    border-radius: 2px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    padding: 120px 0 80px 0;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(224, 242, 254, 0.5) 0%, rgba(255, 255, 255, 1) 90%);
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 161, 230, 0.08) 0%, rgba(255,255,255,0) 70%);
    top: -100px;
    right: -100px;
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ncr-badge-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(13, 161, 230, 0.2);
}

.ncr-badge-top .dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(13, 161, 230, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(13, 161, 230, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(13, 161, 230, 0); }
}

.hero-left h1 {
    font-size: 3.75rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-left h1 .highlight-text {
    color: var(--primary-color);
    position: relative;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-features-strip {
    display: flex;
    gap: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.feature-item i {
    background-color: var(--primary-light);
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Hero Right Floating Card */
.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(13, 161, 230, 0.1);
    position: relative;
    transition: var(--transition);
}

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

.hero-card .icon-box {
    width: 64px;
    height: 64px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 24px;
}

.hero-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.hero-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero-card .quick-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-color);
}

.hero-card .quick-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
}

.hero-card .quick-info i {
    color: var(--primary-color);
}

/* ==========================================
   ABOUT & PRINCIPLES SECTION
   ========================================== */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: rgba(13, 161, 230, 0.2);
    box-shadow: var(--shadow-md);
}

.about-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(13, 161, 230, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.about-card:hover .about-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.about-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.about-card p {
    color: var(--text-muted);
}

/* ==========================================
   REQUIREMENTS SECTION
   ========================================== */
.requirements-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.requirements-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Notice Banner Section */
.notice-section {
    padding: 60px 0 20px 0;
}


.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.checklist li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.check-icon {
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border: 1px solid rgba(13, 161, 230, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.check-text h4 {
    font-size: 1.15rem;
    color: var(--secondary-color);
    margin-bottom: 4px;
}

.check-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.warning-callout {
    background-color: #fffbeb;
    border-left: 4px solid var(--accent-color);
    border-radius: var(--radius-sm);
    padding: 18px 24px;
    margin-top: 32px;
    color: var(--accent-hover);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}

.warning-callout i {
    font-size: 1.25rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

/* Notice Block (Right Side) */
.info-block {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(13, 161, 230, 0.2);
    position: relative;
    overflow: hidden;
}

.info-block::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(13, 161, 230, 0.15) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.info-block .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(217, 119, 6, 0.2);
    border: 1px solid var(--accent-color);
    color: #f59e0b;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.info-block h3 {
    color: var(--white);
    font-size: 1.85rem;
    margin-bottom: 20px;
}

.info-block p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.info-block strong {
    color: var(--primary-color);
}

/* ==========================================
   OFFERINGS SECTION
   ========================================== */
.offerings-section {
    padding: 100px 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.offer-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 161, 230, 0.15);
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.offer-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.offer-card h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.offer-card p {
    color: var(--text-muted);
}

/* ==========================================
   AGENTS RECRUITMENT SECTION
   ========================================== */
.agents-section {
    padding: 100px 0;
}

.agents-card {
    background: linear-gradient(135deg, var(--white) 0%, rgba(224, 242, 254, 0.3) 100%);
    border: 1px solid rgba(13, 161, 230, 0.15);
    border-radius: var(--radius-lg);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.agents-content {
    padding: 64px;
}

.agents-content h2 {
    font-size: 2.25rem;
    color: var(--secondary-color);
    margin: 16px 0 20px 0;
}

.agents-content p {
    color: var(--text-main);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.agents-content p a {
    color: var(--primary-color);
    font-weight: 600;
}

.agents-image-box {
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.agents-image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(13, 161, 230, 0.4) 0%, rgba(0,0,0,0) 80%);
}

.icon-background {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.08);
    transform: rotate(-15deg);
    position: relative;
    z-index: 1;
}

.badge-primary {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: start;
}

.contact-info-panel h2 {
    font-size: 2.5rem;
    margin: 16px 0 20px 0;
    color: var(--secondary-color);
}

.contact-info-panel p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.c-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.c-text {
    display: flex;
    flex-direction: column;
}

.c-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.c-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-top: 4px;
}

.c-text strong a:hover {
    color: var(--primary-color);
}

.c-text small {
    color: var(--text-muted);
    margin-top: 2px;
}

/* Glassmorphic Callback Form */
.contact-form-wrapper {
    background-color: var(--white);
    border: 1px solid rgba(13, 161, 230, 0.15);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.85rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-form .form-instructions {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

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

.form-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-group label .required {
    color: #ef4444;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: var(--transition);
}

.input-wrapper input {
    width: 100%;
    padding: 14px 18px 14px 50px;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    background-color: var(--bg-light);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(13, 161, 230, 0.15);
}

.input-wrapper input:focus + i {
    color: var(--primary-color);
}

/* Custom Checkbox Design */
.checkbox-group {
    margin-top: 30px;
}

.checkbox-container {
    display: flex;
    position: relative;
    padding-left: 32px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--bg-light);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    transition: var(--transition);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.85rem !important;
    color: var(--text-main) !important;
    line-height: 1.5;
    font-weight: 400 !important;
}

/* ==========================================
   GOOGLE MAPS SECTION
   ========================================== */
.map-section {
    position: relative;
    line-height: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    border: none;
}

.map-overlay-card {
    position: absolute;
    bottom: 40px;
    left: 24px;
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(13, 161, 230, 0.15);
    max-width: 380px;
    z-index: 10;
    line-height: 1.6;
}

.map-overlay-card h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.map-overlay-card p {
    font-size: 0.9rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.map-overlay-card p:last-child {
    margin-bottom: 0;
}

.map-overlay-card i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer {
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px 0;
    border-top: 4px solid var(--primary-color);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background-color: var(--white);
    padding: 4px;
}

.footer-logo-text h3 {
    color: var(--white);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.footer-logo-text p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

/* NCA/NCR Compliant Badge Style */
.footer-compliance {
    display: flex;
    align-items: center;
    gap: 16px;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px 24px;
}
.ncr-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background-color: var(--white);
    padding: 4px;
}

.compliance-badge-text {
    display: flex;
    flex-direction: column;
}

.compliance-badge-text .comp-title {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
}

.compliance-badge-text .comp-reg {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2px;
}

.footer-middle {
    margin-bottom: 40px;
}

.compliance-statement {
    background-color: rgba(255, 255, 255, 0.02);
    border-left: 3px solid var(--accent-color);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.compliance-statement p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links a:hover {
    color: var(--white);
}

/* ==========================================
   MODAL DIALOG (CALLBACK SUCCESS)
   ========================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(13, 161, 230, 0.15);
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.75rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 24px;
}

.modal-content h2 {
    font-size: 1.85rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.modal-content p {
    color: var(--text-main);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.modal-content strong {
    color: var(--secondary-color);
}

.modal-reminders {
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    text-align: left;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-reminders p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.modal-reminders ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-reminders li {
    font-size: 0.85rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-reminders li i {
    color: var(--primary-color);
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features-strip {
        justify-content: center;
    }
    
    .hero-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .requirements-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .agents-card {
        grid-template-columns: 1fr;
    }
    
    .agents-image-box {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 80px;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        padding: 40px 24px;
        gap: 24px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding: 80px 0 60px 0;
    }
    
    .hero-left h1 {
        font-size: 2.75rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .map-overlay-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin: 20px auto 0 auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-features-strip {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .agents-content {
        padding: 32px 24px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .modal-content {
        padding: 32px 20px;
    }
}
