/* Brand Colors */
:root {
    --primary-green: #3C941B;
    --primary-green-light: #4CAF2B;
    --primary-green-dark: #2C7A0B;
    --secondary-blue: #005C88;
    --secondary-blue-light: #0073A8;
    --secondary-blue-dark: #004568;
    --white: #FFFFFF;
    --gray: #555555;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #2C3E50;
    --black: #000000;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    color: var(--dark-gray);
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 600;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: 42px;
    font-weight: 600;
}

h3 {
    font-size: 28px;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    font-size: 18px;
    padding: 18px 40px;
    box-shadow: 0 4px 20px rgba(60, 148, 27, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary::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;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(60, 148, 27, 0.35);
}

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

.hero .btn-primary {
    animation: pulse 2.5s infinite ease-in-out;
    position: relative;
    overflow: hidden;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(60, 148, 27, 0.3);
    }
    50% {
        box-shadow: 0 8px 35px rgba(60, 148, 27, 0.45);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    transition: padding 0.3s ease;
}

.navbar.scrolled .nav-wrapper {
    padding: 0.75rem 0;
}

.logo img {
    height: 50px;
    transition: height 0.3s ease, transform 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-green), var(--secondary-blue));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 92, 136, 0.85) 0%,
        rgba(0, 92, 136, 0.7) 40%,
        rgba(60, 148, 27, 0.4) 100%
    );
    z-index: 1;
    mix-blend-mode: multiply;
}

.wave-overlay {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 2;
    overflow: hidden;
}

.wave-overlay::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="%23ffffff" fill-opacity="1" d="M0,160L48,170.7C96,181,192,203,288,208C384,213,480,203,576,181.3C672,160,768,128,864,133.3C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat;
    background-size: 100% 100%;
    background-position: bottom center;
}

/* Add shadow and colored edge for better visibility */
.wave-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path stroke="%23e0e0e0" stroke-width="2" fill="none" d="M0,160L48,170.7C96,181,192,203,288,208C384,213,480,203,576,181.3C672,160,768,128,864,133.3C960,139,1056,181,1152,186.7C1248,192,1344,160,1392,144L1440,128"></path></svg>') no-repeat;
    background-size: 100% 100%;
    background-position: bottom center;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
}

.hero-logo img {
    max-width: 350px;
    filter: brightness(0) invert(1) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    font-size: 64px;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-subtitle {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--white);
    font-size: 32px;
    z-index: 3;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

/* Animated background shapes */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.hero::before {
    width: 300px;
    height: 300px;
    background: var(--primary-green);
    top: 10%;
    left: -150px;
}

.hero::after {
    width: 400px;
    height: 400px;
    background: var(--secondary-blue);
    bottom: 10%;
    right: -200px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-header h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-green), var(--secondary-blue));
    border-radius: 2px;
}

.section-header p {
    font-size: 20px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* About Hero Section */
.about-hero {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-hero-content {
    text-align: left;
}

.about-hero-visual {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-hero-visual:hover {
    box-shadow: var(--shadow-xl);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1) translateZ(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.about-hero-visual:hover .about-image {
    transform: scale(1.05) translateZ(0) !important;
}

.lead {
    font-size: 19px;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: var(--gray);
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray);
    max-width: none;
    margin: 0 auto;
    line-height: 1.6;
    margin-top: 1rem;
    padding: 0 20px;
}

/* About Background Pattern */
.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--primary-green) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--secondary-blue) 0%, transparent 50%);
    z-index: 0;
}

/* Value Propositions */
.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.value-prop {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-prop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-blue));
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.value-prop:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.value-prop:hover::before {
    transform: translateY(0);
}

.value-prop-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.value-prop-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    opacity: 0.2;
    transform: scale(1.2);
    z-index: -1;
}

.value-prop:hover .value-prop-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: var(--shadow-md);
}

.value-prop-icon i {
    font-size: 32px;
    color: var(--white);
}

.value-prop-content h4 {
    font-size: 22px;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.value-prop-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

/* About CTA */
.about-cta {
    margin-top: 2rem;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--secondary-blue-dark) 100%);
    color: var(--white);
    font-size: 17px;
    padding: 16px 32px;
    box-shadow: 0 4px 20px rgba(0, 92, 136, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 92, 136, 0.35);
}

/* Enhanced About Visual */
.image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-accent {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(40px);
}

.floating-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--dark-gray);
    animation: float-card 3s ease-in-out infinite;
}

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

.floating-card i {
    color: var(--primary-green);
    font-size: 20px;
}

/* About Philosophy */
.about-philosophy {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(245, 249, 250, 0.5) 100%);
    border-radius: 24px;
    margin-top: 2rem;
}

.philosophy-header {
    margin-bottom: 3rem;
}

.philosophy-header h3 {
    font-size: 32px;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    position: relative;
    display: inline-block;
}

.philosophy-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.philosophy-header h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-green), var(--secondary-blue));
    border-radius: 2px;
}

.philosophy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.philosophy-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.philosophy-card * {
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.philosophy-card:hover i,
.philosophy-card:hover h5,
.philosophy-card:hover p {
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white) !important;
}

.philosophy-card i {
    font-size: 48px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    display: inline-block;
}

.philosophy-card:hover i {
    transform: scale(1.15) rotate(-10deg);
}

.philosophy-card h5 {
    font-size: 22px;
    margin-bottom: 0.75rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.philosophy-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray);
}

.philosophy-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Services Section */
.services {
    background-color: var(--light-gray);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: var(--light-gray);
    border-radius: 16px 16px 0 0;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-green);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-image.loading::before {
    opacity: 1;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1) translateZ(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.service-card:hover .service-image img {
    transform: scale(1.08) translateZ(0) !important;
}

.service-content {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    position: relative;
}

.service-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    color: var(--primary-green);
}

.service-content h3 {
    margin-bottom: 1rem;
    margin-top: 2.5rem;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: var(--primary-green);
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fbfd 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Background Pattern */
.ocean-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.ocean-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(60, 148, 27, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 92, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 92, 136, 0.06) 0%, transparent 40%);
    animation: float-gradient 20s ease-in-out infinite;
}

.ocean-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(0, 92, 136, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

@keyframes float-gradient {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-20px, -20px) scale(1.05); }
    50% { transform: translate(20px, -10px) scale(0.95); }
    75% { transform: translate(-10px, 20px) scale(1.02); }
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

/* Value Grid */
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.value-card.featured {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-blue);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(60, 148, 27, 0.1) 0%, rgba(0, 92, 136, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-blue) 100%);
}

.value-card.featured .value-icon {
    background: rgba(255, 255, 255, 0.2);
}

.value-icon i {
    font-size: 36px;
    color: var(--primary-green);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon i {
    color: var(--white);
}

.value-card.featured .value-icon i {
    color: var(--white);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.value-card.featured h3 {
    color: var(--white);
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.value-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.value-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 14px;
    color: var(--gray);
}

.value-card.featured .value-features li {
    color: rgba(255, 255, 255, 0.8);
}

.value-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.value-card.featured .value-features li::before {
    color: var(--white);
}

/* Trust Section */
.trust-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(245, 249, 250, 0.5) 100%);
    border-radius: 24px;
    position: relative;
    z-index: 1;
}

.trust-section h3 {
    font-size: 32px;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.trust-section p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-section .btn-primary {
    font-size: 18px;
    padding: 18px 36px;
}

/* Contact Section */
.contact {
    position: relative;
    background-color: var(--light-gray);
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
    transform: scale(1);
    transition: none;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(245, 245, 245, 0.95) 0%,
        rgba(245, 245, 245, 0.98) 100%
    );
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 92, 136, 0.2);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(0, 92, 136, 0.1);
}

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

.contact-form .btn-primary {
    display: block;
    width: auto;
    padding: 16px 32px;
    font-size: 16px;
    margin: 1rem auto 0;
}

.form-message {
    margin-top: 1.5rem;
    display: none;
}

.success-message,
.error-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

.success-message {
    background: rgba(60, 148, 27, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(60, 148, 27, 0.2);
}

.error-message {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.success-message i,
.error-message i {
    margin-right: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-item i {
    font-size: 24px;
    color: var(--secondary-blue);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 92, 136, 0.1), rgba(60, 148, 27, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover i {
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-green));
    color: var(--white);
    transform: scale(1.1);
}

.contact-item h4 {
    margin-bottom: 0.25rem;
    color: var(--dark-gray);
}

.contact-visual {
    text-align: center;
}

.contact-logo {
    max-width: 300px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1a2332 100%);
    color: var(--white);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, var(--primary-green), var(--secondary-blue), var(--primary-green));
    background-size: 200% 100%;
    animation: gradient-shift 5s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.footer-content {
    text-align: center;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-green);
}

.footer-links a:hover::before {
    width: 80%;
}

.copyright {
    font-size: 14px;
    opacity: 0.6;
}

/* Image Loading States - Only for lazy loaded images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Hero background image should always be visible */
.hero-bg-image {
    opacity: 1 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-toggle.active .hamburger {
        background-color: transparent;
    }
    
    .nav-toggle.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }
    
    .nav-toggle.active .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
    
    /* Hero Mobile */
    .hero-logo img {
        max-width: 140px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 18px;
        padding: 0 1rem;
    }
    
    .hero .btn-primary {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .wave-overlay {
        height: 80px;
    }
    
    .wave-overlay::before {
        background-size: 120% 100%;
    }
    
    /* Sections Mobile */
    section {
        padding: 60px 0;
    }
    
    /* About Mobile */
    .about-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .about-hero-content {
        text-align: left;
    }
    
    .about-hero-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-values {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .value-prop {
        padding: 2rem 1.5rem;
    }
    
    .philosophy-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-philosophy {
        padding: 3rem 1.5rem;
    }
    
    .philosophy-header h3 {
        font-size: 28px;
    }
    
    .philosophy-card {
        padding: 2rem 1.5rem;
    }
    
    .floating-card {
        bottom: 20px;
        right: 20px;
        padding: 0.75rem 1rem;
        font-size: 14px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-image {
        height: 150px;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    /* Why Choose Us Mobile */
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .value-card.featured {
        transform: scale(1);
    }
    
    .trust-section {
        padding: 2rem;
    }
    
    .trust-section h3 {
        font-size: 28px;
    }
    
    .trust-section p {
        font-size: 16px;
    }
    
    /* Contact Mobile */
    .contact-form-wrapper {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Footer Mobile */
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}