/* PlantaVita Website Styles */

/* Base Styles & Reset */
:root {
    /* Primary Colors */
    --teal: #008080;
    --blue: #074E92;
    
    /* Supporting Colors */
    --light-teal: #40E0D0;
    --soft-green: #90EE90;
    --warm-beige: #F5F5DC;
    --soft-lavender: #E6E6FA;
    
    /* Gradients */
    --gradient-teal-blue: linear-gradient(135deg, #008080, #40E0D0);
    --gradient-blue-teal: linear-gradient(135deg, #074E92, #008080);
    --gradient-teal-green: linear-gradient(135deg, #008080, #90EE90);
    --gradient-blue-purple: linear-gradient(135deg, #074E92, #9370DB);
    --gradient-overlay: linear-gradient(to bottom, rgba(0,128,128,0.8), rgba(7,78,146,0.8));
    
    /* Typography */
    --font-base: 'Plus Jakarta Sans', 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-xxl: 64px;
    --space-section: 96px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--space-md);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
    text-align: center;
    position: relative;
    display: inline-block;
}

h2:not(.section-header h2)::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-teal-blue);
    border-radius: 2px;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--space-md);
}

ul {
    list-style: none;
}

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

a:hover {
    color: var(--blue);
}

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

section {
    padding: var(--space-section) 0;
    position: relative;
}

section h2 {
    margin-left: auto;
    margin-right: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    font-size: 1rem;
}

.btn:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--gradient-teal-blue);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 128, 128, 0.2);
}

/* Hero-style button for consistent styling across the site */
.hero-style-btn {
    min-width: 200px;
    padding: 16px 32px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50px;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3);
    color: white !important; /* Ensure text is always white */
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

/* Button glow effect */
.hero-style-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(15px);
    opacity: 0;
    z-index: -2;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px) scale(0.95);
}

/* Button hover line effect */
.hero-style-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease, width 0.4s ease;
    border-radius: 3px;
}

.hero-style-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, var(--teal) 20%, var(--blue) 80%);
}

.hero-style-btn:hover::before {
    opacity: 0.8;
    transform: translateY(5px) scale(1);
}

.hero-style-btn:hover::after {
    transform: translateX(-50%) scaleX(1);
    width: 60%;
}

.btn-primary:hover {
    background: var(--gradient-blue-teal);
    color: white;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--teal);
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-image: var(--gradient-teal-blue);
    border-image-slice: 1;
}

.btn-secondary:hover {
    background-color: rgba(0, 128, 128, 0.05);
    color: var(--teal);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 128, 128, 0.15), 0 0 30px rgba(0, 128, 128, 0.05);
    z-index: 1000;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(0, 128, 128, 0.1);
    transition: all 0.3s ease;
    animation: headerGlow 5s infinite alternate;
}

@keyframes headerGlow {
    0% {
        box-shadow: 0 4px 20px rgba(0, 128, 128, 0.15), 0 0 30px rgba(0, 128, 128, 0.05);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 128, 128, 0.15), 0 0 40px rgba(0, 128, 128, 0.1);
    }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.header::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-teal-blue);
    opacity: 0.8;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.logo-icon {
    animation: pulse 3s infinite alternate;
}

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

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    background: var(--gradient-teal-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.main-nav ul {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 5px 15px;
    box-shadow: 0 2px 10px rgba(0, 128, 128, 0.1);
    border: 1px solid rgba(0, 128, 128, 0.05);
    position: relative;
    overflow: hidden;
}

:root {
    --indicator-position: 15px;
    --active-index: 0;
}

.main-nav ul::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--indicator-position);
    width: 20px;
    height: 2px;
    background: var(--gradient-teal-blue);
    border-radius: 2px;
    opacity: 0.7;
    box-shadow: 0 0 10px rgba(0, 128, 128, 0.5);
    transition: left 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: translateX(0);
}

.main-nav ul::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.05) 0%, transparent 70%);
    animation: navGlow 8s infinite linear;
}

@keyframes navGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    transition: var(--transition-base);
    padding: 8px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-icon {
    color: var(--teal);
    font-size: 10px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

/* Disabled dot appearance on hover */
.main-nav a:hover .nav-icon {
    opacity: 0;
    transform: scale(0);
}

.nav-contact {
    background: var(--gradient-teal-blue);
    color: white !important;
    padding: 12px 24px !important;
    margin-left: 5px;
    box-shadow: 0 2px 10px rgba(0, 128, 128, 0.2);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
}

/* Specific styles for the navbar Contact button */
.main-nav .hero-style-btn {
    padding: 12px 24px;
    min-width: auto;
    margin-left: 5px;
    font-size: 1rem;
}

.main-nav .hero-style-btn .nav-icon {
    color: white;
}

.main-nav a:hover {
    color: var(--teal);
    background-color: rgba(0, 128, 128, 0.08);
    box-shadow: 0 2px 8px rgba(0, 128, 128, 0.1);
    transform: translateY(-2px);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-teal-blue);
    transition: var(--transition-base);
    border-radius: 1px;
    opacity: 0;
}

.main-nav a:hover::after {
    width: 70%;
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
    overflow: hidden;
}

.menu-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 128, 128, 0.2);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--teal);
    position: absolute;
    left: 0;
    transition: transform 0.3s ease, opacity 0.2s ease;
    border-radius: 2px;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 9px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 18px;
}

.mobile-menu-btn:hover span:nth-child(1),
.mobile-menu-btn:hover span:nth-child(3) {
    width: 80%;
}

/* Mobile menu button animation when menu is open */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: calc(var(--space-section) + 80px) 0 var(--space-section);
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.85), rgba(7, 78, 146, 0.85));
    opacity: 0.8;
    mix-blend-mode: multiply;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
                      radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 25px 25px;
    animation: particleFloat 20s infinite linear;
}

@keyframes particleFloat {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 50px 50px, 25px 25px;
    }
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    transform: scale(1.02);
    transition: transform 10s ease;
}

.hero:hover .hero-background img {
    transform: scale(1.05);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: var(--space-xl) 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: contentGlow 3s infinite alternate;
}

@keyframes contentGlow {
0% {
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 0 rgba(0, 128, 128, 0);
}
100% {
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 128, 128, 0.3);
}
}

.hero-badge {
display: inline-block;
padding: 8px 16px;
background: rgba(255, 255, 255, 0.15);
border-radius: 30px;
font-size: 0.9rem;
font-weight: 600;
margin-bottom: var(--space-md);
letter-spacing: 1px;
text-transform: uppercase;
border: 1px solid rgba(255, 255, 255, 0.2);
backdrop-filter: blur(5px);
position: relative;
overflow: hidden;
}

.hero-badge::before {
content: '';
position: absolute;
top: -10px;
left: -10px;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.3);
border-radius: 50%;
transform: scale(0);
transition: all 0.6s ease;
}

.hero-content:hover .hero-badge::before {
transform: scale(10);
opacity: 0;
    opacity: 0;
}

.hero h1 {
    margin-bottom: var(--space-md);
    font-size: 3.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
    position: relative;
    color: var(--light-teal);
    z-index: 1;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-teal-blue);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    font-weight: 500;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.hero-cta .btn {
    min-width: 200px;
    padding: 16px 32px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50px;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
}

/* Button glow effect */
.hero-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(15px);
    opacity: 0;
    z-index: -2;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(10px) scale(0.95);
}

/* Button hover line effect */
.hero-cta .btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease, width 0.4s ease;
    border-radius: 3px;
}

.hero-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn:hover::before {
    opacity: 0.8;
    transform: translateY(5px) scale(1);
}

.hero-cta .btn:hover::after {
    transform: translateX(-50%) scaleX(1);
    width: 60%;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta .btn-primary:hover {
    background: linear-gradient(135deg, var(--teal) 20%, var(--blue) 80%);
}

.hero-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Button icon animation */
.hero-cta .btn span {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 8px;
    font-size: 1.2em;
    vertical-align: middle;
    line-height: 1;
}

/* Button ripple effect */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
    z-index: -1;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.feature-icon {
    color: var(--light-teal);
    font-weight: bold;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-bottom: 8px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

.scroll-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 255, 0.9));
    padding: var(--space-section) 0;
    overflow: hidden;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    position: relative;
    z-index: 1;
    align-items: stretch;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    min-height: 500px;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* Image Column */
.about-image-column {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 128, 128, 0.2);
    height: 100%;
    display: flex;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    width: 100%;
    display: flex;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.4), rgba(7, 78, 146, 0.4));
    opacity: 0.7;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    mix-blend-mode: multiply;
}

.image-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
}

.about-content-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.text-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: var(--space-md) var(--space-md) var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.text-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-teal-blue);
    transition: height 0.4s ease;
}

.text-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 128, 128, 0.2);
    border-color: rgba(0, 128, 128, 0.3);
}

.text-card:hover::before {
    height: 100%;
}

.card-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.2), rgba(7, 78, 146, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    border: 1px solid rgba(0, 128, 128, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.1);
}

.text-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.3), rgba(7, 78, 146, 0.3));
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.2), 0 0 15px rgba(0, 128, 128, 0.2);
    transform: scale(1.1);
}

.card-content {
    flex: 1;
}

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

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 128, 128, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(7, 78, 146, 0.05) 0%, transparent 50%),
        linear-gradient(45deg, rgba(0, 128, 128, 0.02) 25%, transparent 25%, transparent 50%, 
                       rgba(0, 128, 128, 0.02) 50%, rgba(0, 128, 128, 0.02) 75%, transparent 75%, transparent);
    background-size: 600px 600px, 800px 800px, 100px 100px;
    opacity: 0.7;
}

.bg-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 128, 128, 0.05) 0%, transparent 60%);
    animation: rotateBg 60s linear infinite;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.8), rgba(7, 78, 146, 0.8));
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 128, 128, 0.2);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: #333;
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.section-header h2 .highlight {
    position: relative;
    color: var(--teal);
    z-index: 1;
    font-weight: 700;
}

.section-header h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, rgba(0, 128, 128, 0.3), rgba(7, 78, 146, 0.3));
    z-index: -1;
    border-radius: 4px;
    transform-origin: bottom;
    animation: pulseHighlight 3s infinite alternate;
}

@keyframes pulseHighlight {
    0% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    100% {
        opacity: 0.5;
        transform: scaleY(1.1);
    }
}

/* Removed header line to avoid double underline */

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    align-items: flex-start;
    justify-content: space-between;
    margin-top: var(--space-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-image-container {
    max-width: 1200px;
    margin: var(--space-xl) auto 0;
    padding: 0 var(--space-md);
}

.about-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.text-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    width: 100%;
    animation: cardGlow 3s infinite alternate;
}

@keyframes cardGlow {
    0% {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 0 0 rgba(0, 128, 128, 0);
    }
    100% {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 128, 128, 0.3);
    }
}

.text-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-teal-blue);
    transition: height 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.text-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 3px;
    background: var(--gradient-teal-blue);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.text-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 128, 128, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.text-card:hover::before {
    height: 100%;
}

.text-card:hover::after {
    opacity: 0.7;
    transform: translateX(0);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.2), rgba(7, 78, 146, 0.2));
    border-radius: 50%;
    margin-bottom: var(--space-md);
    color: var(--teal);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.text-card:hover .card-icon::after {
    opacity: 1;
}

.card-icon svg {
    width: 28px;
}

.text-card h3 {
    font-size: 1.3rem;
    margin: 0 0 var(--space-xs) 0;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.text-card p {
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Stats Row */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-sm);
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 128, 128, 0.15);
    border-color: rgba(0, 128, 128, 0.3);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.stat-plus {
    font-size: 1.2rem;
    position: absolute;
    top: 0;
    right: -10px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-divider {
    width: 30px;
    height: 2px;
    background: var(--gradient-teal-blue);
    margin: var(--space-xs) auto;
    position: relative;
    overflow: hidden;
}

.stat-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2s infinite;
}

.stat-card p {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 128, 128, 0.15);
    border-color: rgba(0, 128, 128, 0.3);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.stat-plus {
    font-size: 1.2rem;
    position: absolute;
    top: 0;
    right: -10px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-divider {
    width: 30px;
    height: 2px;
    background: var(--gradient-teal-blue);
    margin: var(--space-xs) auto;
    position: relative;
    overflow: hidden;
}

.stat-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shimmer 2s infinite;
}

.stat-card p {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

/* Products Section */
.products {
    position: relative;
    padding: var(--space-xl) 0;
    overflow: hidden;
    background-color: var(--bg-light);
}

.section-separator {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, var(--teal), var(--blue), var(--teal), transparent);
    opacity: 0.6;
    position: absolute;
    left: 0;
    box-shadow: 0 0 8px rgba(0, 128, 128, 0.3);
}

.section-separator.top {
    top: 0;
}

.section-separator.bottom {
    bottom: 0;
}

/* Products Grid Layout */
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    position: relative;
    z-index: 1;
    align-items: stretch;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    min-height: 500px;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* Image Column */
.products-image-column {
    position: relative;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.products-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(0, 128, 128, 0.2);
    height: 100%;
    display: flex;
    width: 100%;
}

.products-image .image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    width: 100%;
    display: flex;
}

.products-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.products-image:hover .image-frame img {
    transform: scale(1.05);
}

.products-overlay {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.5), rgba(7, 78, 146, 0.5));
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3);
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 128, 128, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 128, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 128, 128, 0);
    }
}

/* Content Column */
.products-content-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.section-intro {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
}

.product-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.product-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-teal-blue);
    transition: height 0.4s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 128, 128, 0.2);
    border-color: rgba(0, 128, 128, 0.3);
}

.product-card:hover::before {
    height: 100%;
}

.product-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.2), rgba(7, 78, 146, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    border: 1px solid rgba(0, 128, 128, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.1);
}

.product-card:hover .product-icon {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.3), rgba(7, 78, 146, 0.3));
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.2), 0 0 15px rgba(0, 128, 128, 0.2);
    transform: scale(1.1);
}

.product-content {
    flex: 1;
}

.product-content h3 {
    margin-bottom: var(--space-xs);
    color: var(--teal);
    font-weight: 600;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.product-content p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.products-cta {
    display: flex;
    justify-content: flex-start;
    margin-top: var(--space-md);
}

.products-glow {
    background: radial-gradient(circle at 30% 50%, rgba(0, 128, 128, 0.4), transparent 70%);
    opacity: 0.6;
    animation: pulse-glow 8s infinite alternate;
}

@keyframes pulse-glow {
    0% {
        opacity: 0.4;
        transform: scale(0.95);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

/* Impact Section */
.impact {
    position: relative;
    padding: var(--space-xl) 0;
    overflow: hidden;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-separator {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 2;
}

.section-separator.top {
    top: 0;
}

.section-separator.bottom {
    bottom: 0;
}

.section-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--teal) 20%, 
        var(--blue) 50%, 
        var(--teal) 80%, 
        transparent 100%);
    box-shadow: 0 0 10px rgba(0, 128, 128, 0.5);
}

.impact-glow {
    background: radial-gradient(circle at 70% 50%, rgba(0, 128, 128, 0.4), transparent 70%);
    opacity: 0.6;
    animation: pulse-glow 8s infinite alternate;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    position: relative;
    z-index: 1;
    align-items: stretch;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    min-height: 600px;
}

@media (max-width: 992px) {
    .impact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.column-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
    color: var(--teal);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-teal-blue);
    border-radius: 3px;
}

.impact-testimonials-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    height: 100%;
    justify-content: space-between;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    height: 100%;
    justify-content: space-between;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    flex: 1;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-teal-blue);
    transition: height 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 128, 128, 0.2);
    border-color: rgba(0, 128, 128, 0.3);
}

.testimonial-card:hover::before {
    height: 100%;
}

.testimonial-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.2), rgba(7, 78, 146, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    border: 1px solid rgba(0, 128, 128, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.1);
}

.testimonial-card:hover .testimonial-icon {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.3), rgba(7, 78, 146, 0.3));
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.2), 0 0 15px rgba(0, 128, 128, 0.2);
    transform: scale(1.1);
}

.testimonial-content {
    flex: 1;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: var(--space-sm);
    position: relative;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.testimonial-author {
    font-weight: 600;
    color: var(--teal);
    font-size: 0.9rem;
}

.impact-stats-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    height: 100%;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    height: 100%;
    justify-content: space-between;
}

.impact-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.impact-stat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-teal-blue);
    transition: width 0.4s ease;
}

.impact-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 128, 128, 0.2);
    border-color: rgba(0, 128, 128, 0.3);
}

.impact-stat:hover::before {
    width: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.stat-numb1er {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teal), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}
.stat-symbol {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: super;
    margin-left: 2px;
}

.stat-divider {
    width: 40px;
    height: 3px;
    background: var(--gradient-teal-blue);
    margin: var(--space-xs) auto;
    border-radius: 3px;
}

.stat-label {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.95rem;
}

/* About Section */
.about {
    position: relative;
    padding: var(--space-xl) 0;
    overflow: hidden;
    background-color: var(--bg-light);
}

/* Quality Section */
.quality {
    position: relative;
    padding: var(--space-xl) 0;
    overflow: hidden;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.quality-glow {
    background: radial-gradient(circle at 30% 70%, rgba(0, 128, 128, 0.4), transparent 70%);
    opacity: 0.6;
    animation: pulse-glow 8s infinite alternate;
}

.quality-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75));
    z-index: 1;
}

.quality-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    filter: saturate(0.8) contrast(1.2);
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    position: relative;
    z-index: 1;
    align-items: stretch;
}

@media (max-width: 992px) {
    .quality-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.quality-text-column {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.quality-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    color: rgba(0, 0, 0, 0.8);
}

.quality-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.quality-feature {
    display: flex;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 128, 128, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quality-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-teal-blue);
    transition: height 0.4s ease;
}

.quality-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 128, 128, 0.2);
    border-color: rgba(0, 128, 128, 0.3);
}

.quality-feature:hover::before {
    height: 100%;
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.2), rgba(7, 78, 146, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    border: 1px solid rgba(0, 128, 128, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quality-feature:hover .feature-icon {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.3), rgba(7, 78, 146, 0.3));
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3), 0 0 15px rgba(0, 128, 128, 0.2);
    transform: scale(1.1);
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--teal);
    font-weight: 600;
}

.feature-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);
}

.quality-badges-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.quality-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    width: 100%;
    justify-content: center;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 128, 128, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 128, 128, 0.2);
    border-color: rgba(0, 128, 128, 0.3);
}

.badge-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-md);
    position: relative;
    transition: all 0.3s ease;
}

.badge-icon::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.2), transparent 70%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.badge:hover .badge-icon::after {
    opacity: 1;
}

.badge-icon img, .badge-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.badge-text {
    font-weight: 600;
    color: var(--teal);
    font-size: 1rem;
}

.quality-card {
    margin-top: var(--space-lg);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 128, 128, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.quality-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 128, 128, 0.2);
    border-color: rgba(0, 128, 128, 0.3);
}

.quality-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.2), rgba(7, 78, 146, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    border: 1px solid rgba(0, 128, 128, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quality-card:hover .quality-card-icon {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.3), rgba(7, 78, 146, 0.3));
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3), 0 0 15px rgba(0, 128, 128, 0.2);
    transform: scale(1.1);
}

.quality-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
}

.quality-statement {
    margin-top: var(--space-lg);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 128, 128, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.quality-statement:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 128, 128, 0.2);
    border-color: rgba(0, 128, 128, 0.3);
}

.quality-statement-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.2), rgba(7, 78, 146, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    border: 1px solid rgba(0, 128, 128, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quality-statement:hover .quality-statement-icon {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.3), rgba(7, 78, 146, 0.3));
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3), 0 0 15px rgba(0, 128, 128, 0.2);
    transform: scale(1.1);
}

.quality-statement p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    text-align: left;
}

/* Contact Section */
.contact {
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 245, 0.8)), url('images/pattern-bg.png');
    background-size: cover;
    background-position: center;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.3), transparent 70%);
    filter: blur(40px);
    opacity: 0.6;
    animation: pulse-glow 8s infinite alternate;
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(7, 78, 146, 0.3), transparent 70%);
    filter: blur(40px);
    opacity: 0.6;
    animation: pulse-glow 10s infinite alternate-reverse;
    z-index: 0;
}

.contact .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: var(--space-xl);
}

.contact .section-header h2 {
    color: var(--text-dark);
}

.contact .section-header h2 .highlight {
    position: relative;
    color: var(--teal);
    z-index: 1;
    font-weight: 700;
}

.contact .section-header h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, rgba(0, 128, 128, 0.3), rgba(7, 78, 146, 0.3));
    z-index: -1;
    border-radius: 4px;
    transform-origin: bottom;
    animation: pulseHighlight 3s infinite alternate;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
    align-items: stretch; /* Make both columns stretch to the same height */
}

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    height: 100%; /* Make it fill the full height */
    justify-content: space-between; /* Distribute items evenly */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 128, 128, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-teal-blue);
    transition: height 0.4s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 128, 128, 0.2);
    border-color: rgba(0, 128, 128, 0.3);
}

.contact-item:hover::before {
    height: 100%;
}

.contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    margin-right: var(--space-md);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.2), rgba(7, 78, 146, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 128, 128, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.3), rgba(7, 78, 146, 0.3));
    box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3), 0 0 15px rgba(0, 128, 128, 0.2);
    transform: scale(1.1);
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
    color: var(--teal);
    font-weight: 600;
}

.contact-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);
}

.contact-form {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 128, 128, 0.2);
    padding: var(--space-lg);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 128, 128, 0.3), transparent 70%);
    filter: blur(30px);
    opacity: 0.5;
    z-index: 0;
}

.contact-form::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(7, 78, 146, 0.3), transparent 70%);
    filter: blur(30px);
    opacity: 0.5;
    z-index: 0;
}

.contact-form form {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: var(--space-md);
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(0, 128, 128, 0.2);
    border-radius: var(--radius-lg);
    font-family: var(--font-base);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) inset;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 15px rgba(0, 128, 128, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 5px rgba(0, 128, 128, 0.5);
}

.contact-form .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: all 0.6s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 128, 128, 0.5);
}

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

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: var(--space-xl) 0 var(--space-md);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0, 128, 128, 0.3);
    box-shadow: 0 -4px 20px rgba(0, 128, 128, 0.15), 0 0 30px rgba(0, 128, 128, 0.05);
    animation: footerGlow 5s infinite alternate;
    z-index: 10;
}

@keyframes footerGlow {
    0% {
        box-shadow: 0 -4px 20px rgba(0, 128, 128, 0.15), 0 0 30px rgba(0, 128, 128, 0.05);
    }
    100% {
        box-shadow: 0 -4px 25px rgba(0, 128, 128, 0.25), 0 0 40px rgba(0, 128, 128, 0.1);
    }
}

.footer-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(0, 128, 128, 0.3) 0%, rgba(0, 128, 128, 0) 70%);
    pointer-events: none;
    opacity: 0.7;
    z-index: -1;
    filter: blur(40px);
}

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

.footer-background .bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(0, 128, 128, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 128, 128, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 2;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo-container {
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.footer-logo h3 {
    margin: 0;
    color: white;
    font-weight: 600;
    background: linear-gradient(135deg, #fff, #40E0D0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.footer-newsletter {
    margin-top: var(--space-lg);
}

.footer-newsletter h4 {
    margin-bottom: var(--space-sm);
    color: white;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: var(--space-xs);
}

.newsletter-input {
    flex: 1;
    padding: 10px 15px;
    border-radius: 50px; /* Match the hero-style-btn border-radius */
    border: 1px solid rgba(0, 128, 128, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition-base);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 15px rgba(0, 128, 128, 0.3);
}

.newsletter-btn {
    padding: 10px 15px;
    white-space: nowrap;
    font-size: 0.9rem;
    background: var(--gradient-teal-blue);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 128, 128, 0.2);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
    background: var(--gradient-blue-teal);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.footer-links-column {
    flex: 1;
    min-width: 150px;
}

.footer-links-column h4 {
    margin-bottom: var(--space-md);
    color: white;
    position: relative;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 1rem;
}

.footer-links-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-teal-blue);
    border-radius: 1px;
    opacity: 0.8;
    box-shadow: 0 0 10px rgba(0, 128, 128, 0.5);
}

.footer-links-column ul {
    margin-top: var(--space-md);
}

.footer-links-column ul li {
    margin-bottom: var(--space-xs);
}

.footer-links-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-base);
    position: relative;
    display: inline-block;
    padding: 3px 0;
    font-size: 0.95rem;
}

.footer-links-column ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-teal-blue);
    transition: var(--transition-base);
    opacity: 0.7;
}

.footer-links-column ul li a:hover {
    color: white;
    transform: translateX(3px);
}

.footer-links-column ul li a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-teal-blue);
    border: none;
    border-radius: 50%;
    transition: var(--transition-base);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 128, 128, 0.2);
    /* Ensure perfect circles */
    aspect-ratio: 1/1;
    text-align: center;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.social-link::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: all 0.6s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
    background: var(--gradient-blue-teal);
    color: white;
}

.social-link:hover::before {
    left: 100%;
}

.footer-bottom {
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: white;
}

.footer-divider {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 128, 128, 0.5);
}

/* Responsive Styles */
@media (max-width: 1023px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 767px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--gradient-teal-blue);
        z-index: 999;
        padding: 120px 30px 30px;
        transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        overflow-y: auto;
    }
    
    /* Responsive Hero Section */
    .hero {
        padding-top: 120px;
        min-height: auto;
    }
    
    .hero-content {
        padding: var(--space-md);
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--space-sm);
        justify-content: center;
    }
    
    .hero-cta .btn,
    .hero-cta .hero-style-btn {
        min-width: 140px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: center;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
    }
    
    .main-nav.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        right: 0;
        animation: fadeInMenu 0.5s ease forwards;
    }
    
    .main-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M50 10C40 10 30 15 30 35C30 55 40 75 50 90C60 75 70 55 70 35C70 15 60 10 50 10Z" fill="rgba(255,255,255,0.05)"/></svg>');
        background-position: center;
        background-size: 400px;
        background-repeat: no-repeat;
        opacity: 0.2;
        z-index: -1;
    }
    
    @keyframes fadeInMenu {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .main-nav ul {
        flex-direction: column;
        background: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        gap: var(--space-md);
        width: 100%;
    }
    
    .main-nav ul::before {
        display: none;
    }
    
    .main-nav a {
        font-size: 1.5rem;
        padding: 20px 0;
        color: white !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        display: block;
        text-align: center;
        margin-bottom: 5px;
        transition: all 0.3s ease;
        transform: translateY(0);
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    
    .main-nav a:hover,
    .main-nav a:active {
        transform: translateY(-5px);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        border-bottom-color: rgba(255, 255, 255, 0.5);
    }
    
    .nav-icon {
        opacity: 1;
        transform: scale(1);
    }
    
    .nav-contact,
    .main-nav .hero-style-btn {
        margin-left: 0;
        margin-top: var(--space-xl);
        background: white !important;
        color: var(--teal) !important;
        border: none;
        padding: 15px 40px !important;
        border-radius: 50px !important;
        font-weight: 700;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transform: scale(1);
        transition: all 0.3s ease;
    }
    
    .nav-contact:hover,
    .main-nav .hero-style-btn:hover {
        transform: scale(1.05) translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        width: 30px;
        height: 20px;
        cursor: pointer;
        padding: 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    section {
        padding: var(--space-xl) 0;
    }
    
    .about-content,
    .impact-content,
    .quality-content,
    .contact-content {
        flex-direction: column;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-item {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-item.visible {
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 128, 128, 0.3);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 0 10px rgba(0, 128, 128, 0.2);
}

.scroll-to-top:hover {
    background: rgba(0, 128, 128, 0.1);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 15px rgba(0, 128, 128, 0.3);
    border-color: var(--teal);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top svg {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-2px);
}

/* About Extended Section Styles */
.about-extended {
    margin-top: var(--space-xl);
    padding: var(--space-lg) 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-extended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.extended-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 128, 128, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.extended-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-teal-blue);
    transition: height 0.4s ease;
}

.extended-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 128, 128, 0.2);
    border-color: rgba(0, 128, 128, 0.3);
}

.extended-card:hover::before {
    height: 100%;
}

.extended-icon {
    margin-bottom: var(--space-md);
    color: var(--teal);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 128, 128, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 128, 128, 0.2);
    margin-left: auto;
    margin-right: auto;
}

.extended-content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.extended-content h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.extended-content p {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

@media (max-width: 992px) {
    .about-extended-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
}