/* ============================================
   HOUZZHUNT MORTGAGE - PREMIUM STYLESHEET
   Modern, Premium UI with Advanced Animations
   Bootstrap 5.3 Enhanced
   ============================================ */

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ============================================
   CSS VARIABLES & ROOT DEFINITIONS
   ============================================ */
:root {
    /* Primary Colors */
    --primary: #1a0a2e;
    --primary-light: #2d1b4e;
    --primary-glow: #6b3fa0;
    --primary-gradient: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #4a2c7a 100%);

    /* Accent Colors */
    --gold: #c9a227;
    --gold-light: #e8c547;
    --gold-dark: #a8871f;
    --gold-gradient: linear-gradient(135deg, #c9a227 0%, #e8c547 50%, #f5d76e 100%);

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #faf8ff;
    --light-gray: #f5f3fa;
    --medium-gray: #e8e5f0;
    --dark-gray: #6b7280;
    --text-dark: #1f2937;
    --text-light: #9ca3af;

    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Typography */
    --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 50px 0;
    --section-padding-sm: 60px 0;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --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);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(107, 63, 160, 0.3);
    --shadow-gold: 0 0 30px rgba(201, 162, 39, 0.4);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   BASE STYLES & RESET
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul{
    padding-left: 0;
}

ul, ol {
    list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.text-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(201, 162, 39, 0.2);
    margin-bottom: 1.5rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    max-width: 650px;
    margin: 0 auto 3rem;
    color: var(--dark-gray);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(201, 162, 39, 0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    padding: 1rem 0;
    transition: var(--transition-base);
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(26, 10, 46, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand img{
    height: 50px;
}

.navbar-brand .logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.navbar-brand .logo-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.navbar-brand .brand-text span {
    color: var(--gold);
}

.navbar-nav .nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition-base);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-base);
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    width: 44px;
    height: 44px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-cta {
    background: var(--gold-gradient) !important;
    color: var(--primary) !important;
    border-radius: var(--radius-full) !important;
    padding: 0.625rem 1.5rem !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-gold);
    transition: var(--transition-base) !important;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
}

.nav-cta::after {
    display: none !important;
}

.modal-dialog{
    max-width: 700px;
}

.modal.show .modal-dialog .iti--separate-dial-code .iti__selected-dial-code {
    color: #1a0a2e;
    font-weight: 500;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 162, 39, 0.5);
    color: var(--primary);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 63, 160, 0.4);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
}

.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--primary-gradient);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    animation: floatShape 20s ease-in-out infinite;
}

.hero-shape-1 {
    width: 700px;
    height: 700px;
    top: -250px;
    right: -200px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -150px;
    background: radial-gradient(circle, rgba(107, 63, 160, 0.2) 0%, transparent 70%);
    animation-delay: -7s;
}

.hero-shape-3 {
    width: 350px;
    height: 350px;
    top: 40%;
    left: 55%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    animation-delay: -14s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(40px, -40px) scale(1.05);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.95);
    }
    75% {
        transform: translate(25px, 40px) scale(1.02);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.1s both;
    line-height: 1.1;
}

.hero-title .highlight {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 540px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stat {
    text-align: left;
    position: relative;
    padding-right: 2.5rem;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-stat-value {
    /* font-family: var(--font-heading); */
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.hero-form-title {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.hero-form-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-label-light {
    color: rgba(255, 255, 255, 0.9);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-glow);
    box-shadow: 0 0 0 4px rgba(107, 63, 160, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
}

.form-control-glass {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.form-control-glass::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control-glass:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
    color: #fff;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Phone Input Styles */
.iti {
    width: 100%;
}

.iti__flag-container {
    padding-left: 0.5rem;
}

.iti__selected-flag {
    background: transparent !important;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: #fff;
    font-weight: 500;
}

.iti__country-list {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--medium-gray);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--section-padding);
    background: var(--off-white);
    position: relative;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: var(--transition-base);
    border: 1px solid transparent;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--medium-gray);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--gold-gradient);
    box-shadow: var(--shadow-gold);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon svg {
    color: var(--primary);
    transform: scale(1.1);
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--dark-gray);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: var(--section-padding);
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26, 10, 46, 0.8), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover .service-image-overlay {
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold-gradient);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-content {
    padding: 15px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -45px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    display: none;
}

.service-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--dark-gray);
    font-size: 0.9375rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 0;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--light-gray);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-base);
}

.service-link:hover {
    color: var(--gold);
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* ============================================
   CALCULATOR SECTION
   ============================================ */
.calculator-section {
    padding: var(--section-padding);
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(107, 63, 160, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.calculator-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.calculator-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.calculator-header .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.calculator-header .section-title {
    color: var(--white);
}

.calculator-header .section-description {
    color: rgba(255, 255, 255, 0.75);
}

/* .calculator-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    z-index: 2;
} */

.calculator-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 20px;
    height: 100%;
}

.calculator-card-header {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 10px;
}

.calculator-card-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 0;
}

.input-group-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.625rem;
}

.toggle-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.toggle-btn {
    padding: 5px 1rem;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.toggle-btn:hover {
    border-color: var(--primary-glow);
}

.toggle-btn.active {
    background: var(--primary-gradient);
    border-color: var(--primary);
    color: var(--white);
}

.toggle-btn svg {
    width: 18px;
    height: 18px;
}

.currency-input-wrapper {
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--primary);
}

.currency-input {
    padding: 5px;
    padding-left: 3.5rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.range-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.range-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--primary-glow), var(--gold));
    border-radius: 4px;
    outline: none;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.custom-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-lg);
}

.custom-range::-moz-range-thumb {
    width: 26px;
    height: 26px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
}

.info-box {
    background: rgba(201, 162, 39, 0.08);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.25rem;
    margin-top: 0;
}

.info-box h4 {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box h4 svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
}

.info-box ul {
    margin: 0;
    padding: 0;
}

.info-box li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.375rem 0;
    font-size: 0.8125rem;
    color: var(--dark-gray);
}

.info-box li svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
    flex-shrink: 0;
}

.result-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.result-card.one{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 60%);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.result-card > * {
    position: relative;
    z-index: 1;
}

.result-icon {
    width: 48px;
    height: 48px;
    /* background: rgba(255, 255, 255, 0.15); */
    background-color: rgb(244 238 255);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.result-icon svg {
    width: 24px;
    height: 24px;
    color: #333;
}

.result-label {
    font-size: 0.8125rem;
    opacity: 0.85;
    margin-bottom: 0.25rem;
    color: #333;
}

.result-value {
    /* font-family: var(--font-heading); */
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
}

.breakdown-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.breakdown-title {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.breakdown-title svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.9375rem;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.breakdown-item:hover {
    padding-left: 0.5rem;
    background: rgba(45, 27, 78, 0.02);
}

.breakdown-item:last-child {
    border-bottom: none;
    border-top: 2px solid var(--primary);
    margin-top: 0.75rem;
    padding-top: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.breakdown-value {
    font-weight: 600;
    color: var(--primary);
}

.download-btn {
    width: 100%;
    margin-top: 1rem;
    background: var(--gold-gradient);
    color: var(--primary);
    font-weight: 700;
}

.download-btn:hover {
    box-shadow: 0 12px 30px rgba(201, 162, 39, 0.4);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--off-white), var(--white));
}

.process-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.process-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.steps-nav {
    position: relative;
    margin-bottom: 3rem;
}

.steps-progress {
    position: absolute;
    top: 35px;
    left: 5%;
    right: 5%;
    height: 3px;
    background: var(--light-gray);
    border-radius: 2px;
    z-index: 0;
}

.steps-progress-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.steps-list {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.step-circle {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 3px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    position: relative;
}

.step-number {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition-base);
}

.step-icon-inner {
    position: absolute;
    opacity: 0;
    transition: var(--transition-base);
}

.step-icon-inner svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.step-item:hover .step-circle,
.step-item.active .step-circle {
    background: var(--primary-gradient);
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(45, 27, 78, 0.3);
}

.step-item:hover .step-number,
.step-item.active .step-number {
    opacity: 0;
}

.step-item:hover .step-icon-inner,
.step-item.active .step-icon-inner {
    opacity: 1;
}

.step-label {
    margin-top: 1rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    /* max-width: 80px; */
    transition: var(--transition-base);
}

.step-item:hover .step-label,
.step-item.active .step-label {
    color: var(--primary);
    font-weight: 600;
}

.step-details {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.step-details.active {
    display: block;
}

.step-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.step-text {
    padding: 1rem;
}

.step-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(45, 27, 78, 0.06);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: none;
}

.step-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.step-title em {
    font-style: italic;
    color: var(--primary-glow);
}

.step-desc {
    font-size: 1.0625rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-features {
    margin-bottom: 1.5rem;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    color: var(--dark-gray);
    border-bottom: 1px solid var(--light-gray);
}

.step-features li:last-child {
    border-bottom: none;
}

.step-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(45, 27, 78, 0.06);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-feature-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.step-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.step-cta:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

.step-cta svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-base);
}

.step-cta:hover svg {
    transform: translateX(4px);
}

.step-visual {
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.step-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 60%);
}

.step-visual-icon {
    position: relative;
    z-index: 1;
}

.step-visual img{
    height: 100%;
}

.step-visual-icon svg {
    width: 100px;
    height: 100px;
    color: rgba(255, 255, 255, 0.15);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.step-visual-number {
    position: absolute;
    font-size: 180px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    font-family: var(--font-primary);
}

.process-hint {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.8125rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.process-hint svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-section {
    /* padding: var(--section-padding); */
    background: var(--white);
    padding-bottom: 50px;
}

.why-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--light-gray);
    transition: var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold-gradient);
    transform: scaleY(0);
    transition: var(--transition-base);
}

.why-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
    transform: scaleY(1);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(45, 27, 78, 0.06);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.why-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: var(--transition-base);
}

.why-card:hover .why-icon {
    background: var(--primary-gradient);
}

.why-card:hover .why-icon svg {
    color: var(--white);
}

.why-content h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-content p {
    font-size: 0.9375rem;
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-padding);
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 25%, rgba(201, 162, 39, 0.2), transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(107, 63, 160, 0.2), transparent 50%);
}

.cta-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.cta-card h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-card p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 1rem 2.5rem;
    background: var(--gold-gradient);
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 12px 32px rgba(201, 162, 39, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(201, 162, 39, 0.5);
    color: var(--primary);
}

.btn-cta-secondary {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-4px);
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stat {
    text-align: center;
}

.cta-stat-value {
    /* font-family: var(--font-heading); */
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.cta-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.contact-card .iti__selected-dial-code {
    color: #333;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    color: var(--white);
}

.contact-info-title {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.contact-info-text {
    color: var(--dark-gray);
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.contact-info-text a {
    color: var(--primary-glow);
}

.contact-info-text a:hover {
    color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-brand {
    margin-bottom: 1.5rem;
}

/* .footer-brand .logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
} */

.footer-brand .logo-icon img {
    height: 50px;
    margin-bottom: 10px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--gold-gradient);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.footer-social a:hover svg {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ============================================
   SCROLL TO TOP & FLOATING BUTTONS
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    z-index: 999;
    border: none;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.5);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition-base);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* reCAPTCHA */
.g-recaptcha {
    margin: 1rem 0;
}

/* ============================================
   LEAD CAPTURE MODAL
   ============================================ */
.lead-modal-content {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    background: var(--white);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: var(--light-gray);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-base);
    padding: 0;
}

.modal-close-btn:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.modal-close-btn:hover svg {
    color: var(--white);
}

.modal-close-btn svg {
    width: 18px;
    height: 18px;
    color: var(--dark-gray);
}

.modal-form-wrapper {
    padding: 2rem 1.5rem;
}

.modal-form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.modal-form-subtitle {
    color: var(--dark-gray);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.modal-form-wrapper .form-group {
    margin-bottom: 1rem;
}

.modal-form-wrapper .form-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    display: block;
}

.modal-form-wrapper .form-control,
.modal-form-wrapper .form-select {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    color: var(--primary);
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
}

.modal-form-wrapper .form-control:focus,
.modal-form-wrapper .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.modal-form-wrapper .form-control::placeholder {
    color: var(--medium-gray);
}

.modal-form-wrapper .btn-primary {
    margin-top: 0.5rem;
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.9) translateY(-30px);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Modal Backdrop */
.modal-backdrop.show {
    opacity: 0.6;
}

/* Responsive Modal */
@media (max-width: 767.98px) {
    .modal-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .modal-form-title {
        font-size: 1.25rem;
    }
}
