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

:root {
    /* Brand Colors */
    --primary-color: #2d5f3f;
    --primary-light: #3d7f5f;
    --primary-dark: #1d3f2f;
    --secondary-color: #2c3e50;
    --accent-color: #27ae60;

    /* Neutral Colors */
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #e1e8ed;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2d5f3f 0%, #27ae60 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(45, 95, 63, 0.95) 0%, rgba(39, 174, 96, 0.95) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

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

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: var(--line-height-base);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

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

ul {
    list-style: none;
}

/* ==========================================
   Utility Classes
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-dark .section-tag {
    color: var(--accent-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-dark .section-title {
    color: var(--bg-light);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.gradient-text {
    color: #2ecc71;
    display: inline-block;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    text-align: center;
    min-height: 44px;
    justify-content: center;
}

@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
    }
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

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

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

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

/* ==========================================
   Header & Navigation
   ========================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

.navbar {
    padding: 1rem 0;
}

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

.logo img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-base);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--transition-base);
}

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

.nav-link:hover::after {
    width: 60%;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 95, 63, 0.75) 100%);
    z-index: 1;
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: slideInUp 1s ease-out;
}

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

.hero-slide-icon {
    width: 100px;
    height: 100px;
    background: rgba(46, 204, 113, 0.2);
    border: 3px solid #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.hero-slide-icon i {
    font-size: 3rem;
    color: #2ecc71;
}

.hero-slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.hero-slide-subtitle {
    font-size: 1.5rem;
    color: #2ecc71;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-slide-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Slider Controls */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 100;
}

.hero-slider-btn:hover {
    background: rgba(46, 204, 113, 0.3);
    border-color: #2ecc71;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    left: 2rem;
}

.hero-slider-next {
    right: 2rem;
}

/* Hero Slider Pagination */
.hero-slider-pagination {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 100;
}

.hero-pagination-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.hero-pagination-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-pagination-dot.active {
    background: #2ecc71;
    border-color: #2ecc71;
    width: 40px;
    border-radius: 7px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(45, 95, 63, 0.88) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    display: none; /* Hidden - replaced by slider */
}

.hero-tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #2ecc71;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: none;
}

/* Service Thumbnails in Hero */
.hero-services {
    display: none; /* Hidden - replaced by slider */
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-thumb {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(39, 174, 96, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-thumb:hover::before {
    opacity: 1;
}

.service-thumb:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(46, 204, 113, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-thumb-icon {
    width: 60px;
    height: 60px;
    background: rgba(46, 204, 113, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.service-thumb:hover .service-thumb-icon {
    background: rgba(46, 204, 113, 0.25);
    border-color: rgba(46, 204, 113, 0.5);
    transform: translateY(-3px);
}

.service-thumb-icon i {
    font-size: 1.5rem;
    color: #2ecc71;
}

.service-thumb h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.scroll-indicator {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    animation: float 2s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-base);
}

.scroll-indicator a:hover {
    color: #2ecc71;
    border-color: rgba(46, 204, 113, 0.3);
    background: rgba(46, 204, 113, 0.1);
}

/* ==========================================
   About Section
   ========================================== */
.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--bg-gray);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.feature-item:hover i {
    color: white;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.03);
}

/* ==========================================
   Services Section
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-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(--spacing-md);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.service-features {
    margin-top: var(--spacing-md);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: var(--accent-color);
    font-size: 0.75rem;
}

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.why-card {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.why-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: all var(--transition-base);
}

.why-card:hover .why-icon {
    animation: pulse 1s ease-in-out infinite;
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-card h3 {
    font-size: 1.375rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==========================================
   Team Section
   ========================================== */
.team-content {
    max-width: 800px;
    margin: 0 auto;
}

.team-member-card {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.member-info-center h3 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.member-role {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.member-bio {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-size: 1.0625rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.member-contact-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.btn-secondary-dark {
    background: var(--gradient-dark);
    color: white;
    border: 2px solid transparent;
}

.btn-secondary-dark:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    justify-content: center;
    margin-top: var(--spacing-md);
}

.expertise-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.expertise-tag:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   Testimonials Slider Section
   ========================================== */
.testimonials {
    overflow: hidden;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    will-change: transform;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    max-width: 100%;
    padding: 0 var(--spacing-sm);
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-rating {
    margin-bottom: var(--spacing-md);
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1.125rem;
    margin: 0 0.125rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-info h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(39, 174, 96, 0.3);
    border-color: #2ecc71;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
}

/* Slider Pagination */
.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: var(--spacing-lg);
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.pagination-dot.active {
    background: #2ecc71;
    width: 32px;
    border-radius: 6px;
}

/* ==========================================
   Partners Logo Slider Section
   ========================================== */
.partners {
    background: var(--bg-gray);
}

.partners-slider-wrapper {
    overflow: hidden;
    padding: var(--spacing-md) 0;
}

.partners-slider {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    padding: 0 var(--spacing-lg);
}

.partner-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    min-width: 150px;
    height: 120px;
    border: 2px solid transparent;
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.partner-logo-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all var(--transition-base);
}

.partner-logo-card:hover i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.partner-logo-card span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info {
    background: var(--gradient-dark);
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-info h3 {
    font-size: 1.875rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-details p,
.contact-details a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-details a:hover {
    color: var(--accent-color);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--bg-light);
    color: var(--text-dark);
    min-height: 44px;
}

@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        min-height: 48px;
    }
}

.form-group select {
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232d5f3f' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.form-group select:hover {
    border-color: var(--primary-light);
}

.form-group select option {
    padding: 0.875rem;
    background: var(--bg-light);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 95, 63, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b0b0b0;
}

.form-group select:invalid {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: var(--spacing-md);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.footer-license {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-md);
}

.footer-license p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.footer-license small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-base);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 4px;
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer-legal {
    margin-top: 0.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0.5rem;
}

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

/* ==========================================
   Scroll to Top Button
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

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

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 0.7rem;
    }

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

    .hero-services {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .service-thumb {
        padding: 1.5rem 1rem;
    }

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

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

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

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

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

    .service-thumb:nth-child(5),
    .service-thumb:nth-child(6) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 2.5rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }

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

    /* Hero Slider Mobile */
    .hero-slide-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .hero-slide-icon i {
        font-size: 2.5rem;
    }

    .hero-slide-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-slide-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .hero-slide-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .hero-slider-prev {
        left: 1rem;
    }

    .hero-slider-next {
        right: 1rem;
    }

    .hero-slider-pagination {
        bottom: 1rem;
    }

    .hero-pagination-dot {
        width: 10px;
        height: 10px;
    }

    .hero-pagination-dot.active {
        width: 30px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all var(--transition-base);
        z-index: 999;
    }

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

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.3;
        margin-bottom: var(--spacing-sm);
    }

    .hero-tagline {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
        margin-bottom: var(--spacing-sm);
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        margin-bottom: var(--spacing-md);
    }

    .hero-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .service-thumb:nth-child(5),
    .service-thumb:nth-child(6) {
        grid-column: span 1;
    }

    .service-thumb {
        padding: 1.25rem 0.875rem;
    }

    .service-thumb-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.625rem;
    }

    .service-thumb-icon i {
        font-size: 1.25rem;
    }

    .service-thumb h4 {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .section-title {
        font-size: 1.875rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .services-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .service-card,
    .why-card {
        padding: var(--spacing-md);
    }

    .about-content {
        gap: var(--spacing-md);
    }

    .about-image {
        order: -1;
    }

    .contact-wrapper {
        gap: var(--spacing-md);
    }

    .member-contact-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .member-contact-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

    .footer-logo {
        margin: 0 auto var(--spacing-md);
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }

    /* Sliders responsive */
    .testimonials-slider-wrapper {
        padding: 0 50px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .partner-logo-card {
        min-width: 130px;
        height: 100px;
    }

    .partner-logo-card i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-lg: 1.5rem;
        --spacing-md: 1rem;
    }

    /* Hero Slider Small Mobile */
    .hero-slide-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .hero-slide-icon i {
        font-size: 2rem;
    }

    .hero-slide-title {
        font-size: 1.75rem;
    }

    .hero-slide-subtitle {
        font-size: 1rem;
    }

    .hero-slide-description {
        font-size: 0.9375rem;
    }

    .hero-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-slider-prev {
        left: 0.5rem;
    }

    .hero-slider-next {
        right: 0.5rem;
    }

    .hero-pagination-dot {
        width: 8px;
        height: 8px;
    }

    .hero-pagination-dot.active {
        width: 24px;
    }

    .hero-title {
        font-size: 1.625rem;
        line-height: 1.3;
    }

    .hero-tagline {
        font-size: 0.625rem;
        letter-spacing: 1px;
        margin-bottom: 0.625rem;
    }

    .hero-subtitle {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.625rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }

    .hero-services {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .service-thumb:nth-child(5),
    .service-thumb:nth-child(6) {
        grid-column: span 1;
    }

    .service-thumb {
        padding: 1rem 0.75rem;
    }

    .service-thumb-icon {
        width: 44px;
        height: 44px;
    }

    .service-thumb h4 {
        font-size: 0.8125rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

    .service-card,
    .why-card,
    .contact-info,
    .contact-form-wrapper {
        padding: 1.25rem;
    }

    .team-member-card {
        padding: var(--spacing-lg);
    }

    .member-info-center h3 {
        font-size: 1.75rem;
    }

    .member-role {
        font-size: 1rem;
    }

    .member-bio {
        font-size: 0.9375rem;
    }

    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-sm);
    }

    .footer-content {
        gap: var(--spacing-sm);
    }

    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .logo img {
        height: 40px;
    }

    /* Sliders mobile responsive */
    .testimonials-slider-wrapper {
        padding: 0 40px;
    }

    .testimonial-card {
        padding: var(--spacing-md);
    }

    .testimonial-text {
        font-size: 0.9375rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.875rem;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .pagination-dot {
        width: 10px;
        height: 10px;
    }

    .pagination-dot.active {
        width: 24px;
    }

    .partner-logo {
        padding: 0 var(--spacing-sm);
    }

    .partner-logo-card {
        min-width: 110px;
        height: 90px;
        padding: var(--spacing-sm);
    }

    .partner-logo-card i {
        font-size: 1.75rem;
    }

    .partner-logo-card span {
        font-size: 0.875rem;
    }
}

/* Landscape Mobile Devices */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 2rem;
    }

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

    .hero-tagline {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }

    .hero-services {
        margin-top: 1.5rem;
        padding-top: 1rem;
        gap: 1rem;
    }

    .service-thumb {
        padding: 1rem 0.75rem;
    }

    .service-thumb-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .service-thumb-icon i {
        font-size: 1rem;
    }

    .service-thumb h4 {
        font-size: 0.75rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .service-thumb,
    .service-card,
    .why-card,
    .nav-link,
    .btn {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }

    /* Ensure all interactive elements are touch-friendly */
    a, button, .service-thumb, .nav-link {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .service-thumb:hover,
    .service-card:hover,
    .why-card:hover {
        transform: none;
    }

    /* But keep them for active/tap states */
    .service-thumb:active {
        transform: scale(0.98);
    }

    .service-card:active,
    .why-card:active {
        transform: scale(0.99);
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-background {
        background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=2400&q=90');
    }
}

/* ==========================================
   Print Styles
   ========================================== */
@media print {
    .navbar,
    .hero-buttons,
    .scroll-indicator,
    .scroll-to-top,
    .contact-form-wrapper {
        display: none;
    }

    body {
        color: black;
    }

    .section {
        page-break-inside: avoid;
    }
}
