/* ==========================================
   SDS Smart Data Solutions - Main Styles
   Professional Consultation Website
   ========================================== */

/* ==========================================
   CSS Variables & Design Tokens
   ========================================== */
:root {
    /* Colors */
    --primary: #1E3A5F;
    --primary-dark: #152a45;
    --primary-light: #2d5285;
    --secondary: #D4AF37;
    --secondary-dark: #b8962d;
    --accent: #2C7A7B;
    --accent-light: #38a3a5;

    /* Neutrals */
    --text-dark: #1A202C;
    --text-body: #4A5568;
    --text-light: #718096;
    --white: #FFFFFF;
    --gray-50: #F7FAFC;
    --gray-100: #EDF2F7;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--secondary) 0%, #e8c84a 100%);
    --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #2d5285 50%, #1E3A5F 100%);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);

    /* Typography - Premium Professional Fonts */
    --font-arabic: 'Cairo', 'Tajawal', sans-serif;
    --font-english: 'Poppins', 'Inter', sans-serif;
    --font-heading: 'Cairo', 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1280px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
}

/* ==========================================
   Base Styles & Reset
   ========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-arabic);
    color: var(--text-body);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

/* RTL Support */
[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

[dir="ltr"] body {
    font-family: var(--font-english);
    direction: ltr;
    text-align: left;
}

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

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

ul,
ol {
    list-style: none;
}

/* ==========================================
   Typography - ConsultKing Inspired
   ========================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

/* Extra bold headings for impact */
h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 200;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 200;
}

h4 {
    font-size: 1.35rem;
    font-weight: 200;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Text utilities */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.text-lead {
    font-size: 1.25rem;
    font-weight: 200;
    line-height: 1.7;
}

/* ==========================================
   Container & Layout
   ========================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-color: var(--secondary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

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

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================
   Section Dividers - Wave, Angle, Curve
   ========================================== */
.section-divider {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    overflow: hidden;
    z-index: 2;
}

.section-divider svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.section-divider.top {
    top: 0;
}

.section-divider.bottom {
    bottom: 0;
}

/* Wave Divider */
.section-divider.wave svg {
    fill: var(--white);
}

/* Angle Divider */
.section-divider.angle {
    height: 60px;
    background: linear-gradient(to right bottom, var(--white) 49%, transparent 50%);
}

/* Subtle dot pattern for sections */
.pattern-dots {
    position: relative;
}

.pattern-dots::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(30, 58, 95, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Section with texture */
.section-textured {
    position: relative;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.section-textured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

/* ==========================================
   Section Styles - Premium Design
   ========================================== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--secondary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-badge::before {
    content: '◆';
    font-size: 0.6em;
    color: var(--secondary);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

/* Decorative line above title */
.section-header .section-title::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header .section-title::after {
    display: none;
}

/* Bottom accent bar */
.section-title-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.section-title-bar::before,
.section-title-bar::after {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--gray-300);
    border-radius: 2px;
}

.section-title-bar span {
    width: 12px;
    height: 12px;
    background: var(--gradient-gold);
    border-radius: 50%;
    position: relative;
}

.section-title-bar span::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.section-description {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(30, 58, 95, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-subtext {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 500;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 60px;
    filter: brightness(0) invert(1);
}

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

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
}

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

[dir="ltr"] .nav-link::after {
    right: auto;
    left: 0;
}

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

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

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform var(--transition-fast);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 100;
    border: 1px solid var(--gray-100);
}

[dir="ltr"] .dropdown-menu {
    right: auto;
    left: 0;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--secondary);
    transition: height var(--transition-fast);
    border-radius: 2px;
}

[dir="ltr"] .dropdown-menu a::before {
    right: auto;
    left: 0;
}

.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--primary);
    padding-right: 28px;
}

[dir="ltr"] .dropdown-menu a:hover {
    padding-right: 24px;
    padding-left: 28px;
}

.dropdown-menu a:hover::before {
    height: 20px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch {
    color: var(--white);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
}

.lang-switch:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

/* ==========================================
   Hero Section - ConsultKing Inspired
   ========================================== */
.hero,
.hero-carousel {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

/* Carousel specific styles */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.carousel-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.carousel-slide .hero-content {
    animation: slideIn 0.8s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Indicators */
/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    /* Moved down */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    /* Highlighting smaller gap */
    z-index: 20;
    /* Higher z-index to be above other elements if needed */
}

.indicator {
    width: 30px;
    /* Smaller width */
    height: 3px;
    /* Smaller height */
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--secondary);
    width: 45px;
    /* Smaller active width */
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(30, 58, 95, 0.3);
    /* Darker background for contrast */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
    fill: none;
}

.carousel-arrow:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    right: 30px;
}

.carousel-arrow.next {
    left: 30px;
}

[dir="ltr"] .carousel-arrow.prev {
    right: auto;
    left: 30px;
}

[dir="ltr"] .carousel-arrow.next {
    left: auto;
    right: 30px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') center center / cover no-repeat;
    z-index: -2;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 25, 47, 0.85) 0%,
            rgba(30, 58, 95, 0.75) 50%,
            rgba(10, 25, 47, 0.9) 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero .container,
.hero-carousel .container,
.carousel-slide .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    padding: 180px 24px 100px;
    /* Increased top padding to clear header */
    width: 100%;
    /* Ensure container takes width */
    height: 100%;
    /* Ensure full height for vertical centering if needed */
    justify-content: center;
    /* Center content vertically */
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    margin-bottom: 32px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1.05;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.hero-title .text-gradient {
    display: block;
    background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1em;
}

.hero-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    margin: 0 auto 56px;
    max-width: 800px;
    line-height: 1.7;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.hero-buttons .btn {
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 700;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 100%);
    color: #1E3A5F;
    border: none;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.hero-buttons .btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.hero-visual {
    display: none;
}

.hero-card {
    display: none;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 28px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--secondary);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 10px;
        opacity: 1;
    }

    50% {
        top: 24px;
        opacity: 0.5;
    }
}

/* ==========================================
   Customer Journey Section - Milestones
   ========================================== */
.customer-journey {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    overflow: hidden;
}

.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 0;
    padding: 20px 0;
}

/* Connecting Line */
.journey-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: repeating-linear-gradient(90deg,
            var(--gray-300) 0,
            var(--gray-300) 10px,
            transparent 10px,
            transparent 20px);
    z-index: 0;
}

/* Steps Layout */
.journey-steps-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.journey-step {
    position: relative;
    text-align: center;
    transition: all var(--transition-normal);
}

/* Step Circle/Icon */
.step-marker {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 3px solid var(--gray-300);
    border-radius: 50%;
    margin: 20px auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 0 8px var(--gray-50);
}

.step-marker svg {
    width: 28px;
    height: 28px;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

/* Step Number Badge */
.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease 0.1s;
}

[dir="ltr"] .step-number {
    right: auto;
    left: -10px;
}

/* Content Styling */
.step-content {
    opacity: 0.7;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-light);
    margin: 0;
}

/* Hover & Active States */
.journey-step:hover .step-marker,
.journey-step.active .step-marker {
    border-color: var(--secondary);
    background: var(--secondary);
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(212, 175, 55, 0.15);
}

.journey-step:hover .step-marker svg,
.journey-step.active .step-marker svg {
    color: var(--white);
}

.journey-step:hover .step-number,
.journey-step.active .step-number {
    opacity: 1;
    transform: scale(1);
}

.journey-step:hover .step-content,
.journey-step.active .step-content {
    opacity: 1;
    transform: translateY(0);
}

/* Varied Colors for Steps */
/* Step 1: Primary Blue */
.journey-step:nth-child(1) .step-number {
    background: var(--primary);
}

.journey-step:nth-child(1):hover .step-marker,
.journey-step:nth-child(1).active .step-marker {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 0 0 12px rgba(30, 58, 95, 0.15);
}

/* Step 2: Gold (Default/Secondary) */
.journey-step:nth-child(2) .step-number {
    background: var(--secondary);
}

.journey-step:nth-child(2):hover .step-marker,
.journey-step:nth-child(2).active .step-marker {
    border-color: var(--secondary);
    background: var(--secondary);
    box-shadow: 0 0 0 12px rgba(212, 175, 55, 0.15);
}

/* Step 3: Emerald/Teal */
.journey-step:nth-child(3) .step-number {
    background: #20B2AA;
}

.journey-step:nth-child(3):hover .step-marker,
.journey-step:nth-child(3).active .step-marker {
    border-color: #20B2AA;
    background: #20B2AA;
    box-shadow: 0 0 0 12px rgba(32, 178, 170, 0.15);
}

/* Step 4: Royal Blue */
.journey-step:nth-child(4) .step-number {
    background: #4169E1;
}

.journey-step:nth-child(4):hover .step-marker,
.journey-step:nth-child(4).active .step-marker {
    border-color: #4169E1;
    background: #4169E1;
    box-shadow: 0 0 0 12px rgba(65, 105, 225, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .journey-timeline::before {
        display: none;
    }

    .journey-steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .step-marker {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .journey-steps-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Animated gradient border on hover */
.service-card::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 50%, var(--secondary) 100%);
    background-size: 100% 200%;
    transition: width 0.4s ease;
    border-radius: 0 4px 4px 0;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 0% 100%;
    }
}

/* Floating glow effect */
.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    pointer-events: none;
}

[dir="ltr"] .service-card::before {
    right: auto;
    left: 0;
    border-radius: 4px 0 0 4px;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(30, 58, 95, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
    background: var(--primary);
}

.service-card:hover::before {
    width: 8px;
}

.service-card:hover::after {
    transform: translate(-50%, -50%) scale(1.5);
}

.service-card:hover .service-title {
    color: var(--white);
}

.service-card:hover .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-card:hover .service-icon {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: iconPulse 1s ease infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.service-card:hover .service-icon svg {
    color: var(--primary);
    stroke: var(--primary);
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(0);
    }

    75% {
        transform: translateY(-3px);
    }
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
    position: relative;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px dashed var(--secondary);
    opacity: 0.4;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
    opacity: 0.3;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
    stroke-width: 1.5;
    transition: all 0.4s ease;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.4s ease;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    transition: color 0.4s ease;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    margin-top: auto;
    width: 100%;
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.service-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.service-link:hover::before {
    left: 100%;
}

.service-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

[dir="rtl"] .service-link svg {
    transform: rotate(180deg);
}

.service-card:hover .service-link {
    background: linear-gradient(135deg, var(--secondary) 0%, #b8962e 100%);
    color: var(--white);
    border-color: var(--secondary);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.service-card:hover .service-link svg {
    transform: translateX(-8px);
    animation: arrowMove 1s ease infinite;
}

@keyframes arrowMove {

    0%,
    100% {
        transform: translateX(-8px);
    }

    50% {
        transform: translateX(-12px);
    }
}

[dir="rtl"] .service-card:hover .service-link svg {
    transform: rotate(180deg) translateX(-8px);
}

/* ==========================================
   Stats Section - Dynamic Professional Design
   ========================================== */
.stats {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') center center / cover no-repeat;
    z-index: -2;
}

.stats-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.92) 0%, rgba(30, 58, 95, 0.88) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    color: var(--white);
    padding: 40px 20px;
    position: relative;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.stat-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--secondary);
    stroke-width: 1.5;
}

.stat-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 900;
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37 0%, #F5D76E 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
    animation: shimmer 3s infinite;
    background-size: 200% 100%;
}

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.stat-suffix {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--secondary);
}

.stat-label {
    display: block;
    margin-top: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==========================================
   About Section
   ========================================== */
.about {
    padding: var(--section-padding) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-description {
    color: var(--text-body);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.about-features {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.15);
    /* Subtle gold border */
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Stylish accent bar on the side */
.about-features li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
    border-radius: 0 4px 4px 0;
}

[dir="ltr"] .about-features li::before {
    right: auto;
    left: 0;
    border-radius: 4px 0 0 4px;
}

.about-features li:hover {
    transform: translateX(-8px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.about-features li:hover::before {
    width: 8px;
    /* Accent bar expands */
}

[dir="ltr"] .about-features li:hover {
    transform: translateX(8px);
}

.about-features li:nth-child(1) {
    animation-delay: 0.1s;
}

.about-features li:nth-child(2) {
    animation-delay: 0.2s;
}

.about-features li:nth-child(3) {
    animation-delay: 0.3s;
}

.about-features li:nth-child(4) {
    animation-delay: 0.4s;
}

.about-features svg {
    width: 45px;
    /* Increased container size */
    height: 45px;
    padding: 10px;
    background: rgba(212, 175, 55, 0.1);
    /* Gold tint background */
    border-radius: 50%;
    color: var(--secondary);
    flex-shrink: 0;
    stroke-width: 2;
    transition: all 0.4s ease;
}

.about-features li:hover svg {
    transform: rotate(360deg);
    /* Playful rotation */
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-image {
    position: relative;
}

.image-wrapper {
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: url('../images/about-team.png') center center / cover no-repeat;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-dark);
    color: var(--white);
    padding: 24px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-gold);
}

[dir="ltr"] .about-badge {
    right: auto;
    left: -20px;
}

.badge-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    line-height: 1;
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
}

/* ==========================================
   Why Us Section
   ========================================== */
.why-us {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

.feature-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-fast);
    border: 1px solid var(--gray-200);
    position: relative;
}

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

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.08) 0%, rgba(212, 175, 55, 0.12) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all var(--transition-fast);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
    stroke-width: 1.5;
    transition: all var(--transition-fast);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

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

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid var(--secondary);
    opacity: 0.2;
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}


/* ==========================================
   CTA Section
   ========================================== */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') center center / cover no-repeat;
    z-index: 0;
}

.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.92) 0%, rgba(184, 134, 11, 0.95) 100%);
    z-index: 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

.cta p {
    color: var(--primary);
    opacity: 0.85;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta .btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    padding: 20px 48px;
    font-size: 1.1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta .btn-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.contact-item:hover {
    background: var(--gray-50);
    border-color: var(--gray-200);
    transform: translateX(-5px);
}

[dir="ltr"] .contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.08) 0%, rgba(212, 175, 55, 0.12) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: all var(--transition-normal);
}

.contact-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid var(--secondary);
    opacity: 0.2;
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
    stroke-width: 1.5;
    transition: all var(--transition-normal);
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.contact-item:hover .contact-icon svg {
    stroke: var(--white);
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.contact-form {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-lg);
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-group label svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 22px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-400);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    border-color: var(--gray-300);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
    background: var(--white);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231E3A5F' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    background-size: 20px;
    padding-left: 50px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.btn-submit {
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    padding: 18px 30px;
    margin-top: 10px;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-note svg {
    color: var(--secondary);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') center center / cover no-repeat;
    opacity: 0.08;
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 25, 47, 0.95) 0%, rgba(30, 58, 95, 0.98) 100%);
    z-index: 0;
}

.footer>* {
    position: relative;
    z-index: 1;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--secondary);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-links h4,
.footer-newsletter h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   Floating WhatsApp Button
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /* Always on right */
    left: auto;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    /* Always to the left of the button */
    left: auto;
    background: var(--text-dark);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   Animations
   ========================================== */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 80px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 20px;
        z-index: 999;
    }

    [dir="ltr"] .nav-menu {
        right: auto;
        left: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }

    [dir="ltr"] .whatsapp-float {
        left: auto;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .btn-lg {
        padding: 16px 30px;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-card,
    .feature-card {
        padding: 30px 20px;
    }
}

/* ==========================================
   Service Pages Styles
   ========================================== */
.header-dark {
    background: var(--primary);
}

.service-hero {
    padding: 180px 0 100px;
    position: relative;
    background: var(--gradient-primary);
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') center center / cover no-repeat;
    opacity: 0.15;
}

/* Custom Service Hero Backgrounds with Real Images */
.service-hero-bg.bookkeeping-bg {
    background:
        linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(37, 99, 235, 0.75) 100%),
        url('../images/bookkeeping-bg.png') center center / cover no-repeat;
    opacity: 1;
}

.service-hero-bg.consulting-bg {
    background:
        linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, rgba(139, 92, 246, 0.7) 100%),
        url('../images/consulting-bg.png') center center / cover no-repeat;
    opacity: 1;
}

.service-hero-bg.tax-bg {
    background:
        linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(16, 185, 129, 0.75) 100%),
        url('../images/tax-bg.png') center center / cover no-repeat;
    opacity: 1;
}

.service-hero-bg.audit-bg {
    background:
        linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, rgba(245, 158, 11, 0.7) 100%),
        url('../images/audit-bg.png') center center / cover no-repeat;
    opacity: 1;
}

.service-hero-bg.analytics-bg {
    background:
        linear-gradient(135deg, rgba(30, 58, 95, 0.75) 0%, rgba(6, 182, 212, 0.65) 100%),
        url('../images/analytics-bg.png') center center / cover no-repeat;
    opacity: 1;
}

.service-hero-bg.technology-bg {
    background:
        linear-gradient(135deg, rgba(30, 58, 95, 0.75) 0%, rgba(99, 102, 241, 0.65) 100%),
        url('../images/technology-bg.png') center center / cover no-repeat;
    opacity: 1;
}

.service-hero-bg.certifications-bg {
    background:
        linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, rgba(212, 175, 55, 0.7) 100%),
        url('../images/certifications-bg.png') center center / cover no-repeat;
    opacity: 1;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.service-details {
    padding: var(--section-padding) 0;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.service-main h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-main h3 {
    font-size: 1.5rem;
    margin: 40px 0 24px;
    color: var(--text-dark);
}

.service-main>p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-lg);
    transform: translateX(-5px);
}

[dir="ltr"] .feature-item:hover {
    transform: translateX(5px);
}

.feature-check {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.service-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.sidebar-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.sidebar-card>p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.related-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-services li {
    border-bottom: 1px solid var(--gray-100);
}

.related-services li:last-child {
    border-bottom: none;
}

.related-services a {
    display: block;
    padding: 14px 0;
    color: var(--text-dark);
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
    padding-right: 16px;
}

[dir="ltr"] .related-services a {
    padding-right: 0;
    padding-left: 16px;
}

.related-services a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
}

[dir="ltr"] .related-services a::before {
    right: auto;
    left: 0;
}

.related-services a:hover {
    color: var(--primary);
    padding-right: 24px;
}

[dir="ltr"] .related-services a:hover {
    padding-right: 0;
    padding-left: 24px;
}

@media (max-width: 992px) {
    .service-content-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }
}

/* ==========================================
   Partners Section - Premium Infinite Carousel
   ========================================== */
.partners {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 10%, var(--secondary) 50%, transparent 90%);
}

.partners::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 10%, var(--secondary) 50%, transparent 90%);
}

.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 50px 0;
    /* Remove edge fade for seamless look */
}

/* Premium Continuous Carousel - Seamless Infinite Loop */
.partners-track {
    display: flex;
    align-items: center;
    gap: 0;
    /* No gap for seamless flow */
    width: max-content;
    animation: scrollPartners 20s linear infinite;
    will-change: transform;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    margin: 0 25px;
    /* Add margin for spacing between logos */
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-100);
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Shine effect overlay */
.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s ease;
}

/* Glow effect */
.partner-logo::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-12px) scale(1.08);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    border-color: var(--secondary);
    background: var(--white);
}

.partner-logo:hover::before {
    left: 100%;
}

.partner-logo:hover::after {
    opacity: 0.3;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo:hover img {
    transform: scale(1.15);
}

/* ==========================================
   Team Section - Premium Professional Design
   ========================================== */
.team {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 20%, var(--gray-200) 50%, transparent 80%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid var(--gray-100);
}

/* Animated border effect */
.team-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--secondary), var(--primary), var(--secondary));
    background-size: 200% 200%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderGlow 4s ease infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(30, 58, 95, 0.2);
    border-color: transparent;
}

.team-card:hover::before {
    opacity: 1;
}

.team-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    position: relative;
    overflow: hidden;
}

/* Overlay on image */
.team-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(30, 58, 95, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.team-card:hover .team-image::before {
    opacity: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-image img {
    transform: scale(1.12);
}

.team-content {
    padding: 28px;
    text-align: center;
    position: relative;
    background: var(--white);
}

/* Premium accent bar */
.team-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 0 0 4px 4px;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-content::before {
    transform: scaleX(1);
}

.team-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    color: var(--primary);
}

.team-role {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-sm);
}

.team-bio {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Enhanced Social Links */
.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.team-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-social a:hover {
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.team-social a:hover::before {
    opacity: 1;
}

.team-social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    position: relative;
    z-index: 1;
}

/* ==========================================
   Certificates Section
   ========================================== */
.certificates {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.certificates-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.certificate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all var(--transition-normal);
}

.certificate-item:hover {
    transform: translateY(-8px) scale(1.05);
}

.cert-icon {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.cert-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.certificate-item:hover .cert-icon img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cert-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificates-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .certificates-grid {
        gap: 30px;
    }

    .certificate-item {
        width: 45%;
    }
}

/* ==========================================
   Journey Animations
   ========================================== */
.journey-step {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.journey-step.active {
    opacity: 1;
    transform: translateY(0);
}

.journey-step:nth-child(2) {
    transition-delay: 0.2s;
}

.journey-step:nth-child(3) {
    transition-delay: 0.4s;
}

.journey-step:nth-child(4) {
    transition-delay: 0.6s;
}


@media (max-width: 576px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .certificates-grid {
        flex-direction: column;
        gap: 40px;
    }

    .certificate-item {
        width: 100%;
    }

    .partners-slider {
        padding: 10px 0;
    }

    .journey-steps-container {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Enhanced Scroll Animations
   ========================================== */
.reveal {
    opacity: 0;
    visibility: hidden;
    will-change: opacity, transform;
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1),
        transform 0.8s cubic-bezier(0.5, 0, 0, 1),
        visibility 0.8s ease;
}

/* Animation Types */
.reveal-up {
    transform: translateY(40px);
}

.reveal-down {
    transform: translateY(-40px);
}

.reveal-left {
    transform: translateX(40px);
}

.reveal-right {
    transform: translateX(-40px);
}

.reveal-zoom {
    transform: scale(0.92);
}

/* Active State */
.reveal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0) scale(1);
}

/* Stagger Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* ==========================================
   Mobile-First Enhancements
   ========================================== */

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {

    .service-card:hover,
    .team-card:hover,
    .partner-logo:hover {
        transform: none;
    }

    .service-card:active {
        transform: scale(0.98);
    }

    .btn:active {
        transform: scale(0.95);
    }

    /* Larger touch targets */
    .nav-link,
    .footer-links a,
    .team-social a {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon svg {
        width: 32px;
        height: 32px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 250px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-icon {
        margin: 0 auto;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }
}

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}

/* ==========================================
   Performance Optimizations
   ========================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .partners-track {
        animation: none;
    }

    .reveal {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

/* GPU acceleration for animations */
.service-card,
.team-card,
.partner-logo,
.btn,
.whatsapp-float {
    will-change: transform;
    backface-visibility: hidden;
}

/* Optimize images */
img {
    content-visibility: auto;
}

/* ==========================================
   Accessibility & Usability
   ========================================== */

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --gray-100: #f0f0f0;
        --gray-200: #d0d0d0;
        --text-light: #333;
    }

    .btn {
        border: 2px solid currentColor;
    }
}

/* Print styles */
@media print {

    .header,
    .footer,
    .whatsapp-float,
    .cta,
    .contact-form {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .service-card,
    .team-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ==================== */
/* Partners Swiper Carousel */
/* ==================== */
.partners-swiper {
    width: 100%;
    padding: 40px 0;
}

.partners-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.partners-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners-swiper .partner-logo {
    width: 180px;
    height: 100px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--gray-100);
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 auto;
}

.partners-swiper .partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    border-color: var(--secondary);
}

.partners-swiper .partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

/* ==================== */
/* Working Hours & Location Section */
/* ==================== */
.location-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: stretch;
}

.working-hours-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-100);
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--secondary);
}

.hours-header svg {
    width: 40px;
    height: 40px;
    stroke: var(--secondary);
}

.hours-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(30, 58, 95, 0.05) 100%);
}

.hours-item .day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-item .time {
    font-weight: 500;
    color: var(--secondary);
    background: rgba(212, 175, 55, 0.15);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.hours-item .time.closed {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.hours-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: var(--radius-md);
    border-right: 3px solid var(--secondary);
}

.hours-note svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.hours-note span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

@media (max-width: 991px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .working-hours-card {
        padding: 20px;
    }

    .hours-header h3 {
        font-size: 1.2rem;
    }

    .hours-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ==========================================
   Professional Brand Notification
   ========================================== */
.sds-notification-toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 350px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-right: 4px solid var(--secondary);
    /* Brand accent */
}

.sds-notification-toast.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sds-notification-toast.success {
    border-right-color: #10B981;
    /* Success Green */
}

.sds-notification-toast.error {
    border-right-color: #EF4444;
    /* Error Red */
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sds-notification-toast.success .notification-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.sds-notification-toast.error .notification-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.notification-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.notification-content {
    flex-grow: 1;
}

.notification-title {
    margin: 0 0 2px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.notification-message {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 4px;
    /* Adjust for border radius */
    right: 4px;
    height: 3px;
    background: #f3f4f6;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.notification-progress-bar {
    height: 100%;
    background: var(--secondary);
    width: 100%;
    transform-origin: left;
    transition: transform linear;
}

.sds-notification-toast.success .notification-progress-bar {
    background: #10B981;
}

.sds-notification-toast.error .notification-progress-bar {
    background: #EF4444;
}

@media (max-width: 480px) {
    .sds-notification-toast {
        min-width: unset;
        width: calc(100% - 40px);
        top: 20px;
    }
}