/* ============================================
   PREMIUM ENTERPRISE DESIGN SYSTEM
   Modern, Professional, High-Quality
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
:root {
    /* Premium Color Palette */
    --primary-color: #0f766e;
    --primary-light: #14b8a6;
    --primary-dark: #115e59;
    --secondary-color: #0d9488;
    --accent-color: #10b981;
    --accent-hover: #059669;
    
    /* Neutral Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;
    --background: #ffffff;
    --surface: #f8fafc;
    --surface-hover: #f1f5f9;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    /* Status Colors */
    --success: #10b981;
    --error: #ef4444;
    --warning: #10b981;
    --info: #0f766e;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
    touch-action: manipulation; /* Improve touch performance */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-primary);
    background: var(--background);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* ============================================
   IMAGE OPTIMIZATION
   ============================================ */
img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Lazy loading support - prevent layout shift */
img[loading="lazy"] {
    min-height: 100px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Once loaded, remove background */
img[loading="lazy"].loaded {
    background: none;
    animation: none;
}

/* Smooth image transitions */
img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

img:not([src]) {
    visibility: hidden;
}

/* Prevent broken image icon */
img::before {
    content: '';
    display: block;
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: clamp(1.375rem, 2.5vw, 1.875rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    letter-spacing: 0.01em;
    max-width: 75ch;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(15, 118, 110, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(15, 118, 110, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--surface);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   PREMIUM HEADER
   ============================================ */

.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow var(--transition-base);
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

/* Hide header on mobile scroll down */
.main-header.header-hidden {
    transform: translateY(-100%);
}

/* Keep header visible when menu is open */
.main-header.menu-open {
    transform: translateY(0) !important;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    min-height: 90px;
    padding: 0.5rem 0;
}

.logo {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.main-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: transform var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background: rgba(15, 118, 110, 0.08);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

/* Bridge the gap between trigger and dropdown to prevent hover loss */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.5rem;
    display: none;
    z-index: 99;
}

.has-dropdown:hover::after {
    display: block;
}

.dropdown-arrow {
    font-size: 0.75em;
    transition: transform var(--transition-base);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    min-width: 240px;
    background: white;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-xl);
    padding: 0.75rem;
    z-index: 100;
    border: 1px solid var(--border);
    animation: slideDown 0.3s ease-out;
    transition: opacity 0.15s ease, visibility 0.15s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.dropdown-menu li {
    width: 100%;
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    background: transparent;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--surface);
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Header CTA Button */
.header-cta {
    flex-shrink: 0;
    font-size: 0.95rem;
    padding: 0.875rem 1.75rem;
}

/* Mobile-only elements - hide on desktop */
.mobile-only {
    display: none;
}

/* Hide Contact button on mobile - it's in the navigation */
@media (max-width: 768px) {
    .header-cta {
        display: none;
    }
    
    /* Show mobile-only elements */
    .mobile-only {
        display: block;
    }
}

/* Mobile Styles */
@media (max-width: 900px) {
    .header-flex {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .main-nav {
        order: 3;
        width: 100%;
        justify-content: flex-start;
    }
    .nav-links {
        gap: 1.2rem;
    }
    .header-cta {
        order: 2;
        margin-left: 0;
        width: 100%;
        margin-top: 0.5rem;
        text-align: center;
    }
}
@media (max-width: 700px) {
    .header-flex {
        flex-direction: column;
        align-items: stretch;
        min-height: unset;
    }
    .main-nav {
        width: 100%;
        justify-content: center;
    }
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        background: #fff;
        box-shadow: 0 8px 32px rgba(37,99,235,0.10);
        border-radius: 10px;
        padding: 1rem 0;
        margin-top: 0.5rem;
        display: none;
    }
    .nav-links.active {
        display: flex;
    }
    .header-cta {
        width: 100%;
        margin: 0.5rem 0 0 0;
    }
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        margin-left: auto;
        width: 44px;
        height: 44px;
        position: relative;
        z-index: 200;
        padding: 8px;
    }
    
    .mobile-menu-toggle span {
        display: block;
        width: 28px;
        height: 3px;
        background: var(--primary-color);
        margin: 5px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
}
@media (min-width: 701px) {
    .mobile-menu-toggle {
        display: none;
    }
    
    /* Ensure desktop dropdown works smoothly */
    .dropdown-menu {
        pointer-events: auto;
    }
    
    .has-dropdown:hover .dropdown-menu,
    .has-dropdown:focus-within .dropdown-menu {
        display: block;
        pointer-events: auto;
    }
}

/* ============================================
   PREMIUM HERO SECTION  
   ============================================ */

.modern-hero {
    position: relative;
    background: linear-gradient(135deg, #0f766e 0%, #115e59 50%, #134e4a 100%);
    color: white;
    padding: 0;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.modern-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    pointer-events: none;
}

.modern-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 700px;
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #d1fae5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 600px;
    letter-spacing: 0.01em;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.125rem 2.25rem;
    font-size: 1.05rem;
    font-weight: 600;
    min-width: 200px;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.35);
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-quote {
    margin-top: 2rem;
    padding: 1.25rem 0 1.25rem 1.75rem;
    border-left: 4px solid rgba(255, 215, 0, 0.9);
    font-size: 1.0625rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.75;
    max-width: 600px;
    letter-spacing: 0.01em;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-slideshow {
    position: relative;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-slideshow .slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.hero-slideshow .slide.active {
    display: block;
}

.hero-slideshow img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Slideshow Navigation Arrows */
.slideshow-prev,
.slideshow-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.slideshow-prev:hover,
.slideshow-next:hover {
    background: rgba(15, 118, 110, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-prev {
    left: 20px;
}

.slideshow-next {
    right: 20px;
}

/* Slideshow Dots */
.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slideshow-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slideshow-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slideshow-dot.active {
    background: #14b8a6;
    border-color: white;
    transform: scale(1.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slideshow-prev,
    .slideshow-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slideshow-prev {
        left: 10px;
    }
    
    .slideshow-next {
        right: 10px;
    }
    
    .slideshow-dots {
        bottom: 15px;
    }
}

.hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Card Overflow Fixes */
.service-card,
.client-card,
.feature-item,
.stat-card {
    overflow: hidden;
}

.service-card h3,
.client-card h3,
.feature-item h3,
.stat-card h3 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.service-card p,
.client-card p,
.feature-item p {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 900px) {
    .modern-hero {
        min-height: unset;
    }
    
    .hero-flex {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero-left {
        align-items: center;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .cta-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cta-buttons .btn {
        flex: 1;
        min-width: 140px;
    }
    
    .hero-quote {
        text-align: left;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-image {
        max-width: 400px;
    }
}
  overflow: hidden;
}
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: 480px;
  position: relative;
  z-index: 2;
}
.hero-left {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3.5rem 0 3.5rem 1.5rem;
}
.hero-title {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(33,140,90,0.08);
}
.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #e0f7ea;
  font-weight: 500;
}
.hero-quote {
  margin-top: 2.2rem;
  font-size: 1.08rem;
  color: #e0f7ea;
  font-style: italic;
  border-left: 4px solid #14b8a6;
  padding-left: 1.1rem;
  opacity: 0.92;
}
.hero-right {
  flex: 1 1 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
  min-width: 260px;
}
.hero-image {
  max-width: 420px;
  max-height: 420px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(33,140,90,0.13));
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  margin: auto 0;
}
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.5rem;
    min-height: unset;
  }
  .hero-left {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
    align-items: center;
    text-align: center;
  }
  .hero-right {
    justify-content: center;
    align-items: center;
    min-width: 0;
  }
  .hero-image {
    max-width: 260px;
    max-height: 260px;
    height: auto;
    min-width: 0;
  }
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro {
    padding: 7rem 0;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(circle at center top, rgba(15, 118, 110, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.intro h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    letter-spacing: -0.01em;
}

.intro h2::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.intro p {
    font-size: clamp(1.0625rem, 2vw, 1.175rem);
    line-height: 1.85;
    max-width: 800px;
    margin: 2.5rem auto;
    color: var(--text-secondary);
    position: relative;
    letter-spacing: 0.01em;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.75rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item h3 {
    font-size: clamp(2.5rem, 4vw, 3.25rem);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-weight: 800;
    line-height: 1.2;
}

.stat-item p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.01em;
    max-width: none;
}

/* ============================================
   SERVICES SECTIONS
   ============================================ */

.services-highlights {
    padding: 7rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.services-highlights h2 {
    text-align: center;
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1.0625rem, 2vw, 1.175rem);
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    letter-spacing: 0.01em;
}

.services-intro {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.services-intro .intro-text {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.services-overview {
    padding: 5rem 0;
    background: var(--surface);
}

.why-choose-services,
.why-choose-us {
    padding: 7rem 0;
    background: white;
    position: relative;
}

.why-choose-services h2,
.why-choose-us h2 {
    text-align: center;
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    margin-bottom: 4rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.service-process {
    padding: 7rem 0;
    background: var(--surface);
}

.service-process h2 {
    text-align: center;
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    margin-bottom: 4rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
}

.step {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
    position: relative;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 1.75rem;
    box-shadow: 0 8px 16px rgba(15, 118, 110, 0.3);
    transition: all var(--transition-base);
}

.step:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.4);
}

.step h3 {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.services-highlights h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: 0 8px 16px rgba(15, 118, 110, 0.2);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.3);
}

.service-card i,
.service-icon i {
    font-size: 2rem;
    color: white;
    margin-bottom: 0;
}

.service-card h2,
.service-card h3 {
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 1.0625rem;
    letter-spacing: 0.01em;
    max-width: none;
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.service-card .learn-more:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

/* Testimonials */
.testimonials {
    padding: 7rem 0;
    background: white;
}

.testimonials h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.testimonials .section-subtitle {
    text-align: center;
    font-size: clamp(1.0625rem, 2vw, 1.175rem);
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-slider {
    margin-top: 2rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
    background: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    margin-bottom: 4rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

/* ============================================
   FEATURES / WHY CHOOSE US
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.75rem;
    margin-top: 4rem;
}

.feature-item,
.feature {
    text-align: center;
    padding: 3rem 2.25rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-item::before,
.feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.03), rgba(20, 184, 166, 0.03));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-item:hover,
.feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-item:hover::before,
.feature:hover::before {
    opacity: 1;
}

.feature-item i,
.feature i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
    display: inline-block;
}

.feature-item:hover i,
.feature:hover i {
    transform: scale(1.1) rotateY(180deg);
}

.feature-item h3,
.feature h3 {
    font-size: clamp(1.25rem, 2vw, 1.4rem);
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.feature-item p,
.feature p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    letter-spacing: 0.01em;
    max-width: none;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: 7rem 0;
    background: linear-gradient(135deg, #0f766e 0%, #115e59 50%, #134e4a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(20, 184, 166, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta h2 {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.cta p {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    line-height: 1.75;
    letter-spacing: 0.01em;
}

.cta .cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.cta .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta .btn-secondary i {
    margin-right: 0.5rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
}

.testimonials-slider {
    margin-top: 2rem;
}

/* Testimonials Page Styles */
.featured-testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
}

.quote-icon {
    font-size: 24px;
    color: #0f766e;
    margin-bottom: 20px;
}

.testimonial-card.featured .quote-icon {
    color: #fff;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    margin: 0;
    font-size: 18px;
}

.author-info p {
    margin: 5px 0 0;
    font-size: 14px;
    opacity: 0.8;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.story-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-content {
    padding: 25px;
}

.story-content h3 {
    margin: 0 0 15px;
    font-size: 20px;
}

.story-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.story-metrics {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.metric {
    text-align: center;
}

.metric .number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #0f766e;
}

.metric .label {
    font-size: 14px;
    color: #666;
}

.read-more {
    display: inline-block;
    color: #0f766e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #115e59;
}

/* Video Testimonials Section */
.video-testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card h3 {
    margin: 20px 20px 10px;
    font-size: 18px;
}

.video-card p {
    margin: 0 20px 20px;
    color: #666;
}

/* Client Logos Section */
.client-logos {
    padding: 60px 0;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    margin-top: 40px;
}

.logos-grid img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logos-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Footer */
.main-footer {
    background-color: #1e293b;
    color: white;
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info,
.footer-contact,
.footer-links,
.footer-social {
    min-width: 200px;
}

.footer-info h3,
.footer-contact h4,
.footer-links h4,
.footer-social h4 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact i {
    margin-right: 0.75rem;
    color: var(--primary-color);
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.website-credit {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

.website-credit a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.website-credit a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: white;
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal span {
    color: var(--light-text);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    color: #fff;
    line-height: 1;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-info,
    .footer-contact,
    .footer-links,
    .footer-social {
        min-width: 100%;
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .footer-legal {
        justify-content: center;
    }

    .testimonial-card.featured {
        grid-column: span 1;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Styles */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Flyer Style Blue Gradient Cards */
.flyer-style .flyer-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}
.flyer-style .flyer-card .package-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.flyer-style .flyer-card .package-sub {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 0.5px;
}
.flyer-style .flyer-card .package-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 1.5rem auto;
}
.flyer-style .flyer-card .package-features li {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.3em 0.7em;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
}
.flyer-style .flyer-card .package-features li::before {
    color: #fff;
    min-width: 1.2em;
}
.flyer-style .flyer-card .package-price,
.flyer-style .flyer-card .service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #14b8a6;
    margin-top: 1rem;
}
.flyer-style .flyer-card .service-price {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--primary-color);
    border-radius: 8px;
    padding: 2px 10px;
    margin-left: 10px;
}
.flyer-style .flyer-card.trust-card,
.flyer-style .flyer-card.tax-card {
    text-align: center;
}

/* Flyer Contact Bar */
.flyer-contact-bar {
    background: linear-gradient(90deg, #0f766e 0%, #115e59 100%);
    color: #fff;
    padding: 1.5rem 0;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    box-shadow: 0 -2px 12px rgba(15, 118, 110, 0.15);
}
.flyer-contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.flyer-contact-info {
    display: flex;
    gap: 2rem;
    font-size: 1.1rem;
    align-items: center;
}
.flyer-contact-info i {
    margin-right: 8px;
    color: #14b8a6;
}
.flyer-cta {
    background: #14b8a6;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.10);
    transition: background 0.2s, transform 0.2s;
}
.flyer-cta:hover {
    background: #10b981;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .flyer-contact-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .flyer-contact-bar {
        padding: 1rem 0.5rem;
    }
}

/* Resources Page Styles */
.resources-section {
  padding: 3rem 0 4rem 0;
}
.resources-block {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.06);
  padding: 2rem 2.5rem 1.5rem 2.5rem;
  margin-bottom: 2.5rem;
}
.resources-block h2 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--primary-color);
}
.resources-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.resources-list li {
  margin-bottom: 1rem;
  font-size: 1.08rem;
  line-height: 1.7;
}
.resources-list a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s;
}
.resources-list a:hover {
  color: var(--secondary-color);
}
.success-story {
  background: var(--light-background);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  margin-bottom: 1.2rem;
}
.success-story h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.15rem;
  color: var(--secondary-color);
}
.success-story p {
  margin: 0;
  color: #333;
  font-style: italic;
}
@media (max-width: 700px) {
  .resources-block {
    padding: 1.2rem 1rem 1rem 1rem;
  }
  .resources-section {
    padding: 1.5rem 0 2rem 0;
  }
}

/* About Page Styles */
.page-hero {
  padding: 6rem 0 4rem 0;
  background: linear-gradient(135deg, #0f766e 0%, #115e59 40%, #1e3a5f 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(255,255,255,0.05), transparent);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.page-hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  opacity: 1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  font-weight: 500;
}
  padding: 2.5rem 0 2rem 0;
}
.about-section h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}
.about-section h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about-section .icon {
  font-size: 1.3em;
  color: var(--primary-color);
}
.company-history, .mission-vision, .team, .certifications, .why-choose-us {
  margin-bottom: 2.5rem;
}
.company-history, .mission-vision, .team, .certifications, .why-choose-us, .services-overview-section, .industries-section {
  padding: 3rem 0;
}

.company-history .history-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.company-history h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--primary-color);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.company-history p {
  text-align: left;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #444;
  font-size: 1.05rem;
}

.services-overview-section h2,
.industries-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.industries-section .section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.mission-vision-grid {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.mission, .vision {
  background: var(--light-background);
  border-radius: 10px;
  padding: 1.5rem 1.5rem 1.2rem 1.5rem;
  flex: 1 1 260px;
  min-width: 220px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.06);
  margin-bottom: 1rem;
}
.mission i, .vision i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.team-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.team-member {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.06);
  padding: 1.2rem 1.2rem 1rem 1.2rem;
  text-align: center;
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 260px;
}
.team-member img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.7rem;
}
.team-member h3 {
  margin: 0.5rem 0 0.2rem 0;
  font-size: 1.1rem;
  color: var(--secondary-color);
}
.team-member .position {
  font-size: 0.98rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.team-member .bio {
  font-size: 0.97rem;
  color: #444;
  opacity: 0.95;
}

/* Services Overview Section in About Page */
.services-overview-section {
  background: var(--light-background);
}

.services-overview-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--primary-color);
}

.competencies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.competency-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.competency-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.competency-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.competency-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text-color);
}

.competency-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--light-text);
}

/* Industries Section */
.industries-section {
  background: white;
}

.industries-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 2.5rem;
}

.industries-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.industry-tag {
  background: var(--light-background);
  color: var(--text-color);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.industry-tag:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.industry-tag i {
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .mission-vision-grid, .team-grid {
    flex-direction: column;
    gap: 1.2rem;
  }
}

/* Animation Classes */
.animate-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.animate-fade.visible {
  opacity: 1;
  transform: none;
}
.animate-slide {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.animate-slide.visible {
  opacity: 1;
  transform: none;
}
/* About Feature Styles */
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 2.2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.06);
  padding: 1.2rem 1.5rem 1.1rem 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.about-feature:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.13);
  transform: translateY(-4px) scale(1.025);
}
.about-icon {
  font-size: 2.1rem;
  color: var(--primary-color);
  min-width: 2.1rem;
  transition: color 0.3s, transform 0.3s;
}
.about-feature:hover .about-icon {
  color: var(--secondary-color);
  transform: scale(1.18) rotate(-6deg);
}
@media (max-width: 700px) {
  .about-feature {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1rem 0.8rem 1rem;
  }
}

/* Contact Page Styles */
.contact-section {
  padding: 3rem 0 4rem 0;
}
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.06);
  padding: 2rem;
}

.contact-info h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.3rem;
  color: var(--primary-color);
  min-width: 1.3rem;
}

.contact-form {
  flex: 2;
  min-width: 400px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.06);
  padding: 2rem;
}

.contact-form h2 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-form .form-intro {
  color: #666;
  margin-bottom: 2rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .checkbox-group {
  margin-bottom: 1.5rem;
}

.contact-form .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
}

.contact-form .checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.contact-form .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .contact-grid {
    flex-direction: column;
    gap: 2rem;
  }
  
  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-form,
  .contact-info {
    min-width: 100%;
  }
}

.contact-map {
  width: 100%;
  max-width: 500px;
  height: 300px;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.06);
  margin: 0 auto 1.5rem auto;
  display: block;
}
@media (max-width: 700px) {
  .contact-map {
    max-width: 100%;
    height: 200px;
  }
}

/* Center all section subtitles and their content */
section h2, section h3 {
  text-align: center;
}
.container, .features-grid, .team-grid, .cert-grid, .services-grid, .pricing-grid, .faq-grid, .resources-block, .cta, .testimonials-slider, .mission-vision-grid, .benefits-grid, .case-studies-grid, .approach-steps, .process-steps {
  justify-content: center;
  text-align: center;
}
.features-grid, .team-grid, .cert-grid, .services-grid, .pricing-grid, .faq-grid, .benefits-grid, .case-studies-grid, .approach-steps, .process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.features-grid > *, .team-grid > *, .cert-grid > *, .services-grid > *, .pricing-grid > *, .faq-grid > *, .benefits-grid > *, .case-studies-grid > *, .approach-steps > *, .process-steps > * {
  flex: 1 1 300px;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .features-grid, .team-grid, .cert-grid, .services-grid, .pricing-grid, .faq-grid, .benefits-grid, .case-studies-grid, .approach-steps, .process-steps {
    flex-direction: column;
    align-items: center;
  }
}

.resources-block, .resources-block h2, .resources-block ul, .resources-block li, .resources-block .success-story {
  text-align: center;
  justify-content: center;
}
.resources-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-col .contact-box, .footer-contact-box, .footer-col textarea, .footer-col input {
  background: #232b36 !important; /* Match footer background */
  color: #fff !important;
  border: 1px solid #2d3748;
  border-radius: 12px;
  box-shadow: none;
}

.footer-col .contact-info {
  background: #232b36;
  color: #fff;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.footer-col .contact-info li, .footer-col .contact-info i {
  color: #fff;
}

/* Restore grid layout for multi-column sections */
.approach-steps, .benefits-grid, .features-grid, .team-grid, .case-studies-grid, .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: start;
  margin-bottom: 2.5rem;
}
.approach-steps > *, .benefits-grid > *, .features-grid > *, .team-grid > *, .case-studies-grid > *, .process-steps > * {
  text-align: left;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.06);
  padding: 1.2rem 1.2rem 1rem 1.2rem;
  margin: 0;
}
.approach-steps h3, .benefits-grid h3, .features-grid h3, .team-grid h3, .case-studies-grid h3, .process-steps h3 {
  text-align: left;
}
.approach-steps .step-number {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
/* Brand color for icons */
.approach-steps i, .benefits-grid i, .features-grid i, .team-grid i, .case-studies-grid i, .process-steps i {
  color: var(--primary-color) !important;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}
/* Center section titles only */
section h2, section h3 {
  text-align: center;
}

/* FAQ Section Modern Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
  justify-items: center;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(33,140,90,0.08);
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  text-align: left;
  max-width: 500px;
  width: 100%;
}
.faq-item h3 {
  color: var(--primary-color);
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  text-align: left;
}
.faq-item p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 0;
}
/* Center FAQ section title only */
.faq-section h2 {
  text-align: center;
}
@media (max-width: 700px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* Remove underlines from links globally */
a, .resources-list a {
  text-decoration: none !important;
}
a:hover, .resources-list a:hover {
  text-decoration: underline !important;
}
/* Remove bullets from lists globally */
ul, .resources-list, .faq-grid ul, .features-grid ul, .service-features, .package-features {
  list-style: none;
  padding-left: 0;
}
/* Use tick icons for feature lists only */
.service-features li::before, .package-features li::before {
  content: '\2713'; /* Unicode check mark */
  color: var(--primary-color);
  margin-right: 0.6em;
  font-weight: bold;
}

/* Privacy/Terms Section Improvements */
.privacy-section, .terms-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.06);
  max-width: 700px;
  margin: 2.5rem auto 3rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
}

.privacy-section h2, .terms-section h2 {
  font-size: 1.4rem;
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
  color: var(--primary-color);
  text-align: left;
}

.privacy-section p, .terms-section p {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 1.2rem;
  text-align: left;
}

@media (max-width: 700px) {
  .privacy-section, .terms-section {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

.contact-info, .contact-info * {
  text-align: left !important;
}

.contact-info {
  font-size: 0.98rem;
  padding: 1.2rem 0.7rem 1rem 0.7rem;
}
.contact-info h2 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7em;
  margin-bottom: 0.7em;
}
.info-item i {
  font-size: 1.1rem;
  margin-top: 0.1em;
}
.info-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2em;
}
.contact-info p, .contact-info li {
  margin-bottom: 0.2em;
  font-size: 0.97rem;
}

.contact-grid {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact-info p {
  margin-bottom: 0.7em;
}

.system-pages-dropdown {
  display: none;
}
@media (max-width: 900px) {
  .system-pages-dropdown {
    display: block;
    margin-top: 1rem;
  }
  .system-pages-dropdown .dropdown-menu {
    display: none;
    background: #fff;
    box-shadow: 0 8px 32px rgba(37,99,235,0.12);
    border-radius: 10px;
    padding: 0.5rem 0;
    margin-top: 0.3rem;
    position: static;
  }
  .system-pages-dropdown.open .dropdown-menu {
    display: block;
  }
  .system-pages-toggle {
    display: flex;
    align-items: center;
    gap: 0.3em;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    background: none;
    cursor: pointer;
    width: 100%;
    border: none;
    outline: none;
  }
  .system-pages-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }
} 
/* FAQ Section */
.faq-section {
  padding: 3rem 0 4rem;
  background: var(--light-background);
}

/* FAQ Instructions */
.faq-instructions {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(15, 118, 110, 0.1);
  color: var(--primary-color);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid rgba(15, 118, 110, 0.2);
}

.faq-instructions i {
  font-size: 1.2rem;
}

.faq-category {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-category h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.faq-category h2 i {
  font-size: 1.6rem;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-item.active {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(33, 140, 90, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  background: white;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::after {
  content: 'Click to expand';
  position: absolute;
  right: 4.5rem;
  font-size: 0.85rem;
  color: var(--primary-color);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  font-weight: 500;
}

.faq-question:hover::after {
  opacity: 1;
}

.faq-item.active .faq-question::after {
  content: 'Click to collapse';
}

.faq-question:hover {
  background: var(--light-background);
  padding-left: 1.75rem;
}

.faq-item.active .faq-question {
  background: var(--light-background);
}

.faq-question h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-color);
  flex: 1;
  padding-right: 1rem;
}

.faq-toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--primary-color);
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(15, 118, 110, 0.3);
}

.faq-item:hover .faq-toggle {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.4);
}

.faq-item.active .faq-toggle {
  background: var(--accent-color);
  transform: rotate(0);
}

.faq-toggle i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: white;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--light-text);
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .faq-category {
    padding: 1.5rem;
  }
  .faq-question h3 {
    font-size: 1rem;
  }
  .faq-answer p {
    font-size: 0.95rem;
  }
  .faq-instructions {
    font-size: 0.9rem;
    padding: 0.875rem 1.25rem;
    text-align: center;
  }
  .faq-question::after {
    display: none; /* Hide hint text on mobile */
  }
  .faq-question {
    padding: 1.25rem;
  }
  .faq-question:hover {
    padding-left: 1.25rem;
  }
}


/* ============================================
   PREMIUM ANIMATIONS & UTILITIES
   ============================================ */

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Hover Effects */
.hover-lift {
    transition: all var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

/* Responsive Utilities */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

@media (max-width: 768px) {
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Smooth Scrolling */
html {
    scroll-padding-top: 100px;
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .main-header,
    .mobile-menu-toggle,
    .cta,
    .main-footer {
        display: none;
    }
}



/* ============================================
   PREMIUM PAGE LOADER
   ============================================ */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    color: white;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    margin: 0 auto 1.5rem;
}

.loader-text {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}



/* ============================================
   CLIENT SHOWCASE
   ============================================ */

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.client-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(15, 118, 110, 0.1);
}

.client-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.client-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-base);
}

.client-card:hover .client-logo {
    transform: scale(1.1) rotate(5deg);
}

.client-logo i {
    font-size: 2rem;
    color: white;
}

.client-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.client-industry {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.client-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.0625rem;
    letter-spacing: 0.01em;
    max-width: none;
}

.client-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    padding-bottom: 2px;
}

.client-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.client-link:hover {
    color: var(--secondary-color);
}

.client-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}



/* ============================================
   IMPROVED TEXT PRESENTATION
   ============================================ */

/* Better text rendering for all headings */
h1, h2, h3, h4, h5, h6 {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Improved paragraph spacing in sections */
section p {
    margin-bottom: 1.5rem;
}

section p:last-child {
    margin-bottom: 0;
}

/* Better list spacing */
ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.75rem;
    line-height: 1.75;
}

/* Responsive text improvements */
@media (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 6vw, 2.5rem);
        line-height: 1.3;
    }
    
    h2 {
        font-size: clamp(1.625rem, 5vw, 2rem);
        line-height: 1.35;
    }
    
    h3 {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
        line-height: 1.4;
    }
    
    body, p {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    section {
        padding: 4rem 0 !important;
    }
    
    .hero-flex {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem 0;
    }
    
    .stat-item,
    .service-card,
    .feature,
    .feature-item,
    .client-card {
        padding: 2rem 1.5rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
}


/* ============================================
   COMPREHENSIVE MOBILE OPTIMIZATIONS
   ============================================ */

/* Mobile viewport optimization */
@viewport {
    width: device-width;
    zoom: 1.0;
}

/* Touch-friendly interactions */
@media (max-width: 768px) {
    /* Minimum touch target size */
    button,
    .btn,
    a.btn,
    .nav-links a,
    .social-links a,
    .faq-question,
    input[type="submit"],
    input[type="button"] {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Header improvements */
    .main-header {
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        will-change: transform; /* Optimize for animation */
    }
    
    /* Header slides up smoothly on scroll down */
    .main-header.header-hidden {
        transform: translateY(-100%);
        box-shadow: none;
    }
    
    /* Always show header when menu is open */
    .main-header.menu-open {
        transform: translateY(0) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .logo img {
        max-height: 45px;
        width: auto;
    }
    
    /* Mobile navigation improvements */
    .mobile-menu-toggle {
        padding: 0.5rem;
        margin-right: -0.5rem;
    }
    
    .nav-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    
    .nav-links.active {
        max-height: 800px; /* Increased to accommodate dropdowns */
        padding: 1.5rem 0;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        padding: 1rem 1.5rem;
        display: block;
        font-size: 1.05rem;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(15, 118, 110, 0.05);
        margin: 0.5rem 1rem;
        border-radius: 8px;
        display: none; /* Hidden by default */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    /* Show dropdown when parent is open */
    .has-dropdown.open .dropdown-menu {
        display: block;
        max-height: 500px;
    }
    
    /* Rotate arrow when dropdown is open */
    .has-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
        display: inline-block;
        transition: transform 0.3s ease;
    }
    
    .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    /* Hero section mobile */
    .hero-flex {
        padding: 2rem 0 3rem;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.125rem) !important;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Hero slideshow mobile */
    .hero-slideshow {
        border-radius: 12px;
    }
    
    .slideshow-prev,
    .slideshow-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slideshow-dots {
        bottom: 10px;
        gap: 8px;
    }
    
    .slideshow-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Stats section mobile */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: clamp(2rem, 10vw, 2.5rem) !important;
    }
    
    /* Services grid mobile */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    /* Contact form mobile */
    .contact-grid {
        padding: 1.5rem 0;
    }
    
    .contact-info,
    .contact-form {
        min-width: 100%;
        padding: 1.5rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-form textarea {
        min-height: 150px;
    }
    
    .contact-form .btn {
        padding: 1.125rem;
        font-size: 1.0625rem;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-links ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem 0 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    /* WhatsApp button mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    /* Page hero mobile */
    .page-hero {
        padding: 5rem 0 3.5rem !important;
    }
    
    .page-hero h1 {
        font-size: clamp(1.875rem, 7vw, 2.5rem) !important;
    }
    
    .page-hero p {
        font-size: clamp(1rem, 4vw, 1.125rem) !important;
    }
    
    /* FAQ mobile improvements */
    .faq-category {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1.25rem 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.0625rem;
        padding-right: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    /* Testimonials mobile */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Blog/Resources mobile */
    .blog-grid,
    .resources-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    /* Client showcase mobile */
    .clients-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .client-card {
        padding: 2rem 1.5rem;
    }
    
    /* Table responsiveness */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Image responsiveness */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Video responsiveness */
    iframe,
    video {
        max-width: 100%;
        height: auto;
    }
    
    /* Spacing adjustments */
    section {
        padding: 3rem 0 !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Button groups mobile */
    .btn-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-group .btn {
        width: 100%;
    }
    
    /* Hide desktop-only elements */
    .desktop-only {
        display: none !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    /* Even more compact spacing */
    .main-header {
        padding: 0.75rem 0;
    }
    
    .container {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }
    
    section {
        padding: 2.5rem 0 !important;
    }
    
    .hero-flex {
        padding: 1.5rem 0 2.5rem;
    }
    
    /* Typography extra small */
    .hero-title {
        font-size: 1.625rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem !important;
    }
    
    h2 {
        font-size: 1.375rem !important;
    }
    
    h3 {
        font-size: 1.125rem !important;
    }
    
    p {
        font-size: 0.9375rem;
    }
    
    /* Buttons extra small */
    .btn {
        padding: 0.875rem 1.25rem !important;
        font-size: 0.9375rem !important;
    }
    
    /* Cards extra small */
    .service-card,
    .client-card,
    .testimonial-card,
    .faq-category {
        padding: 1.25rem;
    }
    
    /* Form extra small */
    .contact-info,
    .contact-form {
        padding: 1.25rem;
    }
    
    /* WhatsApp button extra small */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* Footer extra small */
    .footer-content {
        gap: 2rem;
    }
    
    .footer-info h3,
    .footer-contact h4,
    .footer-links h4,
    .footer-social h4 {
        font-size: 1.125rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 900px) and (orientation: landscape) {
    .hero-flex {
        padding: 1.5rem 0;
    }
    
    .page-hero {
        padding: 3rem 0 2rem !important;
    }
    
    section {
        padding: 2.5rem 0 !important;
    }
}

/* Hover states disabled on touch devices */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .service-card:hover,
    .client-card:hover,
    a:hover {
        transform: none;
    }
    
    /* Add touch feedback with active states */
    .btn:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    .service-card:active,
    .client-card:active,
    .faq-question:active {
        transform: scale(0.99);
    }
    
    /* Better tap feedback for links */
    a:active {
        opacity: 0.7;
    }
    
    /* Smooth scrolling for touch */
    * {
        -webkit-overflow-scrolling: touch;
    }
}