@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Indie+Flower&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* -----------Website theme----------*/
:root {
    /* FX Botify Brand Colors - Matching Logo */
    --primary-teal: #1dd1a1;          /* Main teal from logo */
    --primary-teal-light: #55efc4;    /* Lighter teal */
    --primary-teal-dark: #00b894;     /* Darker teal */
    --secondary-green: #00cec9;       /* Complementary green */
    --secondary-green-light: #81ecec; /* Light green */
    --secondary-green-dark: #00a085;  /* Dark green */
    --accent-emerald: #2ed573;        /* Accent emerald */
    --accent-emerald-light: #7bed9f;  /* Light emerald */
    
    /* Supporting Colors */
    --dark-slate: #2f3640;            /* Professional dark */
    --dark-slate-light: #57606f;      /* Medium dark */
    --success-green: #2ed573;         /* Success states */
    --warning-orange: #ffa502;        /* Warning states */
    --error-red: #ff3838;             /* Error states */
    
    /* Neutral Colors */
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Background Colors */
    --bg-color: var(--gray-50);
    --bg-color-1: var(--gray-50);
    --bg-color-2: #ffffff;
    --bg-color-3: var(--gray-100);
    --bg-color-transparent: rgba(255, 255, 255, 0.95);
    --bg-gradient-primary: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-green) 100%);
    --bg-gradient-secondary: linear-gradient(135deg, var(--secondary-green) 0%, var(--accent-emerald) 100%);
    --bg-gradient-hero: linear-gradient(135deg, var(--dark-slate) 0%, var(--primary-teal-dark) 100%);
    
    /* Text Colors */
    --heading-color: var(--dark-slate);
    --text-color: var(--gray-600);
    --text-color-light: var(--gray-500);
    --text-color-dark: var(--dark-slate-light);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-teal: 0 10px 15px -3px rgba(29, 209, 161, 0.3), 0 4px 6px -4px rgba(29, 209, 161, 0.2);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Spacing */
    --selection-padding: 7rem;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}


/* -----------General Styles----------*/
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    background-color: var(--bg-color);
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    line-height: 1.6;
    font-size: 16px;
    color: var(--text-color);
    scroll-behavior: smooth;
}

::selection {
    background-color: var(--primary-blue-light);
    color: #fff;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ----------- 1. Navbar Styling ----------- */

header {
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 80px; 
    z-index: 10;
    background-color: rgba(255, 255, 255, 1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
header.scrolled {
    background-color: var(--bg-color-transparent);
    box-shadow: 0 5px 20px .1px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    height: 80px;
}

.container-header {
    position: relative;
    width: 100%;
    max-width: 75rem;
    padding: 0 1.5rem;
    margin: 0 auto;
}
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 120px;
    font-family: "Abril Fatface", cursive;
    font-size: 1.5rem;
    color: black;
    letter-spacing: 1px;
    transition: .3s;
}

.logo::after {
    content: "";
    color: #ddd;
}

.logo span {
    color: rgb(55, 123, 118);
}

.content-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo:hover {
    text-decoration: none;
    color: #161618;
}

.logo-image {
    height: 3.5rem;
    margin-right: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition-normal);
}

.logo:hover .logo-image {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transform: scale(1.02);
}

header .logo {
    height: 90px;
    line-height: 80px;
}

header.scrolled .logo {
    height: 60px;
    line-height: 50px;
}

.links {
    display: flex;
    justify-content: flex-end;
    flex: 1;
    margin-left: 2rem;
}

.links ul {
    display: flex;
    align-items: center;
    /* width: 100%; */
    margin: 0;
    padding: 0;
    list-style: none;
}

.links ul li {
    margin: 0 1rem;
}

.nav-link {
    position: relative;
    display: inline-block;
    margin: 0 1rem;
    text-transform: uppercase;
    font-size: .85rem;
    letter-spacing: .5px;
    color: var(--text-color);
    font-weight: 500;
    opacity: 0.9;
    transition: .3s;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background-color: rgb(30, 150, 150);
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: .3s;
}

.nav-link:hover {
    color: var(--heading-color);
}

.nav-link:hover::after {
    width: 100%;
    opacity: .2;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger-icon {
    width: 25px;
    height: 3px;
    background-color: #333;
}



/* ----------- 2. Enhanced Professional Hero Section ----------- */

.home-hero-section {
    overflow: hidden;
    padding: 0;
    position: relative;
    background: #0f172a;
}

.home-hero-section-inner {
    /* Solid professional background with minimal gradient for consistency */
    background: #2d3748;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 120px); /* Further reduced */
    display: flex;
    align-items: center;
}

.home-hero-section-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Minimal overlay for depth without gradient transitions */
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.home-hero-section-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Simple, professional grid pattern */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 1;
}

.home-hero-section-inner > * {
    position: relative;
    z-index: 2;
}

.home-hero-section .page-container {
    position: relative
}

.currency-dollar-img {
    position: absolute;
    top: 15%;
    right: 10%;
    filter: blur(0.5px);
    z-index: 1;
    opacity: 0.15;
    transform: rotate(-15deg);
    animation: float 6s ease-in-out infinite;
}

.currency-Euro-img {
    position: absolute;
    top: 60%;
    left: 8%;
    filter: blur(0.5px);
    z-index: 1;
    opacity: 0.12;
    transform: rotate(12deg);
    animation: float 8s ease-in-out infinite reverse;
}

.currency-Yen-img {
    position: absolute;
    bottom: 20%;
    right: 15%;
    filter: blur(0.5px);
    z-index: 1;
    opacity: 0.18;
    transform: rotate(-8deg);
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(var(--rotation, 0deg));
    }
}

/* Page Container */
.page-container-hero {
    margin-top: 0; /* Removed all top margin */
    padding: 1rem; /* Drastically reduced from 2rem 1rem */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Wrapper */
.content-wrapper-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start; /* Changed to flex-start for tighter alignment */
    gap: 0.5rem; /* Drastically reduced from 1rem */
}

/* Left Content */
.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    padding: 0.5rem; /* Drastically reduced from 1rem */
    max-width: 100%;
}

.hero-title {
    order: 1;
    text-align: center;
    font-family: "Nunito", sans-serif;
    margin-left: auto;
    color: #ffffff;
    font-size: clamp(2.2rem, 4.5vw, 3.8rem); /* Reduced max size */
    font-weight: 900;
    line-height: 1.05; /* Tighter line height */
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem; /* Drastically reduced from 1rem */
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    gap: 0.1rem; /* Reduced gap */
}

.hero-title-line1 {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 0.85em;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.hero-title-line2 {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 0.6em;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.hero-title-highlight {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-emerald) 50%, var(--secondary-green-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.2em;
    letter-spacing: -1px;
    text-shadow: none;
    position: relative;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 20px rgba(29, 209, 161, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(29, 209, 161, 0.6));
    }
}

.hero-subHeading {
    order: 2;
    text-align: center;
    margin-top: 0.25rem; /* Drastically reduced from 0.75rem */
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 2vw, 1.2rem); /* Reduced font size */
    font-weight: 400;
    line-height: 1.4; /* Tighter line height */
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem; /* Added bottom margin control */
}

.hero-title span {
    /* Remove the problematic gradient text effect for now */
    color: #14b8a6;
    display: inline-block;
    text-align: center;
    font-weight: 900;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(135deg, #14b8a6, #06d6a0, #fbbf24, #f59e0b);
    }
    100% {
        background: linear-gradient(135deg, #3b82f6, #14b8a6, #06d6a0, #fbbf24);
    }
}

.home-hero-section__title-thin {
    font-weight: 800;
}

/* Button */
.btn-cyan,
.btn-border-cyan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    margin-top: 0.5rem;
    color: white;
    background: var(--bg-gradient-primary);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem; /* Optimized for better text fit */
    letter-spacing: 0.5px;
    text-decoration: none;
    position: relative;
    overflow: visible; /* Allow text to be fully visible */
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    min-height: 46px;
    gap: 0.4rem;
    line-height: 1.3; /* Better line height */
    text-overflow: clip; /* Remove text cropping */
}

/* Bootstrap button overrides */
.btn.btn-primary {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-green) 100%);
    border: 2px solid var(--primary-teal);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(29, 209, 161, 0.3);
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-teal) 100%);
    border-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 209, 161, 0.4);
    color: #ffffff;
}

/* Form button specific styling */
#send-otp-btn,
#submit-btn {
    width: 100%;
    max-width: 100%; /* Use full available width */
    margin: 0 auto;
    margin-top: 0.5rem;
    font-size: 0.78rem; /* Optimized font size for long text */
    padding: 12px 20px; /* Better padding for text visibility */
    min-height: 48px; /* Increased height */
    white-space: nowrap; /* Prevent text wrapping */
    overflow: visible; /* Allow text to be fully visible */
    text-overflow: clip; /* Remove ellipsis that crops text */
    line-height: 1.1; /* Tighter line height */
    letter-spacing: 0.2px; /* Tighter letter spacing for better fit */
}

#attach-file-btn {
    max-width: 100%; /* Use full available width */
    margin: 0 auto;
    margin-top: 0.5rem;
    font-size: 0.8rem; /* Increased font size */
    padding: 12px 20px; /* Better padding */
    min-height: 44px; /* Adequate height */
    white-space: nowrap;
    overflow: visible; /* Allow text to be fully visible */
    text-overflow: clip; /* Remove ellipsis */
    line-height: 1.2;
    letter-spacing: 0.3px;
}

#attach-file-btn .fas {
    color: var(--gray-600);
}

.btn-cyan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    transition: none;
}

.btn-border-cyan {
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-border-cyan span {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
}

.btn-cyan:hover,
.btn-border-cyan:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-cyan:hover {
    background: var(--bg-gradient-secondary);
    color: white;
    border-color: transparent;
}

.btn-border-cyan:hover {
    background: var(--gray-100);
    color: var(--gray-800);
    border-color: var(--gray-400);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Platform hero */
.platform-hero {
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    order: 4;
}

.platform-hero__item {
    width: 80px;
    text-align: center;
    color: #6e6e71;

}

.platform-hero__item:not(:last-child) {
    margin-right: 90px;
}

.platform-hero__img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    /* filter: blur(01px); */
}

.platform-hero img {
    height: auto;
    margin-bottom: 0.5rem;
}

/* Enhanced Hero Contact Block */
.hero-form-box {
    flex: 0 0 450px; /* Increased width from 420px to 450px for better button text fit */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(20px);
    color: var(--gray-800);
    padding: 1.5rem; /* Drastically reduced from 2rem */
    margin-top: 0.5rem; /* Drastically reduced from 1.5rem */
    border-radius: var(--radius-xl);
    text-align: center;
    margin-left: 0.5rem; /* Drastically reduced from 1.5rem */
    margin-right: 0.5rem; /* Drastically reduced from 2rem */
    max-height: none; /* Remove height restriction to accommodate error messages */
    min-height: 580px; /* Set minimum height instead */
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: visible; /* Allow content to be visible */
    box-sizing: border-box; /* Ensure padding is included in width calculations */
}

/* Removed green line at top of form for professional appearance */

.hero-form-box h3 {
    color: var(--primary-blue);
    font-size: 1.3rem; /* Reduced from 1.5rem */
    font-weight: 700;
    margin-bottom: 0.5rem; /* Drastically reduced from 1rem */
    line-height: 1.2;
}

/* Form Field Labels - Floating Style */
.form-field-label {
    position: absolute;
    top: 0.75rem;
    left: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-400);
    transition: all var(--transition-normal);
    pointer-events: none;
    background: transparent;
    z-index: 2;
}

/* Enhanced form inputs styling with floating labels */
.hero-contact-form-item {
    position: relative;
    margin-bottom: 1.2rem; /* Increased to accommodate error messages */
    width: 100%;
    box-sizing: border-box;
    overflow: visible; /* Allow floating labels to be visible */
}

.hero-form-box input,
.hero-form-box select,
.hero-form-box textarea {
    width: 100%;
    padding: 1rem 2.5rem 0.5rem 1rem; /* Right padding for validation icons */
    margin-bottom: 0;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.8);
    color: var(--gray-700);
    box-sizing: border-box;
    font-family: inherit;
    position: relative;
    z-index: 1;
    max-width: 100%;
}

/* Floating label animation when input has value or is focused */
.hero-form-box input:focus + .form-field-label,
.hero-form-box input:not(:placeholder-shown) + .form-field-label,
.hero-form-box input.has-value + .form-field-label,
.hero-form-box select:focus + .form-field-label,
.hero-form-box select:not([value=""]) + .form-field-label,
.hero-form-box textarea:focus + .form-field-label,
.hero-form-box textarea:not(:placeholder-shown) + .form-field-label {
    top: 0.25rem;
    font-size: 0.7rem;
    color: var(--primary-teal);
    font-weight: 600;
}

/* Placeholder styling - make invisible since we're using floating labels */
.hero-form-box input::placeholder,
.hero-form-box textarea::placeholder {
    color: transparent;
    opacity: 0;
}

/* Text selection color fix */
.hero-form-box input::selection,
.hero-form-box select::selection,
.hero-form-box textarea::selection {
    background-color: var(--primary-teal);
    color: white;
}

/* Focus states */
.hero-form-box input:focus,
.hero-form-box select:focus,
.hero-form-box textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 3px rgba(29, 209, 161, 0.1);
    background: rgba(255, 255, 255, 1);
}

/* Special handling for select dropdown */
.hero-form-box select {
    padding-top: 1.2rem;
    padding-bottom: 0.4rem;
}

.hero-form-box select + .form-field-label {
    top: 0.25rem;
    font-size: 0.7rem;
    color: var(--primary-teal);
    font-weight: 600;
}

/* When select has a value selected */
.hero-form-box select:not([value=""]):not(:focus) + .form-field-label {
    top: 0.25rem;
    font-size: 0.7rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* Textarea specific styling */
.hero-form-box textarea {
    min-height: 4rem;
    resize: vertical;
    padding-top: 1.2rem;
    padding-bottom: 0.5rem;
}

/* Focus states for labels */
.hero-form-box input:focus + .form-field-label,
.hero-form-box select:focus + .form-field-label,
.hero-form-box textarea:focus + .form-field-label {
    color: var(--primary-teal);
}

/* Error states */
.hero-form-box input.error,
.hero-form-box select.error,
.hero-form-box textarea.error {
    border-color: var(--error-red);
    background-color: rgba(255, 56, 56, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 56, 56, 0.1);
}

.hero-form-box input.error + .form-field-label,
.hero-form-box select.error + .form-field-label,
.hero-form-box textarea.error + .form-field-label {
    color: var(--error-red);
}

/* Success states */
.hero-form-box input.success,
.hero-form-box select.success,
.hero-form-box textarea.success {
    border-color: var(--success-green);
    background-color: rgba(46, 213, 115, 0.05);
    box-shadow: 0 0 0 3px rgba(46, 213, 115, 0.1);
}

.hero-form-box input.success + .form-field-label,
.hero-form-box select.success + .form-field-label,
.hero-form-box textarea.success + .form-field-label {
    color: var(--success-green);
}

/* Field validation icons */
.hero-contact-form-item {
    position: relative;
    margin-bottom: 1.2rem; /* Increased to accommodate error messages */
    width: 100%;
    box-sizing: border-box;
}

.hero-contact-form-item.has-error::after {
    content: '⚠️';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--error-red);
    font-size: 1rem;
    pointer-events: none;
    z-index: 10;
}

/* Phone field specific error icon positioning */
.hero-contact-form-item:has(input#phone).has-error::after {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
}

.hero-contact-form-item.has-success::after {
    content: '✅';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success-green);
    font-size: 1rem;
    pointer-events: none;
    z-index: 10;
}

/* Phone field specific success icon positioning */
.hero-contact-form-item:has(input#phone).has-success::after {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
}

/* Error messages - ensure they stay within form bounds */
.error-message {
    display: block;
    color: var(--error-red);
    font-size: 0.75rem;
    margin-top: 0.25rem;
    text-align: left;
    animation: slideDown 0.3s ease-in;
    padding: 0.25rem 0;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.3;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-form-box button {
    width: 100%;
    padding: 1rem;
    background: var(--bg-gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

.hero-form-box button:hover {
    background: var(--bg-gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.iti {
    width: 100%;
}

/* Country code dropdown */
.iti__selected-flag {
    top: 11px; /* Adjusted further to align with bigger input field */
    /* height: 33px !important; */
    border-radius: 4px;
    transition: .3s;
}
/* IntlTelInput Integration - Professional Styling */
.intl-tel-input {
    width: 100% !important;
    position: relative;
}

.intl-tel-input .iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: auto;
    left: 0;
    padding: 1px;
}

.intl-tel-input .iti__selected-flag {
    z-index: 4;
    height: 54px;
    padding: 0 0 0 8px;
    border-radius: 4px 0 0 4px;
    border: 1px solid #e1e5e9;
    border-right: none;
    background: #f8f9fa;
    display: flex;
    align-items: center;
}

.intl-tel-input .iti__selected-flag:hover,
.intl-tel-input .iti__selected-flag:focus {
    background: #fff;
    border-color: var(--primary-teal);
}

.intl-tel-input input[type="tel"] {
    padding-left: 60px !important;
    padding-top: 1.4rem !important;
    padding-bottom: 0.8rem !important;
    padding-right: 0.8rem !important;
    height: 56px !important;
    font-size: 1.1rem !important; /* Increased from 0.95rem to 1.1rem for bigger placeholder */
    border: 1px solid #e1e5e9 !important;
    border-radius: 4px !important;
    background: transparent !important;
}

.intl-tel-input input[type="tel"]:focus {
    border-color: var(--primary-teal) !important;
    box-shadow: none !important;
}

/* Enhanced placeholder styling for phone input */
.intl-tel-input input[type="tel"]::placeholder {
    font-size: 1.1rem !important;
    color: #999 !important;
    font-weight: 400 !important;
}

.intl-tel-input input[type="tel"]::-webkit-input-placeholder {
    font-size: 1.1rem !important;
    color: #999 !important;
    font-weight: 400 !important;
}

.intl-tel-input input[type="tel"]::-moz-placeholder {
    font-size: 1.1rem !important;
    color: #999 !important;
    font-weight: 400 !important;
}

.intl-tel-input input[type="tel"]:-ms-input-placeholder {
    font-size: 1.1rem !important;
    color: #999 !important;
    font-weight: 400 !important;
}

/* When input is focused, also highlight the flag container */
.intl-tel-input input[type="tel"]:focus + .iti__flag-container .iti__selected-flag,
.intl-tel-input.iti--focus .iti__selected-flag {
    border-color: var(--primary-teal);
    background: #fff;
}

/* Floating label adjustments for intlTelInput */
/* Floating label adjustments for intlTelInput (JS-driven classes; avoids :has()) */
.hero-contact-form-item.phone-field .form-field-label {
    left: 65px;
    transition: all 0.2s ease;
}

.hero-contact-form-item.phone-field.label-raised .form-field-label {
    top: 0.25rem !important;
    left: 1rem !important; /* align with other fields when raised */
    font-size: 0.7rem !important;
    color: var(--gray-600) !important;
    font-weight: 600 !important;
}

.hero-contact-form-item.phone-field.label-focus .form-field-label {
    color: var(--primary-teal) !important;
}

/* Success and error coloring to match other fields */
.hero-contact-form-item.phone-field.has-success .form-field-label {
    color: var(--success-green) !important;
}
.hero-contact-form-item.phone-field.has-error .form-field-label {
    color: var(--error-red) !important;
}

/* Country dropdown styling */
.iti__country-list {
    border-radius: 6px !important;
    border: 1px solid #e1e5e9 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    z-index: 999 !important;
    max-height: 200px;
    width: 280px !important;
}

.iti__country {
    padding: 8px 12px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.iti__country:hover {
    background: #f8f9fa !important;
}

.iti__country.iti__highlight {
    background: var(--primary-teal) !important;
    color: white !important;
}

/* Error and success states */
.hero-contact-form-item.has-error .intl-tel-input .iti__selected-flag,
.hero-contact-form-item.has-error .intl-tel-input input[type="tel"] {
    border-color: #dc3545 !important;
}

.hero-contact-form-item.has-success .intl-tel-input .iti__selected-flag,
.hero-contact-form-item.has-success .intl-tel-input input[type="tel"] {
    border-color: #28a745 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .intl-tel-input input[type="tel"] {
        padding-left: 55px !important;
    }
    /* keep base label away from flag when not raised */
    .hero-contact-form-item.phone-field .form-field-label { left: 60px; }
    /* align raised label with other fields on small screens too */
    .hero-contact-form-item.phone-field.label-raised .form-field-label { left: 1rem !important; }
}

.hero-contact-block__title {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.hero-contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-contact-form-item {
    width: 100%;
    max-width: 100%; /* Use full available width instead of 500px */
    margin-bottom: 1.2rem; /* Increased to accommodate error messages */
}

.hero-contact-form-item__label {
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
    box-sizing: border-box;
}

.hero-contact-form-item__input,
.hero-contact-form-item__textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    margin-top: 0.2rem;
    box-sizing: border-box;
    max-width: 100%;
}

.hero-contact-form-item:last-child {
    margin-bottom: 0;
}

/* Form container to ensure proper bounds */
.hero-contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden; /* Prevent horizontal overflow */
}

.hero-contact-form-ctrl {
    display: grid;
    grid-template-columns: 1fr; /* Stack on small screens */
    align-items: stretch;
    width: 100%;
    gap: 0.5rem; /* Reduced gap */
    margin-top: 0.75rem; /* Reduced from 1rem */
}

@media (min-width: 576px) {
    .hero-contact-form-ctrl {
        grid-template-columns: 1fr 1fr; /* Place first two buttons side by side */
    }
    /* Ensure Get Quote spans full width when shown */
    #get-quote-btn { grid-column: 1 / -1; }
}

.hero-contact-form-ctrl button {
    width: 100%; /* Make buttons full width */
    white-space: nowrap;
    margin: 0;
    font-size: 0.78rem; /* Optimized font size for text fit */
    padding: 12px 18px; /* Better padding for text visibility */
    min-height: 46px; /* Good height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: visible; /* Allow full text visibility */
    text-overflow: clip; /* Remove text cropping */
    line-height: 1.1; /* Tighter line height */
    letter-spacing: 0.2px; /* Better letter spacing for fit */
}

.hero-contact-form-ctrl button:first-child {
    margin-left: 0;
}

.hero-contact-form-ctrl button:last-child {
    margin-right: 0;
}

/* Specific fix for GET MY CUSTOM QUOTE NOW button */
#send-otp-btn span,
#submit-btn span {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: inherit;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
}

/* Container for selected file names */
#selected-files-container {
    padding: 10px;
    font-size: 0.7rem;
    max-width: 100%;
    word-wrap: break-word;
    overflow-y: auto;
    max-height: 100px;
}

.hero-contact-form-link {
    margin-top: 1rem;
}

.hero-contact-form-link a {
    color: #45fff6;
    text-decoration: underline;
}

.hero-contact-form-link a:hover {
    color: rgb(11, 131, 147);
}

/* OTP Status Messages */
#otp-status-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    display: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.otp-status-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    box-shadow: 0 2px 8px rgba(21, 87, 36, 0.1);
}

.otp-status-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    box-shadow: 0 2px 8px rgba(114, 28, 36, 0.1);
}

.otp-status-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    box-shadow: 0 2px 8px rgba(12, 84, 96, 0.1);
}

/* Verification Success Badge */
.verification-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #e9f8f3; /* soft green tint */
    color: #0f5132; /* muted success text */
    padding: 0.35rem 0.6rem;
    border-radius: 999px; /* subtle pill */
    font-size: 0.78rem;
    font-weight: 500;
    margin-top: 0.5rem;
    border: 1px solid #cfe9df; /* subtle border */
    box-shadow: none; /* no shadow for subtlety */
    animation: none; /* remove pulse */
}

@keyframes successPulse {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.verification-success-badge .success-icon {
    font-size: 0.9rem;
    line-height: 1;
    animation: none; /* no bounce */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

/* OTP Input Field Styling */
#otp-field {
    animation: slideDown 0.3s ease-in;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Verified Badge */
.verified-badge {
    display: inline-block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Button States */
.btn-cyan:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-cyan:disabled:hover {
    transform: none !important;
    box-shadow: var(--shadow-lg) !important;
}

/* Modal message */
.modal-backdrop {
    z-index: 1040 !important; /* Backdrop below the modal */
}

.modal {
    z-index: 1050 !important; /* Modal above the backdrop */
}
.modal-header {
    border-bottom: none; /* Remove the default header border */
}

.modal-body img {
    width: 100px; /* Adjust the size of the success icon */
    height: 100px;
}

.modal-body p {
    text-align: center; /* Center the text */
    font-size: 1.1rem; /* Increase font size */
}

.modal-footer {
    border-top: none; /* Remove the default footer border */
}

#file {
    display: none;
}

/* Loader Styles */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(8px); /* Apply blur effect to the background */
}

.loader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.loader-logo {
    width: auto;
    height: 80px;
    animation: pulse 1.5s linear infinite; /* Apply animation to the logo */
}

/* Subtle spinner below the logo */
.loader-spinner {
    width: 42px;
    height: 42px;
    margin-top: 4px; /* space below logo */
    border: 3px solid rgba(29, 209, 161, 0.25); /* pale ring */
    border-top-color: #1dd1a1; /* brand teal */
    border-right-color: #55efc4; /* lighter brand */
    border-radius: 50%;
    animation: loaderSpin 0.9s linear infinite;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .loader-logo {
        animation: none;
    }
    .loader-spinner {
        animation: none;
        border-right-color: #1dd1a1; /* static look */
    }
}

/* Pulse Animation */

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}



/* ----------- 3. Enhanced Content Section ----------- */

.content-section {
    padding: 80px 20px;
    background: 
        /* Primary professional gradient */
        linear-gradient(135deg, var(--gray-50) 0%, var(--bg-color-2) 30%, var(--gray-100) 70%, #f8fafc 100%),
        /* Subtle texture pattern */
        linear-gradient(45deg, transparent 49%, rgba(59, 130, 246, 0.02) 50%, transparent 51%),
        /* Depth gradient overlay */
        radial-gradient(ellipse at 70% 30%, rgba(20, 184, 166, 0.04) 0%, transparent 60%);
    background-size: 100% 100%, 30px 30px, 100% 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Enhanced strategic lighting */
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(20, 184, 166, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.03) 0%, transparent 40%),
        /* Professional depth shadows */
        linear-gradient(45deg, rgba(0, 0, 0, 0.02) 0%, transparent 30%, rgba(0, 0, 0, 0.01) 100%);
    z-index: 1;
}

.content-section > * {
    position: relative;
    z-index: 2;
}

.container-content {
    max-width: 1200px;
    margin: 0 auto;
}

.content-wrapper2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.content-text {
    flex: 1 1 100%;
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    line-height: 1.2;
}

.content-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #222;
    margin-bottom: 40px;
}

.content-features {
    flex: 1 1 100%;
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    padding: 1rem 2rem;
}

.features-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgb(30, 105, 105);
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.features-list-item {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--text-color);
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary-teal);
    transition: all var(--transition-normal);
    backdrop-filter: blur(5px);
}

.features-list-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.8);
}

.features-list-item span {
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.25rem;
}

/* Why Us section */
.whyus {
    padding: 5rem 0;
    background-color: #f9f9f9;
    /* Light background color */
}

.container-whyUs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.block-title__wrap {
    text-align: center;
    margin-bottom: 2rem;
}

.block-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.block-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--bg-gradient-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.whyus__slick {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
}

.why-us-card {
    flex: 1 1 calc(33.33% - 2rem);
    /* 3 cards per row with gap */
    box-sizing: border-box;
    min-height: 280px;
}

.whyus-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.whyus-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.whyus-item:hover::before {
    transform: scaleX(1);
}

.whyus-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, 0.2);
}

.whyus-item__image {
    margin-bottom: 1.5rem;
    position: relative;
}

.whyus-item__image img {
    max-width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: var(--transition-normal);
}

.whyus-item:hover .whyus-item__image img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.whyus-item__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.whyus-item__desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
    font-weight: 400;
}

/* Enhanced Who are we section */
.who-are-we-section {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--bg-color-2) 50%, var(--gray-50) 100%);
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.who-are-we-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.who-are-we-section > * {
    position: relative;
    z-index: 2;
}

.who-are-we-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5rem;
}

.who-are-we-image {
    flex: 1;
}

.who-are-we-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
}

.who-are-we-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.who-are-we-text {
    flex: 2;
    text-align: left;
}

.who-are-we-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.who-are-we-description {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
}


/* How does it works section */
.page-container-how-it-works {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.section-work {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 3rem;
    color: var(--primary-blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--bg-gradient-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-work__wrap-img {
    position: absolute;
    left: 50%;
    width: 1440px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 122px;
    top: 40px;
}

.how-it-works-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 2rem;
    justify-content: center;
    counter-reset: work;
    max-width: 1400px;
    margin: 0 auto;
}

.work-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    counter-increment: work;
    overflow: hidden;
}

.work-card::before {
    content: counter(work);
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--bg-gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.work-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient-secondary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.work-card:hover::after {
    transform: scaleX(1);
}

.work-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(59, 130, 246, 0.2);
}

.work-card__wrap-img {
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-card__wrap-img img {
    max-width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: var(--transition-normal);
}

.work-card:hover .work-card__wrap-img img {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.work-card__content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-card__title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
    line-height: 1.3;
}

.work-card__text {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
    font-weight: 400;
}

.section-work__wrap-link {
    margin-top: 2rem;
    text-align: center;
    padding: 0 1rem;
}

/* -- Testimonial section-- */
.testimonials-section {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 2px solid rgba(30, 105, 100);
    border-bottom: 2px solid rgba(30, 105, 100);
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.testimonials-section h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: rgba(3, 157, 122);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Testimonials Container */
.testimonials-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

.testimonials-container::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

/* Testimonial Item */
.testimonial {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    min-width: calc(33.33% - 1rem);
    /* Show three testimonials */
    margin-right: 1rem;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: center;
    margin: 1rem;
}

.testimonial:last-child {
    margin-right: 0;
    /* No margin on the last item */
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Testimonial Content */
.testimonial-content {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    border-radius: 50%;
    margin-right: 1rem;
    width: 50px;
    height: 50px;
    border: 2px solid #00bcd4;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #333;
    font-weight: 600;
}

.testimonial-author span:last-child {
    font-size: 0.8rem;
    color: #777;
    font-weight: 400;
}

/* -- Screenshot section-- */
.screenshot-section {
    padding: 2rem 0;
    background-color: #f9f9f9;
}

.section-header h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
}

.screenshot-container-wrapper {
    display: flex;
    overflow: hidden;
    height: 550px;
    position: relative;
}

.screenshot-container {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.screenshot-container.active {
    display: flex;
    background-color: rgb(3, 157, 122);
}

.screenshot-group {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
}

.screenshot {
    position: relative;
    border: 2px solid #ddd;
    padding: 10px;
    background-color: #fff;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
}

.screenshot img {
    width: 150px;
    height: 200px;
    object-fit: cover;
}

.push-pin {
    position: absolute;
    top: -15px;
    left: 50%;
    width: 20px;
    height: 20px;
    background-color: #ff0000;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateX(-50%);
}

.button-container {
    text-align: center;
    margin-top: 1.5rem;
}

.more-button {
    background-color: rgb(3, 157, 122);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 5px;
}

.more-button:hover {
    background-color: #006a5e;
}

/* Full Screen Mode */
.screenshot-container-wrapper.full-screen .screenshot-container {
    display: block;
    position: relative;
    flex-direction: column;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.screenshot-container-wrapper.full-screen {
    height: auto;
}

.screenshot-container.full-screen {
    position: static;
}



/* ----------- 4. FAQ Section Styling ----------- */
.faq-section {
    padding: 5rem 0;
}

.bg-gray {
    background-color: #f9f9f9;
}

.pfont {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.headingred {
    color: rgba(3, 157, 122);
    font-size: 1.5rem;
}

.hr1 {
    border-top: 3.5px solid rgba(30, 105, 100);
    width: 30%;
    margin: 1rem auto;
}

.panel-group .panel {
    margin-bottom: 1rem;
}

.panel-heading {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.panel-title {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 0;
}

.panel-title a {
    display: block;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    flex: 1;
}

.panel-title a:hover,
.panel-title a:focus {
    text-decoration: none;
    background-color: #f0f0f0;
}

.panel-body {
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
}

.panel-body p {
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.btn-link {
    color: #00bcd4;
    text-decoration: none;
    padding: 1rem;
}

.btn-link:focus,
.btn-link:hover {
    text-decoration: none;
    color: #008c9e;
}

.panel-toggle {
    display: flex;
    align-items: center;
}

.panel-heading .fa-chevron-right,
.panel-heading .fa-chevron-down {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    color: var(--primary-teal);
}

/* Optional: Add hover effect for better UX */
.panel-toggle:hover .fa-chevron-right,
.panel-toggle:hover .fa-chevron-down {
    color: var(--primary-teal-dark);
}

/* ----------- 5. Footer Section Styling ----------- */
.footer {
    position: relative;
    background-color: rgba(3, 157, 122);
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

.footer a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    color: rgb(0, 255, 200);
}

.social-media {
    margin-top: 2rem;
    padding: 0;
}

.social-media ul {
    padding-left: 0;
}

.social-media a {
    margin: 0 10px;
}

/* -- Social media buttons-- */

.button-circle.bg-white {
    background-color: rgba(255, 255, 255, .2);
    transition: background-color .2s, transform .2s;
}

.button-circle.button-small {
    width: 36px;
    height: 36px;
}

.button-circle {
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    transition: transform .2s;
    display: flex;
}

.bg-white {
    background-color: var(--white);
}

.w-inline-block {
    max-width: 100%;
    display: inline-block;
}

.social-icon {
    width: 30px;
    height: 25px;
    margin-top: 0.35rem;
}

img {
    max-width: 100%;
    display: inline-block;
}

img {
    vertical-align: bottom;
}

/* Disclosure Section in Footer */
.footer__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.footer__risks {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(3, 157, 122);
    padding: 1.5rem;
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: justify;
    max-width: 90%;
    margin: 0 auto;
}

.footer__risks p {
    margin-bottom: 1rem;
}

.footer__risks p:last-child {
    margin-bottom: 0;
}
.lastDisclosure {
    display: flex;
    align-self: baseline;
}

.footer__risks .footer__title {
    color: white;
    margin-top: 2rem;
}


/* Responsive Design */

@media (max-width: 480px) {
    .who-are-we-title {
        font-size: 1.5rem;
    }

    .who-are-we-description {
        font-size: 0.9rem;
    }

    /* Responsive Content*/
    .content-title {
        font-size: 1.2rem;
    }

    .content-description,
    .features-title {
        font-size: 0.9rem;
    }

    .features-list-item {
        font-size: 0.8rem;
    }

    /* Responsive Hero*/
    .hero-title span {
        font-size: 1.25rem;
    }

    .hero-contact-form-item__input,
    .hero-contact-form-item__textarea {
        font-size: 0.875rem;
    }

    .btn-cyan,
    .btn-border-cyan {
        padding: 10px 16px; /* Better padding for mobile */
        font-size: 0.75rem; /* Smaller font for mobile fit */
        min-height: 42px; /* Adequate height for mobile */
        max-width: 100%; /* Full width on mobile */
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
    }

    .platform-hero {
        flex-wrap: wrap;
        justify-content: center;
    }

    .platform-hero__item {
        width: 60px;
        margin: 5px 10px;
    }

    .platform-hero__text {
        font-size: 0.75rem;
        word-break: break-word;
    }

    .hero-contact-form-item__label,
    .hero-contact-form-ctrl {
        font-size: 0.875rem;
    }

    .hero-contact-form-ctrl button {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {

    /* Responsive Hero section */
    .hero-form-box {
        flex: 1 1 auto;
        max-width: 100%;
        padding: 1rem; /* Reduced from 1.5rem */
        min-height: auto; /* Remove min-height on mobile */
        display: block; /* Changed from none to block */
        margin: 0.25rem 0; /* Minimal margins */
        overflow: visible; /* Ensure error messages are visible */
    }
    
    /* Ensure form items don't overflow on mobile */
    .hero-contact-form-item {
        margin-bottom: 1rem; /* Reduced on mobile */
        width: 100%;
    }
    
    .error-message {
        font-size: 0.7rem; /* Smaller text on mobile */
        line-height: 1.2;
    }
    
    .hero-contact-form-item.has-error::after,
    .hero-contact-form-item.has-success::after {
        right: 10px; /* Closer to edge on mobile */
    }
    
    .page-container-hero {
        padding: 0.25rem; /* Minimal mobile padding */
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem); /* Smaller mobile titles */
        margin-bottom: 0.25rem;
        line-height: 1.0;
    }
    
    .hero-subHeading {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-top: 0.15rem;
        margin-bottom: 0.25rem;
        line-height: 1.3;
    }
    
    .hero-stats {
        gap: 0.75rem;
        margin: 0.5rem 0;
    }
    
    .stat-item {
        min-width: 60px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }

    /* .hero-contact-form-item__double {
        flex-direction: column;
        align-items: center;
    }

    .hero-contact-form-item__double .hero-contact-form-item {
        width: 100%;
        margin-bottom: 1rem;
    } */

    .hero-contact-form-ctrl {
        display: flex;
        flex-direction: column;
        align-items: center; /* Changed from stretch to center */
        gap: 0.5rem; /* Reduced from 0.5rem */
        width: 100%;
    }

    .hero-contact-form-ctrl button {
        flex: none;
        width: 100%;
        margin: 0;
        font-size: 0.75rem; /* Optimized for mobile */
        padding: 12px 16px; /* Optimized padding */
        min-height: 44px; /* Adequate height */
        white-space: nowrap;
        overflow: visible; /* Ensure text is not cropped */
        text-overflow: clip; /* Remove ellipsis */
        line-height: 1.2;
        letter-spacing: 0.2px;
    }

    /* Specific styling for form buttons on mobile */
    #send-otp-btn,
    #submit-btn {
        font-size: 0.7rem !important; /* Smaller font to fit text */
        padding: 12px 16px !important; /* Optimized padding */
        max-width: 100% !important;
        letter-spacing: 0.2px; /* Tighter letter spacing */
        min-height: 46px !important;
    }

    #attach-file-btn {
        font-size: 0.65rem !important; /* Small font for long text */
        padding: 10px 12px !important;
        max-width: 100% !important;
        letter-spacing: 0.1px;
        min-height: 42px !important;
    }

    .hero-contact-form-ctrl button+button {
        margin-left: 0;
    }

    .hero-contact-form-ctrl button:last-child {
        margin-bottom: 0;
    }

    /* .sidebar-contact {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        height: auto;
        background: #216858;
        box-shadow: 0 20px 50px rgba(0,0,0,.5);
        box-sizing: border-box;
        transition: left 0.5s ease;
        z-index: 9999;
        left: -320px; 
        width: 50%;
    }  
    .sidebar-contact.active {
        left: 0; 
        top: 0;
        right: 0;
        transform: translateY(0);
    } */
    /* .form_toggle {
        position: absolute;
        height: 48px;
        width: 48px;
        text-align: center;
        cursor: pointer;
        background: #f00;
        top: 0;
        right: -48px;
        line-height: 48px;
        z-index: 10000; 
    }
    .form_toggle.active::before {
        content: '\f00d';
    }
    .form_toggle::before {
        content: '\f003';
        font-family: fontAwesome;
        font-size: 18px;
        color: #fff;
    } */

    /* Responsive Content section */
    .content-wrapper2 {
        align-items: flex-start;
        text-align: center;
    }

    .content-title {
        font-size: 1.75rem;
    }

    .content-description .features-title {
        font-size: 1rem;
    }

    .features-list-item {
        font-size: 1rem;
    }

    /* Responsive Who are we */
    .who-are-we-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .who-are-we-text {
        text-align: center;
    }

    .who-are-we-title {
        font-size: 1.75rem;
    }

    .who-are-we-description {
        font-size: 1rem;
    }

    /* Responsive Why us */
    .why-us-card {
        flex: 1 1 calc(100% - 2rem);
        /* 1 card per row */
    }

    .whyus-item__image img {
        max-width: 120px;
    }

    /* Responsive how it works */
    .how-it-works-container {
        flex-direction: column;
        align-items: center;
    }

    .work-card {
        max-width: 100%;
        margin: 0;
        box-shadow: 0 1px 4px;
    }

    .work-card__text br {
        display: none
    }

    .section-work__wrap-link {
        display: flex;
    }

    /* Responsive Testimonials */
    .testimonial {
        min-width: calc(100% - 1rem);
        /* Show one testimonial at a time on small screens */
        min-width: calc(100% - 2rem);
        margin: 1rem;
    }

    .testimonials-container {
        padding: 0 1rem;
        /* Add some padding to ensure proper alignment */
    }

    /* Responsive Footer */
    .footer__title {
        font-size: 1.25rem;
        text-align: center;
    }

    .footer__risks {
        padding: 1rem;
        font-size: 0.85rem;
        text-align: justify;
    }
}

@media only screen and (min-width: 768px) {
    .platform-hero {
        flex-wrap: wrap;
        -webkit-box-pack: start;
        justify-content: center;
        gap: 23px;
        width: 100%;
        gap: 23px 42px;
    }

    /* Responsive How does it work */
    .section-work {
        padding: 70px 0;
    }

    .how-it-works-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-card {
        grid-template-columns: 90px 1fr;
    }

    .work-card::before {
        top: 11px;
        right: 13px;
        font-size: 20px;
        width: 33px;
        height: 33px
    }

    .work-card::after {
        top: 11px;
        right: 13px;
        width: 33px;
        height: 33px
    }

    .work-card__title {
        font-size: 24px
    }

    .work-card__text {
        font-size: 16px
    }
}

@media only screen and (min-width: 992px) {
    .home-hero-section__inner {
        padding-top: 67px;
    }

    .page-container-hero {
        margin-top: 5rem;
        padding: 2rem 1rem;
    }

}

/* Media Query for Medium Screens */
@media (max-width: 992px) {
    .why-us-card {
        flex: 1 1 40%;
        /* 2 cards per row with gap */
    }
    .hero-subHeading {
        text-align: center;
    }
}

@media (max-width: 650px) {
    .why-us-card {
        flex: 1 1 100%;
    }
}

@media only screen and (min-width: 1250px) {
    .section-work__wrap-link {
        margin-top: 60px
    }

    .how-it-works-container {
        /* -ms-grid-columns: (1fr)[3]; */
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 768px) {

    /* Responsive Header */
    header {
        height: 100px;
    }
    .container-header {
        flex-direction: column;
    }
    .header-main {
        height: 100px;
    }

    .links ul {
        /* flex-direction: column; */
        align-items: start;
    }

    .links ul li {
        margin: 10px 0;
    }

    .links ul {
        display: none;
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 80px;
        right: 0;
        background-color: #fff;
        width: 100%;
        border-top: 2px solid #00bcd4;
        border-bottom: 1px solid black;
    }

    .links ul.active {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 0.5rem 0;
        text-align: left;
        margin: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Responsive Hero section */
    .content-wrapper-hero {
        flex-direction: column;
        align-items: center;
    }

    .left-content {
        align-items: center;
    }

    .hero-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .hero-title span {
        font-size: 2.5rem;
    }

    .hero-subHeading {
        font-size: 1.5rem;
        text-align: center;
    }

    .hero-contact-form-item__double {
        flex-direction: column;
    }

    .hero-contact-form-item__double .hero-contact-form-item {
        width: 100%;
    }

    .btn-cyan,
    .btn-border-cyan {
        margin: 2rem auto 0 auto;
        display: block;
        font-size: 0.7rem; /* Smaller font for very small screens */
        padding: 8px 12px; /* Compact padding */
        min-height: 38px; /* Compact height */
        max-width: 100%;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
    }

    .platform-hero {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-top: 0;
    }

    .platform-hero__item {
        width: 50px;
        margin: 0 5px;
    }

    .platform-hero__text {
        font-size: 0.75rem;
    }

    .currency-dollar-img {
        margin: 0;
        top: 11rem;
        right: 1rem;
    }

    .currency-Euro-img {
        z-index: 1;
        height: 4rem;
    }

    .currency-Yen-img {
        z-index: 1;
        height: 3rem;
        bottom: 0;
    }
}

@media (max-width: 1024px) {
    .page-container-hero {
        margin-top: 5rem;
        padding: 2rem 1rem;
    }

    .left-content {
        margin-right: 0;
        align-items: flex-start;
        margin-top: 2rem;
    }

    .hero-title {
        text-align: center;
    }
    .hero-title span:last-child {
        text-align: center;
    }

    .hero-subHeading {
        text-align: center;
        width: 100%;
    }

    .hero-form-box {
        margin: 0;
    }
}

@media only screen and (min-width: 1450px) {
    .content-wrapper-hero {
        gap: 10rem;
    }

}
@media only screen and (min-width: 2250px) {
    .content-wrapper-hero {
        gap: 10rem;
    }
}

/* =========== NEW PROFESSIONAL COMPONENTS =========== */

/* Urgent Banner Styles */
.urgent-banner {
    /* background: linear-gradient(135deg, #dc3545, #fd7e14); */
    background: linear-gradient(135deg, #94dc35, #fd7e14);
    color: white;
    padding: 0.75rem 0;
    position: fixed;
    top: 80px;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.urgent-text-wrapper {
    text-align: center;
}

.urgent-text {
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
}

.urgent-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    text-align: center;
}

.spots-remaining {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.85rem;
    white-space: nowrap;
}

.urgency-timer {
    font-size: 0.85rem;
    opacity: 0.9;
    white-space: nowrap;
}

/* Header Contact Info */
.contact-info {
    margin-right: 2rem;
}

.phone-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
}

.phone-link:hover {
    color: var(--primary-teal);
    text-decoration: none;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 1rem; /* Reduced from 1.5rem */
    margin: 0.75rem 0; /* Drastically reduced from 1.5rem 0 */
    flex-wrap: wrap;
    justify-content: center; /* Changed to center */
    align-items: center;
}

.stat-item {
    text-align: center;
    min-width: 70px; /* Reduced from 80px */
    flex: 0 0 auto;
}

.stat-number {
    display: block;
    font-size: 1.5rem; /* Reduced from 1.75rem */
    font-weight: bold;
    color: var(--primary-teal);
    line-height: 1.1; /* Tighter line height */
    text-shadow: 0 2px 4px rgba(29, 209, 161, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.75rem; /* Reduced from 0.8rem */
    color: var(--text-color-light);
    margin-top: 0.1rem; /* Reduced from 0.25rem */
    font-weight: 500;
}

/* Form Subtitle */
.form-subtitle {
    margin: 0.5rem 0; /* Reduced from 1rem 0 */
    font-size: 0.8rem; /* Reduced from 0.9rem */
    color: var(--text-color-light);
    line-height: 1.3;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: var(--bg-gradient-primary);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
    position: relative;
    height: 100%;
    color: var(--text-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-teal);
}

.pricing-card.featured {
    border: 3px solid var(--accent-emerald);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-emerald);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.package-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-color-light);
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-teal);
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-color-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--secondary-green);
    font-weight: bold;
}

.pricing-footer {
    margin-top: 2rem;
    text-align: center;
}

.btn-pricing {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-teal);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: bold;
    transition: var(--transition-normal);
    border: 2px solid var(--primary-teal);
}

.btn-pricing:hover {
    background: var(--primary-teal-dark);
    border-color: var(--primary-teal-dark);
    color: white;
    text-decoration: none;
}

.btn-pricing.featured {
    background: var(--accent-emerald);
    border-color: var(--accent-emerald);
}

.btn-pricing.featured:hover {
    background: var(--accent-emerald-light);
    border-color: var(--accent-emerald-light);
}

.pricing-guarantee {
    font-size: 1.1rem;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: white;
}

/* Mobile Responsiveness for New Components */
@media (max-width: 768px) {
    .urgent-banner {
        padding: 0.6rem 0;
        top: 70px;
        text-align: center;
    }
    
    .urgent-banner .row {
        justify-content: center;
    }
    
    .urgent-text-wrapper {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .urgent-text {
        font-size: 0.8rem;
        line-height: 1.4;
        text-align: center;
    }
    
    .urgent-stats {
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        margin-top: 0;
        text-align: center;
        width: 100%;
    }
    
    .spots-remaining {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
        text-align: center;
    }
    
    .urgency-timer {
        font-size: 0.75rem;
        text-align: center;
    }
    
    .contact-info {
        display: none;
    }
}

@media (max-width: 576px) {
    .urgent-banner {
        padding: 0.5rem 0;
        text-align: center;
    }
    
    .urgent-banner .container {
        text-align: center;
    }
    
    .urgent-text {
        font-size: 0.75rem;
        text-align: center;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .urgent-stats {
        flex-direction: column;
        gap: 0.4rem;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }
    
    .spots-remaining, .urgency-timer {
        font-size: 0.7rem;
        text-align: center;
        display: block;
        margin: 0 auto;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .stat-item {
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 1rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

/* Smooth Scroll Offset for Fixed Headers */
html {
    scroll-padding-top: 140px;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 120px;
    }
}

/* Adjust existing sections for new banner */
.home-hero-section {
    margin-top: 130px;
}

@media (max-width: 768px) {
    .home-hero-section {
        margin-top: 110px;
    }
}

/* Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    background: var(--primary-teal);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
    position: relative;
    animation: bounce 2s infinite;
}

.chat-button:hover {
    background: var(--primary-teal-dark);
    transform: scale(1.05);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.chat-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: var(--primary-teal);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1rem;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-body {
    padding: 1rem;
    max-height: 200px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 1rem;
}

.bot-message p {
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.chat-footer {
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-btn {
    padding: 0.75rem 1rem;
    background: var(--secondary-green);
    color: white;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.quick-btn:hover {
    background: var(--secondary-green-dark);
    color: white;
    text-decoration: none;
}

/* Mobile adjustments for chat widget */
@media (max-width: 768px) {
    .live-chat-widget {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-popup {
        width: 280px;
        right: -40px;
    }
    
    .chat-text {
        display: none;
    }
    
    .chat-button {
        padding: 1rem;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
}

/* Risk & Compliance Section */
.risk-compliance-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.compliance-notice {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--warning-orange);
}

.compliance-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.compliance-header h3 {
    margin: 0;
    color: var(--heading-color);
    font-weight: bold;
}

.compliance-content h4 {
    color: var(--primary-teal);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.compliance-content ul {
    list-style: none;
    padding: 0;
}

.compliance-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.compliance-content li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
}

.regulatory-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-teal);
}

.regulatory-info p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .compliance-notice {
        padding: 1.5rem;
    }
    
    .compliance-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .compliance-content h4 {
        font-size: 1.1rem;
        justify-content: center;
    }
}
