/*
Theme Name: Three Point Global
Theme URI: https://threepointglobal.com
Description: A modern, professional WordPress theme for Three Point Global - Connecting remote talent worldwide
Author: Three Point Global
Version: 1.4
*/

/* ===========================
   DESIGN SYSTEM - COLOR PALETTE
   =========================== */
:root {
    /* Primary Colors */
    --color-primary: #6366F1;
    --color-primary-dark: #4F46E5;
    --color-primary-light: #818CF8;

    /* Accent Colors */
    --color-accent-yellow: #FCD34D;
    --color-accent-purple: #A78BFA;

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-700: #374151;
    --color-gray-900: #111827;

    /* Background Colors */
    --bg-light-purple: #E9E7FE;
    --bg-light-lavender: #F5F3FF;
    --bg-hero-blue: #B3E5FC;
    --bg-footer-blue: #bae6fd;
    --bg-footer-beige: #fcf6e6;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* ===========================
   GLOBAL STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-900);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-gray-700);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   BUTTONS & LINKS
   =========================== */
a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-pill-white {
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: black;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-circle-white {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.btn-circle-white:hover {
    transform: rotate(-45deg);
}

/* ===========================
   HEADER
   =========================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.site-header.header-scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.header-left-section {
    display: flex;
    align-items: center;
    gap: 60px;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: black;
    text-decoration: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-primary);
}

.header-right-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-pill {
    display: flex;
    align-items: center;
    background: white;
    padding: 5px 20px 5px 5px;
    border-radius: 50px;
    gap: 10px;
    text-decoration: none;
    color: black;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.phone-icon {
    width: 35px;
    height: 35px;
    background: var(--color-accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.btn-yellow {
    background: var(--color-accent-yellow);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: black;
    font-weight: 600;
}

/* ===========================
   HERO SECTION (Split Layout)
   =========================== */
.hero-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-split {
    display: flex;
    height: 100vh;
    min-height: 700px;
}

/* Left Panel (Blue) */
.hero-left-panel {
    width: 50%;
    background-color: var(--bg-hero-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 60px 100px;
    position: relative;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: black;
}

.hero-content p {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-doodle {
    position: absolute;
    left: 340px;
    top: 140px;
    opacity: 1;
    z-index: 1;
}

.hero-bottom-left {
    position: absolute;
    bottom: 40px;
    left: 100px;
}

.social-widget {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-widget span {
    font-weight: 600;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: black;
    color: white;
    border-color: black;
}

/* Right Panel (Image) */
.hero-right-panel {
    width: 50%;
    position: relative;
    background-color: #f0f0f0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Floating Cards */
.stats-card-yellow {
    position: absolute;
    bottom: 100px;
    left: -30px;
    background: var(--color-accent-yellow);
    padding: 2rem;
    border-radius: 20px;
    width: 220px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stats-desc {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.team-card-glass {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 20px;
    width: 280px;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.team-avatars {
    display: flex;
    margin-bottom: 1rem;
}

.team-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.team-avatars img:first-child {
    margin-left: 0;
}

.add-btn {
    width: 40px;
    height: 40px;
    background: var(--color-accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    margin-left: -10px;
    border: 2px solid white;
    font-size: 0.875rem;
}

.team-text {
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
}

/* =========================================
   NEW SECTIONS: FEATURES & ABOUT COMPANY
   ========================================= */

/* Section Badges */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.badge-blue {
    background-color: #dbeafe;
    /* Light blue */
    color: #1e40af;
    /* Dark blue */
}

.badge-yellow {
    background-color: var(--color-accent-yellow);
    color: var(--color-text-dark);
}

/* Features Section (Reason to Choose Us) */
.features-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.features-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.features-header h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--color-text-dark);
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 40px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
}

.feature-card.highlight {
    background-color: #fcf6e6;
    /* Beige/Light Yellow */
    border-color: transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feature-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.icon-blue-light {
    background-color: #dbeafe;
    color: #2563eb;
}

.icon-yellow-light {
    background-color: var(--color-accent-yellow);
    color: var(--color-text-dark);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-action {
    margin-top: auto;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-text-dark);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.feature-action i {
    margin-left: 10px;
}

.feature-card:hover .feature-action {
    gap: 10px;
}

/* About Company Section (Split Layout) */
.about-company-section {
    padding: 100px 60px;
    background-color: #fcfcfc;
    max-width: 1400px;
    margin: 0 auto;
}

.about-split-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side - Image & Floating Box */
.about-left-image {
    position: relative;
}

.about-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

.about-floating-stat {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: #fff;
    padding: 40px;
    width: 80%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.stat-badge {
    background: var(--color-accent-yellow);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.big-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--color-text-dark);
}

.stat-label-large {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.stat-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.stat-action-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-pill-yellow {
    background: var(--color-accent-yellow);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-text-dark);
}

.btn-arrow-circle {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-dark);
    transition: all 0.3s ease;
}

.btn-arrow-circle:hover {
    background: var(--color-accent-yellow);
    transform: rotate(-45deg);
}

/* Right Side - Grid Content */
.about-right-content h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 20px 0 40px;
    font-weight: 700;
}

.about-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.grid-box {
    padding: 40px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.grid-box-white {
    background: #fff;
    border: 1px solid #eee;
}

.grid-box-yellow {
    background: var(--color-accent-yellow);
}

.grid-box-blue {
    background: #bae6fd;
}

.grid-box-image {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.grid-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.grid-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.grid-box p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.grid-box-blue .grid-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.grid-box-blue p {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
}

/* ===========================
   SERVICES SECTION (UPDATED)
   =========================== */
.services-section {
    padding: var(--spacing-3xl) 2rem;
    background-color: var(--color-white);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-subtitle {
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    margin-bottom: var(--spacing-md);
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-gray-700);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Updated Service Card Style */
.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid #eee;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--color-primary);
    color: white;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-black);
}

.service-description {
    color: var(--color-gray-700);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
    /* Push to bottom */
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--color-gray-700);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.service-features li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: bold;
    flex-shrink: 0;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials-section {
    padding: 100px 60px;
    background-color: var(--bg-footer-beige);
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.testim-header-left {
    max-width: 500px;
}

.testim-header-left h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-top: 15px;
}

.testim-header-right {
    max-width: 400px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.testimonial-slider-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.testim-nav-btns {
    display: flex;
    gap: 15px;
    margin-top: 100px;
    /* Align with cards */
    flex-shrink: 0;
}

.nav-arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #000;
}

.nav-arrow-btn:hover {
    background: var(--color-accent-yellow);
    border-color: var(--color-accent-yellow);
}

.testimonials-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 40px;
    scrollbar-width: none;
    /* Hide scrollbar */
    width: 100%;
}

.testimonial-card {
    min-width: 400px;
    background: white;
    padding: 40px;
    border-radius: 4px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.quote-icon-box {
    width: 60px;
    height: 60px;
    background-color: #bae6fd;
    /* Light blue */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0284c7;
    margin-bottom: 20px;
}

.stars {
    color: #00b67a;
    /* Trustpilot green */
    margin-bottom: 20px;
}

.testim-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h5 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: #000;
    font-weight: 700;
}

.user-info span {
    font-size: 0.85rem;
    color: #888;
}

/* ===========================
   NEW FOOTER (Split Layout)
   =========================== */
.new-footer-wrapper {
    width: 100%;
    overflow: hidden;
}

.footer-split-layout {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

/* Left Side: Newsletter (Blue) */
.footer-newsletter-section {
    width: 40%;
    background-color: var(--bg-footer-blue);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Decorative corner cut (simulated with clip-path or pseudo) */
.footer-newsletter-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 60px 60px;
    border-color: transparent transparent var(--bg-footer-beige) transparent;
}

.footer-newsletter-section h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #000;
    max-width: 400px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 3rem;
    max-width: 450px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    outline: none;
}

.newsletter-btn {
    background-color: var(--color-accent-yellow);
    width: 50px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.newsletter-btn:hover {
    background-color: #fbbf24;
}

.footer-contact-info {
    font-weight: 600;
    font-size: 1rem;
    color: #000;
}

/* Right Side: Links (Beige) */
.footer-links-section {
    width: 60%;
    background-color: var(--bg-footer-beige);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
}

.footer-desc {
    max-width: 400px;
    margin-bottom: 3rem;
    color: #555;
    line-height: 1.6;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 4rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #000;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-circle {
    width: 40px;
    height: 40px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-circle:hover {
    transform: scale(1.1);
}

/* Bottom Bar */
.footer-bottom-bar {
    background-color: var(--bg-footer-beige);
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-copyright {
    font-size: 0.9rem;
    color: #000;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.9rem;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.scroll-top-btn {
    width: 40px;
    height: 40px;
    background-color: var(--color-accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: transform 0.3s;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .header-container {
        flex-direction: column;
        background: white;
    }

    .header-left-section,
    .header-right-section {
        width: 100%;
        padding: 1rem 2rem;
        justify-content: center;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-split {
        flex-direction: column;
        height: auto;
    }

    .hero-left-panel,
    .hero-right-panel {
        width: 100%;
    }

    .hero-left-panel {
        padding: 180px 2rem 4rem;
    }

    .hero-right-panel {
        height: 500px;
    }

    .stats-card-yellow {
        left: 2rem;
        bottom: -2rem;
    }

    .footer-split-layout {
        flex-direction: column;
    }

    .footer-newsletter-section,
    .footer-links-section {
        width: 100%;
        padding: 60px 30px;
    }

    .footer-newsletter-section::after {
        display: none;
    }

    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .testim-header-right {
        align-items: flex-start;
        text-align: left;
    }

    .testimonial-slider-container {
        flex-direction: column;
    }

    .testim-nav-btns {
        margin-top: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .header-right-section {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .about-split-wrapper {
        grid-template-columns: 1fr;
        gap: 100px;
    }

    .about-floating-stat {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: -50px;
        z-index: 2;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-socials {
        flex-direction: row;
    }

    .testimonial-card {
        min-width: 300px;
    }
}

/* ===========================
   CONSULTATION SECTION
   =========================== */
.consultation-section {
    padding: 100px 60px;
    background-color: #fff;
}

.consultation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.consultation-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.consultation-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--color-gray-900);
}

.consultation-highlight i {
    color: #f43f5e;
    /* Rocket red/pink color */
}

.consultation-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.consultation-list {
    list-style: none;
    margin-bottom: 40px;
}

.consultation-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
    color: var(--color-gray-700);
}

.consultation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-black);
    font-weight: bold;
}

.consultation-promise {
    background-color: var(--color-gray-50);
    padding: 30px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent-yellow);
}

.consultation-promise h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.consultation-promise ul {
    list-style: none;
}

.consultation-promise ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--color-gray-700);
}

/* Form Styles */
.consultation-form-wrapper {
    background: #fff;
    padding: 0;
}

.form-instruction {
    font-weight: 600;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--color-black);
    font-size: 1.1rem;
}

.booking-form .form-group {
    margin-bottom: 25px;
}

.booking-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--color-gray-700);
}

.name-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form select,
.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form select,
.apply-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    background-color: #fff;
    transition: all 0.2s ease;
    color: var(--color-gray-900);
}

.booking-form input:focus,
.booking-form select:focus,
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-item input {
    width: auto;
    margin: 0;
    accent-color: var(--color-primary);
}

.checkbox-item label {
    margin: 0;
    font-weight: 400;
    font-size: 1rem;
    color: var(--color-gray-700);
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.timezone-hint {
    display: block;

    .testimonial-card {
        min-width: 300px;
    }
}

/* ===========================
   CONSULTATION SECTION
   =========================== */
.consultation-section {
    padding: 100px 60px;
    background-color: #fff;
}

.consultation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.consultation-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.consultation-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--color-gray-900);
}

.consultation-highlight i {
    color: #f43f5e;
    /* Rocket red/pink color */
}

.consultation-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.consultation-list {
    list-style: none;
    margin-bottom: 40px;
}

.consultation-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
    color: var(--color-gray-700);
}

.consultation-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-black);
    font-weight: bold;
}

.consultation-promise {
    background-color: var(--color-gray-50);
    padding: 30px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent-yellow);
}

.consultation-promise h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.consultation-promise ul {
    list-style: none;
}

.consultation-promise ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--color-gray-700);
}

/* Form Styles */
.consultation-form-wrapper {
    background: #fff;
    padding: 0;
}

.form-instruction {
    font-weight: 600;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--color-black);
    font-size: 1.1rem;
}

.booking-form .form-group {
    margin-bottom: 25px;
}

.booking-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--color-gray-700);
}

.name-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form select,
.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form select,
.apply-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    background-color: #fff;
    transition: all 0.2s ease;
    color: var(--color-gray-900);
}

.booking-form input:focus,
.booking-form select:focus,
.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-item input {
    width: auto;
    margin: 0;
    accent-color: var(--color-primary);
}

.checkbox-item label {
    margin: 0;
    font-weight: 400;
    font-size: 1rem;
    color: var(--color-gray-700);
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.timezone-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray-700);
    margin-top: 5px;
}

.btn-submit-black {
    background-color: black;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.btn-submit-black:hover {
    background-color: #333;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .consultation-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .name-inputs {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

/* ===========================
   APPLY PAGE
   =========================== */
.apply-section {
    padding: 120px 20px 80px;
    background-color: #fff;
    min-height: 100vh;
}

.apply-container {
    max-width: 800px;
    margin: 0 auto;
}

.apply-header {
    text-align: center;
    margin-bottom: 50px;
}

.apply-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.apply-form .form-group {
    margin-bottom: 0;
}

.apply-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--color-gray-900);
}

.input-wrapper {
    display: flex;
    flex-direction: column;
}

.sub-label {
    font-size: 0.75rem;
    color: var(--color-gray-700);
    margin-top: 4px;
}

.sub-label-top {
    font-size: 0.75rem;
    color: var(--color-gray-700);
    margin-bottom: 4px;
}



.field-desc {
    font-size: 0.85rem;
    color: var(--color-gray-700);
    margin-bottom: 10px;
    line-height: 1.4;
}

/* File Upload Styling */
.file-upload-box {
    border: 1px dashed #ccc;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    position: relative;
    background-color: #fafafa;
    transition: border-color 0.3s;
}

.file-upload-box:hover {
    border-color: var(--color-primary);
}

.file-upload-box input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    pointer-events: none;
    /* Let the input handle clicks */
}

.file-upload-label i {
    font-size: 1.2rem;
    color: var(--color-gray-700);
}



.timezone-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray-700);
    margin-top: 5px;
}

.btn-submit-black {
    background-color: black;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
    display: inline-block;
    margin-top: 10px;
}

.btn-submit-black:hover {
    background-color: #333;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .consultation-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .name-inputs {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

/* ===========================
   APPLY PAGE
   =========================== */
.apply-section {
    padding: 120px 20px 80px;
    background-color: #fff;
    min-height: 100vh;
}

.apply-container {
    max-width: 800px;
    margin: 0 auto;
}

.apply-header {
    text-align: center;
    margin-bottom: 50px;
}

.apply-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.apply-form .form-group {
    margin-bottom: 0;
}

.apply-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--color-gray-900);
}

.input-wrapper {
    display: flex;
    flex-direction: column;
}

.sub-label {
    font-size: 0.75rem;
    color: var(--color-gray-700);
    margin-top: 4px;
}

.sub-label-top {
    font-size: 0.75rem;
    color: var(--color-gray-700);
    margin-bottom: 4px;
}



.field-desc {
    font-size: 0.85rem;
    color: var(--color-gray-700);
    margin-bottom: 10px;
    line-height: 1.4;
}

/* File Upload Styling */
.file-upload-box {
    border: 1px dashed #ccc;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    position: relative;
    background-color: #fafafa;
    transition: border-color 0.3s;
}

.file-upload-box:hover {
    border-color: var(--color-primary);
}

.file-upload-box input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    pointer-events: none;
    /* Let the input handle clicks */
}

.file-upload-label i {
    font-size: 1.2rem;
    color: var(--color-gray-700);
}

.file-upload-label span {
    font-size: 0.9rem;
    color: var(--color-gray-900);
}

.form-footer {
    margin-top: 20px;
}

.form-footer p {
    font-size: 0.9rem;
    color: var(--color-gray-700);
    margin-bottom: 15px;
}

/* Intl Tel Input Overrides */
.iti {
    width: 100%;
}

.iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/img/flags@2x.png");
    }
}

/* Country Select JS Overrides */
.country-select {
    width: 100%;
}

.country-select .country-list {
    width: 100%;
}

.country-select .flag-dropdown {
    border: 1px solid var(--color-gray-300);
    border-radius: 8px 0 0 8px;
}

.country-select input {
    border-radius: 8px !important;
    padding-left: 50px !important;
}