/*
Theme Name: IYE Global
Theme URI: https://www.iyeglobal.com/
Author: OpenAI
Description: Custom WordPress theme migrated from supplied static HTML files for IYE Global.
Version: 1.0.0
Text Domain: iye-global
*/

/* ===================================
   CSS VARIABLES & RESET
   =================================== */
:root {
    --primary: #0f172a;
    --accent: #62BFCA;
    --white: #ffffff;
    --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;
    
    --font-display: 'Archivo', sans-serif;
    --font-body: 'Archivo', sans-serif;
    --font-serif: 'Instrument Serif', serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --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);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}


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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.center {
    text-align: center;
}

.accent-text {
    color: var(--accent);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gray-800) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    color: var(--accent);
    width: 28px;
    height: 28px;
}

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

.logo-title {
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
    color: var(--primary);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gray-400);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-700);
    transition: var(--transition);
    position: relative;
}

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

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

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

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 1rem;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    margin-top: 1rem;
    border: 1px solid var(--gray-200);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 0.875rem;
}

.btn-card {
    width: 100%;
    background: var(--accent);
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(98, 191, 202, 0.2);
}

.btn-card:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.3);
}

.btn-calendly {
    background: var(--accent);
    color: var(--white);
    padding: 1.25rem 2.5rem;
}

.btn-calendly:hover {
    background: var(--white);
    color: var(--primary);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    padding: 10rem 0 8rem;
    overflow: hidden;
    background: linear-gradient(135deg, #e0f2f7 0%, #f0f9fb 100%);
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(98, 191, 202, 0.15) 0%, transparent 80%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-badge span {
    font-size: 0.625rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: var(--gray-500);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 2rem;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

/* Hero Service Boxes */
.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-service-box {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.hero-service-box:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.hero-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gray-800) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.hero-service-box:hover .hero-service-icon {
    background: var(--accent);
    transform: scale(1.1);
}

.hero-service-icon svg {
    color: var(--accent);
    width: 32px;
    height: 32px;
    transition: var(--transition);
}

.hero-service-box:hover .hero-service-icon svg {
    color: var(--white);
}

.hero-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ===================================
   TWO COLUMN SECTION
   =================================== */
.two-column-section {
    padding: 6rem 0;
    background: #f0f7fa;
    border-top: 1px solid var(--gray-200);
}

.two-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
    gap: 3rem;
}

.column-card {
    position: relative;
    transition: all 0.3s ease;
}

.column-card:hover {
    transform: translateY(-8px);
}

.card-inner {
    background: var(--white);
    border-radius: 32px;
    padding: 3rem;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.column-card:hover .card-inner {
    border: 1px solid rgba(98, 191, 202, 0.2) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
    transform: none !important;
}

.card-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    color: var(--accent);
}

.card-title {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--primary);
    line-height: 1.1;
}

.card-label {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.card-description {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.card-list {
    margin-bottom: 3rem;
    flex-grow: 1;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.0rem;
    font-weight: 700;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.card-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===================================
   WHY CHOOSE SECTION
   =================================== */
.why-choose-section {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--white);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    border-color: var(--accent);
}

.feature-icon svg {
    color: var(--primary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon svg {
    color: var(--white);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===================================
   SERVICES OVERVIEW
   =================================== */
.services-overview {
    padding: 6rem 0;
    background: #f0f7fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 24px;
    padding: 3rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gray-800) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon svg {
    color: var(--accent);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-description {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--primary);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    background: #f0f7fa;
}

.testimonial-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem auto;
    max-width: 400px;
}

.toggle-btn {
    flex: 1;
    padding: 1rem 2rem;
    border: 2px solid var(--gray-300);
    background: var(--white);
    color: var(--gray-600);
    font-weight: 700;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    border-color: var(--accent);
    color: var(--primary);
}

.toggle-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Carousel Structure */
.testimonials-carousel {
    display: none;
    margin-top: 3rem;
    position: relative;
}

.testimonials-carousel.active {
    display: block;
}

.testimonials-track {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    animation: fadeInSlide 0.5s ease-in-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    margin-bottom: 2rem;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.testimonial-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9375rem;
    font-weight: 600;
}

.testimonial-location svg {
    color: var(--accent);
}

.testimonial-amount {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
}

/* Dot Navigation */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover {
    background: var(--accent);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .testimonial-toggle {
        flex-direction: column;
        max-width: 100%;
    }
    
    .testimonial-card {
        padding: 2rem;
        min-height: 280px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* ===================================
   STATS SECTION (for fraud-recovery.html)
   =================================== */
.stats-section {
    padding: 8rem 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
    color: var(--white);
    min-height: 550px;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.90) 0%, rgba(30, 41, 59, 0.85) 100%),
        url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwMCIgaGVpZ2h0PSIyMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzPjxwYXR0ZXJuIGlkPSJoZXgiIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDMwKSI+PHBhdGggZD0iTTAgMEw0MCAyMEw4MCAwTTAgNDBMNDAgNjBMODAgNDBNMCA4MEw0MCAxMDBMODAgODAiIHN0cm9rZT0icmdiYSg5OCwxOTEsMjAyLDAuMDgpIiBzdHJva2Utd2lkdGg9IjEuNSIgZmlsbD0ibm9uZSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjIwMDAiIGhlaWdodD0iMjAwMCIgZmlsbD0idXJsKCNoZXgpIi8+PC9zdmc+');
    background-size: 200px 200px, cover;
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(98, 191, 202, 0.12) 0%, transparent 60%);
    pointer-events: none;
    animation: rotate-glow 20s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

/* ===================================
   CALENDLY SECTION
   =================================== */
.calendly-section {
    padding: 8rem 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.calendly-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%),
        url('https://2026iyeglobal5363.live-website.com/wp-content/uploads/2026/01/iye-global-fraud-recovery.jpg');
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.calendly-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(98, 191, 202, 0.18) 0%, transparent 65%);
    pointer-events: none;
    animation: pulse-glow 10s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        opacity: 0.6; 
        transform: scale(1) rotate(0deg); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.15) rotate(5deg); 
    }
}

/* Additional decorative element */
.calendly-section .container::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(98, 191, 202, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.calendly-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
}

.calendly-text {
    flex: 1;
    min-width: 300px;
}

.calendly-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.calendly-badge svg {
    width: 20px;
    height: 20px;
}

.calendly-badge span {
    font-size: 0.625rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.calendly-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.calendly-description {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 600px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--primary);
    padding: 5rem 0 3rem;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-column a,
.footer-column p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    transition: var(--transition);
    line-height: 1.8;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-phone {
    font-weight: 700;
    color: var(--accent);
    margin-top: 0.5rem;
}

.footer-link-external {
    color: var(--accent);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ===================================
   SOCKET
   =================================== */
.socket {
    background: var(--gray-900);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.socket-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.socket-content p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.socket-links {
    display: flex;
    gap: 2rem;
}

.socket-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-400);
    transition: var(--transition);
}

.socket-links a:hover {
    color: var(--accent);
}

/* Breadcrumbs removed - no longer needed */

/* ===================================
   PAGE HERO (Internal Pages)
   =================================== */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #d4edf4 0%, #e8f5f9 100%);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(98, 191, 202, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.page-hero-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.page-hero-badge span {
    font-size: 0.625rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: var(--gray-600);
    text-transform: uppercase;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.page-hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 2.5rem;
}

.page-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===================================
   CONTENT SECTIONS
   =================================== */
.content-section {
    padding: 4rem 0;
}

.content-section:nth-child(even) {
    background: #f0f7fa;
}

.content-section:nth-child(odd) {
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.content-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
}

.content-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.content-box-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.content-box-icon svg {
    color: var(--accent);
}

.content-box-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.content-box-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 1px solid var(--gray-200);
        transform: translateX(-100%);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        align-items: flex-start;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
        padding: 1rem 0;
    }
    
    .nav-list li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 1rem 0 0 1rem;
        margin-top: 0.5rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .two-column-section,
    .why-choose-section,
    .services-overview,
    .calendly-section {
        padding: 4rem 0;
    }
    
    .card-inner {
        padding: 2rem;
    }
    
    .calendly-content {
        flex-direction: column;
        text-align: center;
    }
    
    .page-hero {
        padding: 3rem 0 0.5rem;
    }
    
    .hero-cta {
        margin-top: 1.5rem;
        margin-bottom: 0;
        padding: 0;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .trusted-partners-section {
        padding-top: 2rem !important;
        padding-bottom: 3rem !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .socket-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* ===================================
   UTILITY ANIMATIONS
   =================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

/* ===================================
   MOBILE ADJUSTMENTS
   =================================== */

@media (max-width: 768px) {
    /* 1. Force the badge words onto one single line */
    .hero-badge {
        display: inline-flex !important;
        white-space: nowrap !important; /* Prevents wrapping */
        padding: 0.4rem 0.8rem !important;
        width: auto;
        max-width: 95% !important; /* Ensures it doesn't touch screen edges */
        justify-content: center !important;
    }
}

    @media (max-width: 768px) {
    .hero-badge span {
        font-size: 0.55rem !important; /* Forces smaller text for the 3 words */
        letter-spacing: 0.05em !important;
    }
}

    /* 2. Fix H1 size to prevent cutoff */
    @media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem !important; /* Slightly smaller to ensure it fits */
        line-height: 1.2 !important;
        width: 100% !important;
        padding: 0 10px !important;
    }
}

    @media (max-width: 768px) {
    /* 3. Force 2x2 layout so the 4th box is visible */
    .hero-services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columns */
        grid-template-rows: auto auto !important; /* 2 rows */
        gap: 12px !important;
        margin-top: 2rem !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

    @media (max-width: 768px) {
    .hero-service-box {
        padding: 1.2rem 0.8rem;
        min-height: 140px; /* Ensures consistent box height */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

    @media (max-width: 768px) {
    .hero-service-title {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto !important;
        min-height: 90vh; /* Allows it to grow if content is tall */
        padding-bottom: 4rem; /* Extra space at the bottom for the boxes */
    }
}

/* ===================================
   MOBILE FIX – PAGE HERO SPACING
   =================================== */

@media (max-width: 768px) {

    /* Increase bottom padding for internal hero sections */
    .page-hero {
        padding: 3rem 0 3rem !important; /* Top | Left/Right | Bottom */
    }

}

/* WordPress migration adjustments */
.admin-bar .header { top: 32px; }
@media (max-width: 782px) { .admin-bar .header { top: 46px; } }
.screen-reader-text{position:absolute!important;clip:rect(1px,1px,1px,1px);padding:0!important;border:0!important;height:1px!important;width:1px!important;overflow:hidden}
.logo-img{height:58px;width:auto;display:block}
.dropdown-arrow{width:10px;height:10px;margin-left:0.35rem;vertical-align:middle}
.mobile-menu-overlay{position:fixed;inset:0;background:rgba(15,23,42,.55);backdrop-filter:blur(2px);opacity:0;visibility:hidden;transition:var(--transition);z-index:1098}
.mobile-menu-overlay.active{opacity:1;visibility:visible}
.mobile-menu{position:fixed;top:0;right:0;width:min(100%,380px);height:100vh;background:var(--white);z-index:1099;transform:translateX(100%);transition:var(--transition);box-shadow:var(--shadow-xl);overflow-y:auto}
.mobile-menu.active{transform:translateX(0)}
.mobile-menu-header{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;border-bottom:1px solid var(--gray-200)}
.mobile-menu-close{width:42px;height:42px;border-radius:50%;border:1px solid var(--gray-200);display:flex;align-items:center;justify-content:center;color:var(--primary)}
.mobile-menu-body{padding:1rem 1.5rem 2rem}
.mobile-nav-item{border-bottom:1px solid var(--gray-200)}
.mobile-nav-link{display:flex;align-items:center;justify-content:space-between;padding:1rem 0;font-weight:800;font-size:.95rem;text-transform:uppercase;letter-spacing:.05em;color:var(--primary)}
.mobile-sub-menu{display:none;padding:0 0 1rem .5rem}
.mobile-nav-item.open .mobile-sub-menu{display:block}
.mobile-sub-menu a{display:block;padding:.5rem 0;color:var(--gray-700);font-weight:600}
.mobile-arrow{width:18px;height:18px;transition:var(--transition)}
.mobile-nav-item.open .mobile-arrow{transform:rotate(180deg)}
.mobile-menu-cta{padding-top:1.25rem}
.mobile-menu-cta .btn{width:100%}
.current-menu-item>.nav-link,.current-menu-parent>.nav-link{color:var(--accent)}
.current-menu-item>.nav-link::after,.current-menu-parent>.nav-link::after{width:100%}
main.site-main{display:block;flex:1 0 auto}
.footer,.socket{flex-shrink:0}

/* Clean build: robust WordPress custom logo handling */
.site-header .logo,
.header .logo,
.site-header .custom-logo-link,
.header .custom-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header .custom-logo-link img,
.header .custom-logo-link img,
.site-header .logo img,
.header .logo img,
.site-header .custom-logo,
.header .custom-logo {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: 300px !important;
    max-height: 75px !important;
    object-fit: contain;
}

@media (max-width: 768px) {
    .site-header .custom-logo-link img,
    .header .custom-logo-link img,
    .site-header .logo img,
    .header .logo img,
    .site-header .custom-logo,
    .header .custom-logo {
        max-width: 220px !important;
        max-height: 56px !important;
    }
}
