/* ========================================
   HIMMAH AL-SAWAED TRADING EST.
   Main Stylesheet - Complete Green Theme
   ======================================== */

/* ========================================
   CSS Variables - Green Color Palette
   ======================================== */
:root {
    /* Primary Green Shades */
    --green-deep: #0B3D2E;      /* Deep Forest - Headers, primary text */
    --green-medium: #2C5E4A;    /* Medium Forest - Secondary headings */
    --green-vibrant: #3A7B5C;   /* Vibrant Green - Buttons, accents */
    --green-soft: #5F9D7A;      /* Soft Green - Hover states */
    --green-mint: #8FC1A0;      /* Mint Green - Backgrounds, cards */
    --green-light: #B7D9C5;     /* Light Mint - Section backgrounds */
    --green-pale: #E2F0E8;      /* Pale Green - Subtle backgrounds */
    
    /* Complementary Shades */
    --teal: #2A7F6E;            /* Teal accent - Highlights */
    --emerald: #2E8B57;          /* Emerald - Success states */
    --sage: #8A9A7C;             /* Sage - Secondary elements */
    --olive: #6B8E4C;            /* Olive - Borders, lines */
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8FAF9;
    --gray-50: #F5F7F6;
    --gray-100: #ECF0EE;
    --gray-200: #DFE5E2;
    --gray-300: #CFD7D2;
    --gray-400: #B8C3BC;
    --gray-500: #9CAB9F;
    --gray-600: #7B8B81;
    --gray-700: #5E6B63;
    --gray-800: #3F4943;
    --gray-900: #1E2622;
    --black: #121916;
    
    /* Gradients - Green Combinations */
    --gradient-primary: linear-gradient(135deg, var(--green-deep) 0%, var(--green-vibrant) 50%, var(--green-soft) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--green-medium) 0%, var(--teal) 100%);
    --gradient-light: linear-gradient(135deg, var(--green-mint) 0%, var(--green-light) 100%);
    --gradient-subtle: linear-gradient(135deg, var(--green-pale) 0%, var(--off-white) 100%);
    --gradient-accent: linear-gradient(45deg, var(--green-vibrant), var(--emerald));
    
    /* Shadows - Green Tinted */
    --shadow-sm: 0 2px 4px rgba(11, 61, 46, 0.05);
    --shadow-md: 0 4px 8px rgba(11, 61, 46, 0.08);
    --shadow-lg: 0 8px 16px rgba(11, 61, 46, 0.1);
    --shadow-xl: 0 12px 24px rgba(11, 61, 46, 0.12);
    --shadow-inner: inset 0 2px 4px rgba(11, 61, 46, 0.05);
    --shadow-glow: 0 0 20px rgba(63, 123, 95, 0.3);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Container Width */
    --container-max: 1280px;
    --container-padding: 2rem;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--off-white);
    overflow-x: hidden;
    position: relative;
}

body.no-scroll {
    overflow: hidden;
    touch-action: none;
}

/* ========================================
   Typography - Green Theme
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--green-deep);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--green-medium);
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
}

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--green-medium);
}

h4 {
    font-size: 1.25rem;
    color: var(--green-deep);
}

p {
    color: var(--gray-700);
    margin-bottom: var(--space-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-vibrant);
    background: var(--green-pale);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--space-md);
    color: var(--green-deep);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Grid Systems */
.grid {
    display: grid;
    gap: var(--space-xl);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ========================================
   Buttons - Green Variations
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

/* Primary Button - Green Gradient */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Secondary Button - Green Outline */
.btn-secondary {
    background: transparent;
    color: var(--green-deep);
    border: 2px solid var(--green-vibrant);
}

.btn-secondary:hover {
    background: var(--green-vibrant);
    color: var(--white);
    transform: translateY(-2px);
}

/* Tertiary Button - Light Green */
.btn-tertiary {
    background: var(--green-mint);
    color: var(--green-deep);
}

.btn-tertiary:hover {
    background: var(--green-soft);
    transform: translateY(-2px);
}

/* Outline Light Button */
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--green-deep);
}

/* Green Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--green-deep);
    border: 1px solid var(--green-soft);
}

.btn-ghost:hover {
    background: var(--green-pale);
    border-color: var(--green-vibrant);
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
}

.btn-icon i {
    font-size: 1.25rem;
}

/* ========================================
   Navigation - Green Theme
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border-bottom: 1px solid rgba(63, 123, 95, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--green-soft);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(11, 61, 46, 0.1));
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-deep);
    letter-spacing: 1px;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-accent);
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
}

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--green-deep);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a.active {
    color: var(--green-deep);
    font-weight: 600;
}

/* Dashboard Button */
.dashboard-btn {
    margin-left: var(--space-md);
}

.dashboard-btn .btn {
    background: var(--green-pale);
    color: var(--green-deep);
    border: 1px solid var(--green-soft);
}

.dashboard-btn .btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 100;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gradient-primary);
    margin: 3px 0;
    transition: var(--transition-base);
    border-radius: var(--radius-full);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--green-vibrant);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--green-vibrant);
}

/* ========================================
   Hero Section - Green Theme
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--gradient-subtle);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(63, 123, 95, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: var(--space-xl);
    line-height: 1.1;
}

.hero-title .highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 0.9em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(63, 123, 95, 0.1);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Background Elements */
.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.gradient-circle {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(63, 123, 95, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.gradient-circle-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 127, 110, 0.08) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation: float 15s ease-in-out infinite reverse;
}

/* ========================================
   Features Section - Green Theme
   ======================================== */
.features {
    padding: var(--space-4xl) 0;
    background: var(--white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-soft), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.feature-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient-light);
    transition: height 0.3s ease;
    z-index: -1;
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-soft);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    position: relative;
    box-shadow: var(--shadow-md);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    opacity: 0.3;
    z-index: -1;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon::after {
    transform: scale(1.1);
    opacity: 0.5;
}

.feature-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--green-deep);
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ========================================
   Services Preview - Green Theme
   ======================================== */
.services-preview {
    padding: var(--space-4xl) 0;
    background: var(--green-pale);
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, rgba(63, 123, 95, 0.05), transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-3xl) 0;
}

.service-item {
    padding: var(--space-xl) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: -1;
    opacity: 0;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.service-item:hover::before {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.service-item i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    transition: var(--transition-base);
    position: relative;
    z-index: 2;
}

.service-item:hover i {
    background: var(--white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}

.service-item h4 {
    margin-bottom: var(--space-xs);
    transition: var(--transition-base);
    position: relative;
    z-index: 2;
    color: var(--green-deep);
}

.service-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: var(--transition-base);
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.service-item:hover h4,
.service-item:hover p {
    color: var(--white);
}

/* ========================================
   Vision 2030 Section - Green Theme
   ======================================== */
.vision-2030 {
    padding: var(--space-3xl) 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.vision-2030::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.vision-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.vision-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease infinite;
}

.vision-icon i {
    font-size: 3rem;
    color: var(--white);
}

.vision-content h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: 2.5rem;
}

.vision-content h2::after {
    background: var(--white);
    left: 50%;
    transform: translateX(-50%);
}

.vision-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.8;
}

/* ========================================
   Footer - Green Theme
   ======================================== */
.footer {
    background: var(--green-deep);
    color: var(--gray-300);
    padding: var(--space-4xl) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 2;
}

.footer-info {
    max-width: 350px;
}

.footer-logo {
    height: 60px;
    margin-bottom: var(--space-md);
    filter: brightness(0) invert(1);
}

.footer-info p {
    color: var(--gray-400);
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.cr-number {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--green-light);
    margin-top: var(--space-md);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-light);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--green-light);
    transform: translateX(20px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: var(--gray-400);
    transition: var(--transition-base);
}

.footer-contact p:hover {
    color: var(--green-light);
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--green-light);
    font-size: 1.125rem;
    width: 24px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: var(--gray-500);
    position: relative;
    z-index: 2;
}

/* ========================================
   Page Header - Green Theme
   ======================================== */
.page-header {
    padding: 160px 0 60px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-light);
}

.page-title {
    color: var(--white);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 2;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-title::after {
    background: var(--white);
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
}

.breadcrumbs {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-base);
}

.breadcrumbs a:hover {
    color: var(--white);
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   About Page - Green Theme
   ======================================== */
.company-overview {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.overview-content {
    padding-right: var(--space-xl);
}

.overview-text {
    color: var(--gray-700);
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
    line-height: 1.8;
}

.overview-features {
    margin-top: var(--space-xl);
}

.feature-mini {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--green-pale);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.feature-mini:hover {
    background: var(--green-light);
    transform: translateX(10px);
}

.feature-mini i {
    color: var(--green-vibrant);
    font-size: 1.125rem;
}

.feature-mini span {
    color: var(--green-deep);
    font-weight: 500;
}

.overview-image {
    position: relative;
}

.overview-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--green-light);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-xl);
}

/* Company Info Cards */
.company-info {
    padding: var(--space-4xl) 0;
    background: var(--green-pale);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.info-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-soft);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.info-icon i {
    font-size: 2rem;
    color: var(--green-deep);
}

.info-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    color: var(--green-medium);
}

.info-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.advantage-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--green-pale);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advantage-item:hover::before {
    transform: translateX(0);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-md);
    opacity: 0.3;
}

.advantage-item h3 {
    color: var(--green-deep);
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.advantage-item p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Services Page - Green Theme
   ======================================== */
.services-overview {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.services-categories {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.service-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
}

.service-category:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--green-soft);
    transform: translateX(10px);
}

.category-header {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl);
    background: var(--gradient-light);
    border-bottom: 2px solid var(--green-soft);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 2rem;
    color: var(--white);
}

.category-header h3 {
    margin: 0;
    color: var(--green-deep);
    font-size: 1.35rem;
}

.category-content {
    padding: var(--space-xl);
}

.category-content p {
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
    font-size: 1rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin-bottom: var(--space-lg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.service-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-700);
    font-size: 0.95rem;
}

.service-list li i {
    color: var(--green-vibrant);
    font-size: 1rem;
}

.tech-partners {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
}

.tech-partners span {
    font-weight: 600;
    color: var(--green-deep);
    font-size: 0.9rem;
}

.tech-partners img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition-base);
    filter: grayscale(100%);
}

.tech-partners img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* CTA Section */
.cta-section {
    padding: var(--space-4xl) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-content h2::after {
    background: var(--white);
    left: 50%;
    transform: translateX(-50%);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
}

/* ========================================
   Partners Page - Green Theme
   ======================================== */
.partners-intro {
    padding: var(--space-4xl) 0 var(--space-2xl);
    background: var(--white);
    text-align: center;
}

.partners-grid-section {
    padding: 0 0 var(--space-4xl);
    background: var(--white);
}

.partner-category {
    margin-bottom: var(--space-3xl);
}

.partner-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.75rem;
    color: var(--green-deep);
    margin-bottom: var(--space-xl);
    position: relative;
    padding-bottom: var(--space-md);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.partner-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-soft);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card img {
    height: 60px;
    width: auto;
    margin-bottom: var(--space-md);
    filter: grayscale(100%);
    transition: var(--transition-base);
}

.partner-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.partner-card h4 {
    margin-bottom: var(--space-xs);
    color: var(--green-deep);
}

.partner-card p {
    color: var(--green-vibrant);
    font-size: 0.875rem;
    margin-bottom: 0;
    font-weight: 500;
}

/* Partnership Benefits */
.partnership-benefits {
    padding: var(--space-4xl) 0;
    background: var(--green-pale);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.benefit-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-soft);
}

.benefit-card i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
}

.benefit-card h4 {
    margin-bottom: var(--space-sm);
    color: var(--green-deep);
}

.benefit-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ========================================
   Vision & Mission Page - Green Theme
   ======================================== */
.vision-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.vision-box,
.mission-box {
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.vision-box {
    background: var(--gradient-light);
    border: 1px solid var(--green-soft);
}

.mission-box {
    background: var(--green-pale);
    border: 1px solid var(--gray-200);
}

.vision-icon,
.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.vision-icon i,
.mission-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.vision-box h2,
.mission-box h2 {
    margin-bottom: var(--space-lg);
    color: var(--green-deep);
}

.vision-box h2::after,
.mission-box h2::after {
    left: 0;
    transform: none;
}

.vision-text,
.mission-text {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

/* Values Section */
.values-section {
    padding: var(--space-4xl) 0;
    background: var(--green-pale);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.value-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-soft);
}

.value-card:hover::after {
    transform: scaleX(1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.value-icon i {
    font-size: 2rem;
    color: var(--green-deep);
}

.value-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--green-deep);
}

.value-card p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Vision 2030 Alignment */
.vision-2030-alignment {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.alignment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.alignment-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.alignment-icon i {
    font-size: 3rem;
    color: var(--white);
}

.alignment-content h2 {
    margin-bottom: var(--space-lg);
}

.alignment-content p {
    font-size: 1.125rem;
    color: var(--gray-700);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.alignment-points {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.alignment-point {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--green-pale);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.alignment-point:hover {
    background: var(--green-light);
    transform: translateY(-3px);
}

.alignment-point i {
    color: var(--green-vibrant);
    font-size: 1.125rem;
}

.alignment-point span {
    color: var(--green-deep);
    font-weight: 500;
}

/* Commitment Section */
.commitment-section {
    padding: var(--space-4xl) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.commitment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.commitment-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.commitment-box h2 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.commitment-box h2::after {
    background: var(--white);
    left: 50%;
    transform: translateX(-50%);
}

.commitment-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.commitment-signature {
    font-style: italic;
    font-size: 1.25rem !important;
    color: var(--white) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--space-lg);
    margin-top: var(--space-lg);
}

/* ========================================
   Contact Page - Green Theme
   ======================================== */
.contact-info-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.contact-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-soft);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--green-deep);
}

.contact-card h3 {
    margin-bottom: var(--space-sm);
    color: var(--green-medium);
}

.contact-card p {
    margin-bottom: 0;
    color: var(--gray-700);
}

.contact-card a {
    color: var(--green-vibrant);
    text-decoration: none;
    transition: var(--transition-base);
}

.contact-card a:hover {
    color: var(--green-deep);
    text-decoration: underline;
}

.contact-person {
    font-size: 0.875rem;
    color: var(--gray-500) !important;
    margin-top: var(--space-sm) !important;
}

/* Contact Form Section */
.contact-form-section {
    padding: var(--space-4xl) 0;
    background: var(--green-pale);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-form-container {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form-container h2 {
    margin-bottom: var(--space-xl);
    color: var(--green-deep);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-weight: 500;
    color: var(--green-deep);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: var(--space-md);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--green-vibrant);
    box-shadow: 0 0 0 3px rgba(63, 123, 95, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: var(--space-xs);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: var(--space-xs);
}

.success-message {
    background: var(--green-mint);
    color: var(--green-deep);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    margin-top: var(--space-md);
}

.contact-info-container {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.business-hours {
    margin-bottom: var(--space-xl);
}

.business-hours h3,
.emergency-contact h3 {
    margin-bottom: var(--space-md);
    color: var(--green-deep);
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span {
    font-weight: 600;
    color: var(--green-medium);
}

.emergency-contact {
    margin-bottom: var(--space-xl);
}

.emergency-phone,
.emergency-email {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--gray-700);
}

.emergency-phone i,
.emergency-email i {
    color: var(--green-vibrant);
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.map-container iframe {
    display: block;
}

/* ========================================
   Animations - Green Theme
   ======================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
    opacity: 0;
}

.scale-in {
    animation: scaleIn 0.5s ease forwards;
    opacity: 0;
}

/* Delay Classes */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   Tooltips
   ======================================== */
.tooltip {
    position: fixed;
    background: var(--green-deep);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    pointer-events: none;
    z-index: 1000;
    white-space: nowrap;
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--green-deep);
}

/* ========================================
   Accordion
   ======================================== */
.accordion-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
    overflow: hidden;
}

.accordion-header {
    padding: var(--space-md);
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--green-deep);
    transition: var(--transition-base);
}

.accordion-header:hover {
    background: var(--green-pale);
}

.accordion-header i {
    transition: var(--transition-base);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 var(--space-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--gray-50);
}

.accordion-item.active .accordion-content {
    padding: var(--space-md);
    max-height: 200px;
}

/* ========================================
   Tabs
   ======================================== */
.tabs {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.tab-header {
    display: flex;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.tab {
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    transition: var(--transition-base);
    font-weight: 500;
    color: var(--gray-700);
}

.tab:hover {
    background: var(--green-pale);
    color: var(--green-deep);
}

.tab.active {
    background: var(--white);
    color: var(--green-vibrant);
    border-bottom: 2px solid var(--green-vibrant);
}

.tab-pane {
    display: none;
    padding: var(--space-lg);
    background: var(--white);
}

.tab-pane.active {
    display: block;
}

/* ========================================
   Mouse Trail Effect
   ======================================== */
.mouse-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--green-vibrant);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    opacity: 0.5;
    transform: translate(-50%, -50%);
}

/* ========================================
   Ripple Effect
   ======================================== */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ========================================
   Responsive Design - Green Theme
   ======================================== */
@media (max-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .overview-grid,
    .vision-mission-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .overview-content {
        padding-right: 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--space-xl);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
    
    .alignment-points {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        margin: 0 auto;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
    
    .footer-links a::before {
        display: none;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .info-cards,
    .advantages-grid,
    .values-grid,
    .contact-cards,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .tech-partners {
        justify-content: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .navbar,
    .hero-buttons,
    .footer,
    .back-to-top,
    .preloader,
    .cta-section {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black !important;
        -webkit-text-fill-color: black !important;
    }
    
    a {
        text-decoration: none;
        color: black;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ========================================
   RTL Support
   ======================================== */
[dir="rtl"] {
    .nav-links {
        margin-right: 0;
        margin-left: auto;
    }
    
    .hero-buttons {
        flex-direction: row-reverse;
    }
    
    .btn i {
        transform: rotate(180deg);
    }
    
    .footer-links a:hover {
        transform: translateX(-20px);
    }
    
    .footer-links a::before {
        content: '←';
        left: auto;
        right: -20px;
    }
    
    .footer-links a:hover::before {
        left: auto;
        right: 0;
    }
}
/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.slide-pattern-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%);
    background-size: 40px 40px;
    animation: slide 20s linear infinite;
}

.slide-pattern-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.slide-subtitle {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.slide-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.slide-title .highlight {
    background: linear-gradient(135deg, #CAF550, #AD6A7A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slide-stats {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 2;
    display: flex;
    gap: 2rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.slide-tech-icons {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 2;
    display: flex;
    gap: 1.5rem;
    font-size: 2rem;
    color: rgba(255,255,255,0.3);
    animation: float 3s ease-in-out infinite;
}

.slide-tech-icons i {
    transition: all 0.3s ease;
}

.slide-tech-icons i:hover {
    color: white;
    transform: scale(1.2);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #CAF550;
    transform: scale(1.2);
}

/* Autoplay Progress */
.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.autoplay-progress svg circle {
    stroke: rgba(255,255,255,0.3);
    stroke-width: 4;
    fill: none;
    stroke-dasharray: 125.66;
    stroke-dashoffset: calc(125.66 * (1 - var(--progress)));
    transition: stroke-dashoffset 0.1s;
}

/* Modern Features Grid */
.features-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card-modern {
    perspective: 1500px;
}

.feature-card-inner {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0B3D2E, #C43146, #CAF550);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.feature-card-modern:hover .feature-card-inner::before {
    transform: translateX(0);
}

.feature-card-modern:hover .feature-card-inner {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(11,61,46,0.2);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0B3D2E, #C43146);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.feature-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
    z-index: 2;
}

.feature-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(10px);
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
}

.feature-link {
    color: #0B3D2E;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 10px;
    color: #C43146;
}

/* Services Carousel */
.services-showcase {
    padding: 100px 0;
    background: white;
}

.servicesSwiper {
    padding: 50px 20px !important;
}

.service-card-large {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(11,61,46,0.15);
}

.service-card-large .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0B3D2E, #C43146);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-card-large .service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card-large h3 {
    margin-bottom: 15px;
    color: #0B3D2E;
}

.service-card-large p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #495057;
}

.service-features li i {
    color: #CAF550;
}

/* Partners Marquee */
.partners-marquee {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.marquee {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-group {
    display: flex;
    gap: 50px;
    padding: 0 25px;
}

.marquee-group img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.marquee-group img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item-large {
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-item-large:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
}

.stat-item-large i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #CAF550;
}

.stat-item-large .counter {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-item-large .stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Vision Banner */
.vision-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #0B3D2E, #C43146);
    position: relative;
    overflow: hidden;
}

.vision-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.vision-icon-2030 {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: #CAF550;
    animation: pulse 2s ease-in-out infinite;
}

.banner-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonialSwiper {
    padding: 50px 20px !important;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(11,61,46,0.15);
}

.testimonial-rating {
    margin-bottom: 20px;
    color: #FFD700;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    color: #0B3D2E;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #6c757d;
}

/* CTA Parallax */
.cta-parallax {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0B3D2E, #C43146);
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('images/pattern-bg.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    transform: translateY(0);
    will-change: transform;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.cta-contact {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.1rem;
}

.cta-contact span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-contact i {
    color: #CAF550;
}

/* Modern Footer */
.footer-modern {
    background: #1a1e24;
    color: #a0a8b2;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col .footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #CAF550;
    color: #0B3D2E;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a0a8b2;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.8rem;
    color: #CAF550;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-info li i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CAF550;
}

.footer-contact-info li div {
    flex: 1;
}

.footer-contact-info li span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 5px;
}

.footer-contact-info li a,
.footer-contact-info li p {
    color: white;
    text-decoration: none;
    margin: 0;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #a0a8b2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #CAF550;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slide-stats {
        bottom: 20px;
        right: 20px;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
    }
    
    .slide-buttons {
        flex-direction: column;
    }
    
    .slide-stats,
    .slide-tech-icons {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Animation Keyframes */
@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes slide {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 40px 40px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Button Glow Effect */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: glow 3s linear infinite;
}

@keyframes glow {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* ========================================
   ABOUT PAGE PREMIUM STYLES
   ======================================== */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0B3D2E 0%, #1a5a45 50%, #2C5E4A 100%);
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: floatShape 20s infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #CAF550;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #C43146;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 500px;
    height: 500px;
    background: #AD6A7A;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(2%, 2%) scale(1.05);
    }
    66% {
        transform: translate(-2%, -2%) scale(0.95);
    }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.breadcrumbs-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumbs-modern a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumbs-modern a:hover {
    color: #CAF550;
}

.breadcrumbs-modern i {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs-modern span {
    color: #CAF550;
}

.about-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, #CAF550, #AD6A7A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-badge:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #CAF550;
}

.stat-badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #CAF550;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-badge-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.7;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin: 0 auto;
    animation: scrollArrow 2s infinite;
}

@keyframes scrollArrow {
    0%, 100% {
        opacity: 0;
        transform: rotate(-45deg) translate(0, 0);
    }
    50% {
        opacity: 1;
        transform: rotate(-45deg) translate(10px, 10px);
    }
}

/* Company Overview Section */
.about-overview {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.about-overview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 61, 46, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.overview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C43146;
    background: rgba(196, 49, 70, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title-large {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #0B3D2E;
    margin-bottom: 30px;
    line-height: 1.2;
}

.overview-text-box {
    margin-bottom: 30px;
}

.overview-paragraph {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.dropcap {
    font-size: 4rem;
    float: left;
    line-height: 0.8;
    margin-right: 10px;
    color: #C43146;
    font-weight: 700;
}

.overview-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(11, 61, 46, 0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: #CAF550;
}

.highlight-content h4 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: #0B3D2E;
}

.highlight-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #718096;
}

/* Overview Image */
.overview-image-wrapper {
    position: relative;
    height: 600px;
}

.image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(11, 61, 46, 0.2);
    z-index: 3;
}

.image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-main:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.2), rgba(196, 49, 70, 0.2));
    pointer-events: none;
}

.image-accent-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 61, 46, 0.15);
    z-index: 2;
    border: 5px solid white;
}

.image-accent-1 img,
.image-accent-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-accent-2 {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 40%;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 61, 46, 0.15);
    z-index: 4;
    border: 5px solid white;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #C43146, #AD6A7A);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(196, 49, 70, 0.3);
    animation: pulse 2s infinite;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.9;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card,
.vision-card,
.values-card {
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.mission-card {
    background: white;
    border-top: 5px solid #0B3D2E;
}

.vision-card {
    background: white;
    border-top: 5px solid #C43146;
}

.values-card {
    background: white;
    border-top: 5px solid #CAF550;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(11, 61, 46, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.mission-card .card-icon {
    background: rgba(11, 61, 46, 0.1);
    color: #0B3D2E;
}

.vision-card .card-icon {
    background: rgba(196, 49, 70, 0.1);
    color: #C43146;
}

.values-card .card-icon {
    background: rgba(202, 245, 80, 0.1);
    color: #0B3D2E;
}

.card-icon i {
    font-size: 2.5rem;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mission-card p,
.vision-card p,
.values-card p {
    color: #718096;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mission-list,
.vision-list {
    list-style: none;
    padding: 0;
}

.mission-list li,
.vision-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #4a5568;
}

.mission-list i,
.vision-list i {
    color: #CAF550;
}

.values-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.value-tag {
    padding: 8px 16px;
    background: rgba(11, 61, 46, 0.05);
    border-radius: 50px;
    font-size: 0.9rem;
    color: #0B3D2E;
    transition: all 0.3s ease;
}

.value-tag:hover {
    background: #0B3D2E;
    color: white;
    transform: scale(1.05);
}

.values-text {
    font-style: italic;
    color: #718096;
}

/* Timeline Section */
.timeline-section-new {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 77, 62, 0.02) 0%, rgba(202, 245, 80, 0.02) 100%);
    position: relative;
}

.timeline-modern {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 40px 0;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #1A4D3E 0%, #FFD700 50%, #FF6B6B 100%);
    transform: translateX(-50%);
}

.timeline-item-new {
    display: flex;
    gap: 30px;
    position: relative;
}

.timeline-item-new:nth-child(odd) {
    justify-content: flex-end;
}

.timeline-item-new:nth-child(even) {
    grid-column: 2;
    justify-content: flex-start;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    background: white;
    border: 4px solid #1A4D3E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: #1A4D3E;
    box-shadow: 0 0 0 8px rgba(26, 77, 62, 0.1);
}

.timeline-year {
    display: block;
}

.timeline-content-new {
    width: 100%;
    max-width: 380px;
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(26, 77, 62, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-content-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(26, 77, 62, 0.15);
    border-color: #FFD700;
}

.timeline-content-new h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A4D3E;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.timeline-content-new p {
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline-modern {
        grid-template-columns: 1fr;
        gap: 50px 0;
    }

    .timeline-modern::before {
        left: 15px;
    }

    .timeline-item-new {
        grid-column: 1 !important;
        justify-content: flex-start !important;
        padding-left: 80px;
    }

    .timeline-marker {
        left: 15px;
    }

    .timeline-content-new {
        max-width: 100%;
    }
}

.timeline-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #0B3D2E, #C43146, #CAF550);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-items {
    position: relative;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid #C43146;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    background: #C43146;
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 20px rgba(196, 49, 70, 0.5);
}

.timeline-item.left::before {
    right: -10px;
}

.timeline-item.right::before {
    left: -10px;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 61, 46, 0.1);
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(11, 61, 46, 0.15);
    border-color: #C43146;
}

.timeline-content .year {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0B3D2E;
}

.timeline-content p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-description {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 61, 46, 0.15);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(to top, rgba(11, 61, 46, 0.9), transparent);
    transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B3D2E;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: #C43146;
    color: white;
    transform: translateY(-3px);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #0B3D2E;
}

.team-info .position {
    display: block;
    font-size: 0.9rem;
    color: #C43146;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-info p {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.5;
}

/* Certifications Section */
.certifications-section {
    padding: 60px 0;
    background: white;
}

.certifications-wrapper {
    text-align: center;
}

.certifications-wrapper h3 {
    font-size: 1.5rem;
    color: #0B3D2E;
    margin-bottom: 30px;
}

.certifications-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(11, 61, 46, 0.1);
}

.cert-item img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.cert-item:hover img {
    filter: grayscale(0%);
}

.cert-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0B3D2E;
}

/* Company Stats Section */
.company-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    color: white;
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item-large {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item-large:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item-large i {
    font-size: 3rem;
    color: #CAF550;
    margin-bottom: 20px;
}

.stat-item-large .counter {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-item-large .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-about {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card-large {
    position: relative;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(11, 61, 46, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(11, 61, 46, 0.15);
    border-color: #C43146;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: rgba(196, 49, 70, 0.1);
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #0B3D2E;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #718096;
}

/* CTA Section */
.cta-about {
    padding: 80px 0;
    background: linear-gradient(135deg, #C43146, #AD6A7A);
    position: relative;
    overflow: hidden;
}

.cta-about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
}

.cta-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1.1rem;
}

.cta-contact-info i {
    margin-right: 10px;
    color: #CAF550;
}

/* Responsive */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .overview-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-image-wrapper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-badge {
        width: 100%;
    }
    
    .timeline-line {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 70px;
        padding-right: 20px;
        text-align: left !important;
    }
    
    .timeline-item.left::before,
    .timeline-item.right::before {
        left: 20px;
        right: auto;
    }
    
    .overview-highlights {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-large {
        grid-template-columns: 1fr;
    }
    
    .cta-contact-info {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .overview-image-wrapper {
        height: 400px;
    }
    
    .image-accent-1,
    .image-accent-2 {
        display: none;
    }
    
    .image-main {
        width: 100%;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
    }
    
    .experience-badge .years {
        font-size: 1.5rem;
    }
}
/* ========================================
   SERVICES PAGE PREMIUM STYLES
   ======================================== */

/* Services Hero Section */
.services-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0B3D2E 0%, #1a5a45 50%, #2C5E4A 100%);
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CAF550;
    font-size: 1.5rem;
    animation: floatIcon 6s ease-in-out infinite;
}

.icon-1 { top: 20%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 60%; right: 15%; animation-delay: -1s; }
.icon-3 { bottom: 20%; left: 20%; animation-delay: -2s; }
.icon-4 { top: 30%; right: 25%; animation-delay: -3s; }
.icon-5 { bottom: 40%; left: 30%; animation-delay: -4s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.services-hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.services-hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.services-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Progress */
.scroll-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #CAF550, #C43146);
    width: 0;
    transition: width 0.1s ease;
}

/* Service Filter Tabs */
.service-tabs-section {
    padding: 80px 0 40px;
    background: white;
}

.service-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.filter-tab {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(11, 61, 46, 0.1);
    border-radius: 50px;
    color: #0B3D2E;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: #C43146;
    color: #C43146;
}

.filter-tab.active {
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    border-color: transparent;
    color: white;
}

/* Services Masonry Grid */
.services-masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-masonry-item {
    transition: all 0.3s ease;
}

.service-premium-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(11, 61, 46, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(11, 61, 46, 0.15);
    border-color: #C43146;
}

.service-premium-card.featured {
    border: 2px solid #CAF550;
    transform: scale(1.02);
}

.service-premium-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.service-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    background: rgba(11, 61, 46, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0B3D2E;
}

.service-card-badge.premium {
    background: #CAF550;
    color: #0B3D2E;
}

.service-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-premium-card:hover .service-icon-large {
    transform: rotate(10deg) scale(1.1);
}

.service-icon-large i {
    font-size: 2.5rem;
    color: #CAF550;
}

.service-card-header h3 {
    font-size: 1.3rem;
    color: #0B3D2E;
    margin: 0;
}

.service-card-body {
    flex: 1;
    margin-bottom: 20px;
}

.service-card-body p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #4a5568;
}

.service-feature-list i {
    color: #CAF550;
    font-size: 1rem;
}

.service-card-footer {
    border-top: 1px solid rgba(11, 61, 46, 0.1);
    padding-top: 20px;
}

.tech-partner-logos {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tech-partner-logos img {
    height: 25px;
    width: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.service-premium-card:hover .tech-partner-logos img {
    opacity: 1;
}

.service-learn-more {
    color: #C43146;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.service-learn-more:hover {
    gap: 10px;
    color: #0B3D2E;
}

/* Service Details Section */
.service-details-section {
    margin-top: 60px;
}

.service-detail-wrapper {
    padding: 100px 0;
    background: white;
}

.service-detail-wrapper.alt-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse .service-detail-content {
    direction: ltr;
}

.detail-tag {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C43146;
    background: rgba(196, 49, 70, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    color: #0B3D2E;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-detail-content > p {
    font-size: 1.1rem;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 40px;
}

.detail-features {
    margin-bottom: 40px;
}

.detail-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-feature i {
    width: 50px;
    height: 50px;
    background: rgba(11, 61, 46, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #C43146;
    flex-shrink: 0;
}

.detail-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #0B3D2E;
}

.detail-feature p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

.detail-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.detail-stat {
    text-align: center;
}

.detail-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #C43146;
    line-height: 1;
    margin-bottom: 5px;
}

.detail-stat .stat-label {
    font-size: 0.9rem;
    color: #718096;
}

.certification-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: #0B3D2E;
    font-size: 0.9rem;
    border: 1px solid rgba(11, 61, 46, 0.1);
}

.cert-badge i {
    color: #CAF550;
}

.service-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(11, 61, 46, 0.2);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.image-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.partner-badge {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.partner-badge img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-badge img:hover {
    opacity: 1;
}

/* Security Capabilities Grid */
.security-capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.capability-item {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(11, 61, 46, 0.1);
}

.capability-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.capability-icon i {
    font-size: 1.5rem;
    color: #CAF550;
}

.capability-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #0B3D2E;
}

.capability-item p {
    font-size: 0.85rem;
    color: #718096;
    margin: 0;
}

.security-compliance {
    text-align: center;
    padding: 15px;
    background: rgba(11, 61, 46, 0.05);
    border-radius: 50px;
    font-weight: 600;
    color: #0B3D2E;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 20px;
    text-align: center;
    font-size: 1.1rem;
    color: #0B3D2E;
    border-bottom: 2px solid rgba(11, 61, 46, 0.1);
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(11, 61, 46, 0.05);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: #0B3D2E;
}

.comparison-table td i.fa-check {
    color: #CAF550;
    font-size: 1.2rem;
}

.comparison-table td i.fa-times {
    color: #C43146;
    font-size: 1.2rem;
}

/* Why Choose Services */
.why-choose-services {
    padding: 100px 0;
    background: white;
}

.advantages-showcase {
    max-width: 800px;
    margin: 50px auto 0;
}

.advantage-showcase-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.advantage-showcase-item:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(11, 61, 46, 0.1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 2rem;
    color: #CAF550;
}

.advantage-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #0B3D2E;
}

.advantage-content p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 15px;
}

.certification-strip,
.partner-strip {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.certification-strip span {
    padding: 4px 12px;
    background: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0B3D2E;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.partner-strip img {
    height: 25px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-strip img:hover {
    opacity: 1;
}

.support-stats {
    display: flex;
    gap: 20px;
}

.support-stats span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #0B3D2E;
}

.support-stats i {
    color: #CAF550;
}

/* Case Studies */
.case-studies-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.case-studies-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.case-study-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(11, 61, 46, 0.15);
}

.case-study-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.case-category {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0B3D2E;
}

.case-study-content {
    padding: 30px;
}

.case-study-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #0B3D2E;
}

.case-study-content p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-results {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.case-results span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #0B3D2E;
    background: rgba(11, 61, 46, 0.05);
    padding: 5px 12px;
    border-radius: 50px;
}

.case-results i {
    color: #CAF550;
}

.case-link {
    color: #C43146;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.case-link:hover {
    gap: 10px;
    color: #0B3D2E;
}

/* FAQ Section */
.services-faq {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    border: 1px solid rgba(11, 61, 46, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(11, 61, 46, 0.05);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #0B3D2E;
}

.faq-question i {
    color: #C43146;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(11, 61, 46, 0.02);
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #718096;
    line-height: 1.8;
}

/* Contact CTA */
.services-contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
}

.cta-premium {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.cta-premium-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-premium-content h2 {
    font-size: 2rem;
    color: #0B3D2E;
    margin-bottom: 15px;
}

.cta-premium-content p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 30px;
}

.cta-premium-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-premium-image {
    height: 100%;
    overflow: hidden;
}

.cta-premium-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cta-premium:hover .cta-premium-image img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-studies-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-grid.reverse {
        direction: ltr;
    }
    
    .cta-premium {
        grid-template-columns: 1fr;
    }
    
    .cta-premium-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .services-masonry-grid {
        grid-template-columns: 1fr;
    }
    
    .case-studies-carousel {
        grid-template-columns: 1fr;
    }
    
    .security-capabilities {
        grid-template-columns: 1fr;
    }
    
    .advantage-showcase-item {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-icon {
        margin: 0 auto;
    }
    
    .detail-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-feature i {
        margin: 0 auto;
    }
    
    .detail-stats {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .services-hero-actions {
        flex-direction: column;
    }
    
    .service-filter-tabs {
        flex-direction: column;
    }
    
    .filter-tab {
        width: 100%;
        text-align: center;
    }
    
    .cta-premium-content {
        padding: 40px 20px;
    }
    
    .cta-premium-actions {
        flex-direction: column;
    }
}

/* ========================================
   About Page Section Enhancements
   Mission/Vision + Values + Journey + CTA
   ======================================== */

.mission-vision-teaser {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.04) 0%, rgba(196, 49, 70, 0.04) 100%);
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.teaser-card {
    background: #ffffff;
    border: 1px solid rgba(11, 61, 46, 0.1);
    border-radius: 18px;
    padding: 34px 30px;
    box-shadow: 0 12px 28px rgba(11, 61, 46, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.teaser-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(11, 61, 46, 0.14);
    border-color: rgba(196, 49, 70, 0.35);
}

.teaser-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    box-shadow: 0 10px 20px rgba(11, 61, 46, 0.2);
}

.teaser-icon i {
    color: #CAF550;
    font-size: 1.45rem;
}

.teaser-card h3 {
    margin: 0 0 12px;
    color: #0B3D2E;
    font-size: 1.5rem;
}

.teaser-card p {
    margin: 0 0 20px;
    color: #4a5568;
    line-height: 1.8;
}

.teaser-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #C43146;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.25s ease;
}

.teaser-link:hover {
    color: #0B3D2E;
    gap: 14px;
}

.values-section {
    padding: 95px 0;
    background: #ffffff;
}

.values-section .section-header {
    margin-bottom: 20px;
}

.values-section .section-description {
    color: #718096;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 36px;
}

.value-card {
    text-align: left;
    border-radius: 18px;
    padding: 30px 24px;
    border: 1px solid rgba(11, 61, 46, 0.1);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
    box-shadow: 0 10px 24px rgba(11, 61, 46, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(11, 61, 46, 0.12);
}

.value-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 36px;
    padding: 0 12px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(196, 49, 70, 0.1);
    color: #C43146;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.value-card h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
    color: #0B3D2E;
}

.value-card p {
    margin: 0;
    color: #5f6c7b;
    line-height: 1.7;
}

.history-section {
    padding: 95px 0;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.03) 0%, rgba(202, 245, 80, 0.03) 100%);
}

.history-section .timeline {
    position: relative;
    margin-top: 46px;
    padding-left: 34px;
}

.history-section .timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(to bottom, #0B3D2E, #C43146);
}

.history-section .timeline-item {
    position: relative;
    width: 100%;
    left: auto;
    padding: 0;
    margin-bottom: 24px;
    opacity: 1;
    transform: none;
    text-align: left;
}

.history-section .timeline-item:last-child {
    margin-bottom: 0;
}

.history-section .timeline-item::before {
    display: none;
}

.history-section .timeline-marker {
    position: absolute;
    left: -34px;
    top: 20px;
    transform: none;
    min-width: 64px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(196, 49, 70, 0.25);
    background: #ffffff;
    color: #C43146;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(196, 49, 70, 0.15);
    z-index: 2;
}

.history-section .timeline-content {
    margin-left: 58px;
    background: #ffffff;
    border: 1px solid rgba(11, 61, 46, 0.1);
    border-radius: 16px;
    padding: 24px 24px;
    box-shadow: 0 10px 24px rgba(11, 61, 46, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-section .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(11, 61, 46, 0.14);
}

.history-section .timeline-content h4 {
    margin: 0 0 10px;
    color: #0B3D2E;
    font-size: 1.2rem;
}

.history-section .timeline-content p {
    margin: 0;
    color: #5f6c7b;
    line-height: 1.7;
}

.cta-section {
    padding: 95px 0;
    background: linear-gradient(135deg, #0B3D2E 0%, #1E5A44 52%, #C43146 100%);
    text-align: center;
}

.cta-content {
    max-width: 780px;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 14px;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.92);
}

.cta-section .btn.btn-light.btn-large {
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-section .btn.btn-light.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .mission-vision-teaser,
    .values-section,
    .history-section,
    .cta-section {
        padding: 72px 0;
    }

    .teaser-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .history-section .timeline {
        padding-left: 24px;
    }

    .history-section .timeline::before {
        left: 8px;
    }

    .history-section .timeline-marker {
        left: -24px;
        min-width: 58px;
    }

    .history-section .timeline-content {
        margin-left: 44px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .teaser-card,
    .value-card {
        padding: 24px 20px;
    }

    .history-section .timeline-content {
        margin-left: 38px;
    }

    .cta-section .btn.btn-light.btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   Premium Navbar Conflict Fix
   ======================================== */

.navbar-premium .nav-wrapper {
    height: 92px;
    gap: 18px;
}

.navbar-premium .logo {
    gap: 14px;
    text-decoration: none;
}

.navbar-premium .logo-icon {
    width: 120px;
    height: 80px;
    border-radius: 12px;
    flex-shrink: 0;
}

.navbar-premium .logo-icon img {
    width: 120px;
    height: auto;
    max-width: none;
}

.navbar-premium .logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 215px;
}

.navbar-premium .logo-main {
    font-size: 1.25rem;
    line-height: 1.2;
    white-space: nowrap;
}

.navbar-premium .logo-sub {
    font-size: 0.78rem;
    line-height: 1.25;
    white-space: nowrap;
}

.navbar-premium .nav-menu {
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.navbar-premium .nav-link {
    font-size: 0.98rem;
    line-height: 1.2;
    padding: 0.7rem 1rem;
    white-space: nowrap;
}

.navbar-premium .btn-gold-primary {
    font-size: 0.92rem;
    padding: 10px 18px;
    white-space: nowrap;
}

@media (max-width: 1320px) {
    .navbar-premium .logo-text-wrapper {
        min-width: 0;
    }

    .navbar-premium .logo-main {
        font-size: 1.1rem;
    }

    .navbar-premium .logo-sub {
        font-size: 0.72rem;
    }

    .navbar-premium .nav-link {
        font-size: 0.92rem;
        padding: 0.62rem 0.82rem;
    }

    .navbar-premium .btn-gold-primary {
        padding: 9px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 1120px) {
    .navbar-premium .nav-wrapper {
        height: 86px;
        gap: 10px;
    }

    .navbar-premium .logo-icon {
        width: 104px;
        height: 68px;
    }

    .navbar-premium .logo-icon img {
        width: 104px;
    }

    .navbar-premium .logo-main {
        font-size: 1rem;
    }

    .navbar-premium .logo-sub {
        font-size: 0.68rem;
    }
}

@media (max-width: 992px) {
    .navbar-premium .nav-wrapper {
        height: 82px;
    }

    .navbar-premium .logo-icon {
        width: 94px;
        height: 60px;
    }

    .navbar-premium .logo-icon img {
        width: 94px;
    }

    .navbar-premium .logo-main {
        font-size: 0.95rem;
    }

    .navbar-premium .logo-sub {
        font-size: 0.64rem;
    }
}

@media (max-width: 768px) {
    .navbar-premium .nav-wrapper {
        height: 76px;
    }

    .navbar-premium .logo {
        gap: 10px;
    }

    .navbar-premium .logo-icon {
        width: 84px;
        height: 54px;
    }

    .navbar-premium .logo-icon img {
        width: 84px;
    }

    .navbar-premium .logo-main {
        font-size: 0.88rem;
    }

    .navbar-premium .logo-sub {
        font-size: 0.6rem;
    }
}

@media (max-width: 560px) {
    .navbar-premium .logo-text-wrapper {
        display: none;
    }

    .navbar-premium .logo-icon {
        width: 76px;
        height: 48px;
    }

    .navbar-premium .logo-icon img {
        width: 76px;
    }
}

/* ========================================
   Services.php Design Enhancement
   ======================================== */

#services-grid {
    padding: 95px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}

#services-grid .section-subtitle {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(196, 49, 70, 0.1);
    color: #C43146;
}

#services-grid .section-header {
    position: relative;
    max-width: 860px;
    margin: 0 auto 34px;
    padding: 34px 34px 28px;
    border-radius: 22px;
    border: 1px solid rgba(11, 61, 46, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 250, 0.98) 100%);
    box-shadow: 0 16px 34px rgba(11, 61, 46, 0.08);
    overflow: hidden;
}

#services-grid .section-header::before {
    content: '';
    position: absolute;
    top: -45px;
    right: -30px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202, 245, 80, 0.24) 0%, rgba(202, 245, 80, 0) 68%);
    pointer-events: none;
}

#services-grid .section-header::after {
    content: '';
    position: absolute;
    bottom: -55px;
    left: -45px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 49, 70, 0.12) 0%, rgba(196, 49, 70, 0) 70%);
    pointer-events: none;
}

#services-grid .section-title {
    position: relative;
    z-index: 1;
    margin: 10px 0 12px;
    font-size: clamp(2rem, 4.3vw, 3rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

#services-grid .section-title::after {
    width: 86px;
    height: 4px;
    bottom: -14px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0B3D2E 0%, #C43146 100%);
}

#services-grid .section-description {
    position: relative;
    z-index: 1;
    margin-top: 22px;
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    max-width: 680px;
    color: #4f5f70;
    line-height: 1.85;
}

#services-grid .services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
    margin-top: 40px;
    align-items: stretch;
}

#services-grid .service-card-large {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 24px 22px;
    border-radius: 22px;
    border: 1px solid rgba(11, 61, 46, 0.1);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(11, 61, 46, 0.08);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

#services-grid .service-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 45px rgba(11, 61, 46, 0.14);
    border-color: rgba(196, 49, 70, 0.35);
}

#services-grid .service-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0B3D2E 0%, #C43146 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

#services-grid .service-card-large:hover::before {
    transform: scaleX(1);
}

#services-grid .service-image {
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 16px;
}

#services-grid .service-icon-large {
    width: 88px;
    height: 88px;
    margin: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, #0B3D2E 0%, #1f5a45 60%, #C43146 100%);
    box-shadow: 0 16px 30px rgba(11, 61, 46, 0.25);
}

#services-grid .service-icon-large i {
    font-size: 1.9rem;
    color: #ffffff;
}

#services-grid .service-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
}

#services-grid .service-content h3 {
    margin: 0 0 8px;
    font-size: clamp(1.2rem, 1.8vw, 1.45rem);
    color: #0B3D2E;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

#services-grid .service-content .service-category {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    margin-bottom: 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    color: #1f5a45;
    background: rgba(202, 245, 80, 0.35);
}

#services-grid .service-content > p {
    margin-bottom: 16px;
    color: #5f6c7b;
    line-height: 1.72;
    font-size: 0.98rem;
    overflow-wrap: anywhere;
}

#services-grid .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 8px;
    flex: 1;
}

#services-grid .service-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #3f4d5d;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

#services-grid .service-features li i {
    margin-top: 3px;
    color: #1f9d66;
}

#services-grid .service-content .btn.btn-secondary {
    border-radius: 999px;
    padding: 11px 20px;
    font-weight: 600;
    margin-top: auto;
}

.why-services {
    padding: 90px 0;
    background: #ffffff;
}

.why-services .benefits-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.why-services .benefit-card {
    padding: 28px 22px;
    border-radius: 18px;
    border: 1px solid rgba(11, 61, 46, 0.1);
    box-shadow: 0 10px 24px rgba(11, 61, 46, 0.06);
}

.why-services .benefit-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 14px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0B3D2E, #2C5E4A);
    box-shadow: 0 10px 20px rgba(11, 61, 46, 0.2);
}

.why-services .benefit-icon i {
    font-size: 1.45rem;
    color: #CAF550;
    margin: 0;
    background: none;
    -webkit-text-fill-color: #CAF550;
}

.service-process {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(11, 61, 46, 0.04) 0%, rgba(196, 49, 70, 0.04) 100%);
}

.service-process .process-steps {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-process .step {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 20px;
    border: 1px solid rgba(11, 61, 46, 0.1);
    box-shadow: 0 10px 22px rgba(11, 61, 46, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-process .step:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(11, 61, 46, 0.12);
}

.service-process .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 32px;
    margin-bottom: 14px;
    border-radius: 999px;
    padding: 0 12px;
    background: rgba(196, 49, 70, 0.12);
    color: #C43146;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.service-process .step h4 {
    margin: 0 0 8px;
    color: #0B3D2E;
    font-size: 1.12rem;
}

.service-process .step p {
    margin: 0;
    color: #5f6c7b;
    line-height: 1.65;
}

@media (max-width: 1100px) {
    .why-services .benefits-grid,
    .service-process .process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    #services-grid .service-card-large {
        padding: 22px 20px;
    }

    #services-grid .service-image {
        justify-content: flex-start;
    }

    #services-grid .service-icon-large {
        width: 82px;
        height: 82px;
        border-radius: 18px;
    }
}

@media (max-width: 640px) {
    #services-grid,
    .why-services,
    .service-process {
        padding: 72px 0;
    }

    #services-grid .section-header {
        padding: 24px 18px 22px;
        border-radius: 18px;
        margin-bottom: 24px;
    }

    #services-grid .section-title {
        font-size: clamp(1.6rem, 8vw, 2.1rem);
    }

    #services-grid .section-description {
        margin-top: 18px;
        line-height: 1.75;
    }

    #services-grid .services-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-services .benefits-grid,
    .service-process .process-steps {
        grid-template-columns: 1fr;
    }

    #services-grid .service-card-large {
        padding: 22px;
    }
}

/* Services Page CTA - Scoped Enhancement */
.services-cta {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(135deg, #083528 0%, #0B3D2E 45%, #1f5a45 75%, #C43146 100%);
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202, 245, 80, 0.25) 0%, rgba(202, 245, 80, 0) 72%);
    pointer-events: none;
}

.services-cta::after {
    content: '';
    position: absolute;
    bottom: -140px;
    left: -90px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 74%);
    pointer-events: none;
}

.services-cta .cta-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    padding: 46px 44px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.services-cta .cta-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    color: #CAF550;
    background: rgba(202, 245, 80, 0.12);
    border: 1px solid rgba(202, 245, 80, 0.35);
}

.services-cta .cta-content h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    color: #ffffff;
}

.services-cta .cta-content p {
    max-width: 700px;
    margin: 0 auto 28px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.services-cta .cta-actions {
    display: flex;
    justify-content: center;
}

.services-cta .btn.btn-light.btn-large {
    border-radius: 999px;
    padding: 14px 30px;
    font-weight: 700;
    border: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.services-cta .btn.btn-light.btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .services-cta {
        padding: 78px 0;
    }

    .services-cta .cta-content {
        padding: 32px 22px;
        border-radius: 18px;
    }

    .services-cta .cta-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .services-cta .cta-kicker {
        font-size: 0.74rem;
    }

    .services-cta .btn.btn-light.btn-large {
        width: 100%;
        justify-content: center;
    }
}
