:root {
    /* Color palette from logo */
    --light-blue: #87CEEB;
    --medium-blue: #4169E1;
    --dark-blue: #006994;
    --dark-teal: #008080;
    --green: #3CB371;
    --cyan: #00BFFF;
    --black: #000000;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #E9ECEF;
    --gray-dark: #495057;
    
    /* Additional colors for sustainability theme */
    --green-light: #90EE90;
    --green-dark: #2D8659;
    --teal-light: #20B2AA;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Border radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(135, 206, 235, 0.2);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--teal-light));
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--dark-blue) 50%, var(--black) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: blob-animation 20s infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--green);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--cyan);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--light-blue);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
}

.text-green {
    color: var(--green);
    text-shadow: 0 0 30px rgba(60, 179, 113, 0.5);
    display: block;
}

.text-blue {
    color: var(--light-blue);
    text-shadow: 0 0 30px rgba(135, 206, 235, 0.5);
    display: block;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--light-blue);
    font-weight: 500;
}

.highlight-green {
    color: var(--green-light);
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius-xl);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(60, 179, 113, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(60, 179, 113, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--light-blue);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(135, 206, 235, 0.2);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.curved {
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    animation: morphing 15s ease-in-out infinite;
}

.curved-reverse {
    border-radius: 60% 40% 40% 60% / 40% 70% 30% 60%;
    animation: morphing-reverse 15s ease-in-out infinite;
}

.hero-img,
.sustainability-img,
.team-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--light-blue);
    border-radius: 25px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 6px;
    background: var(--light-blue);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

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

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(60, 179, 113, 0.1), rgba(32, 178, 170, 0.1));
    border: 1px solid rgba(60, 179, 113, 0.3);
    border-radius: var(--radius-xl);
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.section-badge i {
    font-size: 1rem;
}

.section-title {
    font-size: 3rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Sustainability Section */
.sustainability {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.sustainability-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.sustainability-text .section-badge {
    margin-bottom: 1.5rem;
}

.sustainability-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sustainability-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.sustainability-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green), var(--teal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-content h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--gray-dark);
    line-height: 1.7;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
}

.wave-divider::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23ffffff' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,58.7C960,64,1056,64,1152,58.7C1248,53,1344,43,1392,37.3L1440,32L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: 100% 100px;
}

.wave-1::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23f8f9fa' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,58.7C960,64,1056,64,1152,58.7C1248,53,1344,43,1392,37.3L1440,32L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: 100% 100px;
}

.wave-2::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23f8f9fa' d='M0,96L48,90.7C96,85,192,75,288,69.3C384,64,480,64,576,69.3C672,75,768,85,864,90.7C960,96,1056,96,1152,90.7C1248,85,1344,75,1392,69.3L1440,64L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: 100% 100px;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--green), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

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

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(60, 179, 113, 0.1), rgba(32, 178, 170, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--green);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, var(--green), var(--teal-light));
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.service-content h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-content p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-image {
    margin-top: 1.5rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

/* Team Section */
.team {
    background: var(--white);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.team-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--gray-light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.team-feature:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.team-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--medium-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.5rem;
}

.team-feature-content h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.team-feature-content p {
    color: var(--gray-dark);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--dark-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.blob-4 {
    width: 600px;
    height: 600px;
    background: var(--green);
    top: -300px;
    right: -300px;
    animation-delay: 0s;
}

.blob-5 {
    width: 500px;
    height: 500px;
    background: var(--cyan);
    bottom: -250px;
    left: -250px;
    animation-delay: 7s;
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--white);
}

.contact-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--light-blue);
    font-size: 1.5rem;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--light-blue);
    font-size: 1.2rem;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-light);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-blue);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(60, 179, 113, 0.2);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-teal) 0%, var(--dark-blue) 50%, var(--black) 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.footer-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: blob-animation 25s infinite;
}

.footer-blob-1 {
    width: 600px;
    height: 600px;
    background: var(--green);
    top: -300px;
    left: -300px;
    animation-delay: 0s;
}

.footer-blob-2 {
    width: 500px;
    height: 500px;
    background: var(--cyan);
    bottom: -250px;
    right: -250px;
    animation-delay: 10s;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo-wrapper {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-logo {
    height: 55px;
    width: auto;
    filter: drop-shadow(0 4px 10px rgba(60, 179, 113, 0.3));
    transition: transform 0.3s ease;
}

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

.footer-tagline {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 500;
}

.footer-tagline .highlight-green {
    color: var(--green-light);
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(60, 179, 113, 0.2), rgba(32, 178, 170, 0.2));
    border: 2px solid rgba(60, 179, 113, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--green), var(--teal-light));
    border-color: var(--green);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(60, 179, 113, 0.4);
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--light-blue);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-title i {
    color: var(--green);
    font-size: 1.1rem;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-radius: var(--radius-sm);
}

.footer-links a i,
.footer-services a i {
    font-size: 0.75rem;
    color: var(--green);
    transition: transform 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--green-light);
    padding-left: 0.5rem;
    background: rgba(60, 179, 113, 0.1);
}

.footer-links a:hover i,
.footer-services a:hover i {
    transform: translateX(3px);
    color: var(--green-light);
}

.footer-contact {
    max-width: 300px;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(60, 179, 113, 0.2);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(60, 179, 113, 0.4);
    transform: translateX(5px);
}

.contact-info-item .contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green), var(--teal-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.contact-text a,
.contact-text span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--green-light);
}

.footer-divider {
    position: relative;
    z-index: 1;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(60, 179, 113, 0.3) 25%, 
        rgba(135, 206, 235, 0.3) 50%, 
        rgba(60, 179, 113, 0.3) 75%, 
        transparent 100%);
    margin: 3rem 0 2rem;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-copyright .brand-name {
    color: var(--green-light);
    font-weight: 600;
}

.footer-sustainability {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--green-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.footer-sustainability i {
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Animations */
@keyframes blob-animation {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes morphing {
    0%, 100% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 70% 30% 50% 50% / 30% 50% 50% 70%;
    }
    50% {
        border-radius: 50% 50% 30% 70% / 50% 30% 70% 50%;
    }
    75% {
        border-radius: 30% 70% 70% 30% / 70% 50% 50% 30%;
    }
}

@keyframes morphing-reverse {
    0%, 100% {
        border-radius: 60% 40% 40% 60% / 40% 70% 30% 60%;
    }
    25% {
        border-radius: 30% 70% 50% 50% / 70% 50% 50% 30%;
    }
    50% {
        border-radius: 50% 50% 70% 30% / 50% 70% 30% 50%;
    }
    75% {
        border-radius: 70% 30% 30% 70% / 30% 50% 50% 70%;
    }
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

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

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

.animate-slide-up-delay {
    animation: slideUp 1s ease-out 0.3s both;
}

.animate-slide-left {
    animation: slideLeft 1s ease-out;
}

.animate-slide-left-delay {
    animation: slideLeft 1s ease-out 0.2s both;
}

.animate-slide-left-delay-2 {
    animation: slideLeft 1s ease-out 0.4s both;
}

.animate-slide-right {
    animation: slideRight 1s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

.animate-scale-in-delay {
    animation: scaleIn 0.6s ease-out 0.1s both;
}

.animate-scale-in-delay-2 {
    animation: scaleIn 0.6s ease-out 0.2s both;
}

.animate-scale-in-delay-3 {
    animation: scaleIn 0.6s ease-out 0.3s both;
}

.animate-scale-in-delay-4 {
    animation: scaleIn 0.6s ease-out 0.4s both;
}

.animate-scale-in-delay-5 {
    animation: scaleIn 0.6s ease-out 0.5s both;
}

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

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

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .sustainability-content,
    .team-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2.5rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem;
        display: block;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.4rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

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

    .sustainability-text .section-title {
        text-align: center;
    }

    .contact-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .social-links {
        justify-content: center;
    }

    .footer-contact {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

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