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

html,
body {
    max-width: 100vw;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Enhanced smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Preload animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    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);
    }
}

/* Enhanced button hover effects */
.cta-button,
.whatsapp-cta-button,
.whatsapp-button,
.form-submit-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-button:hover,
.whatsapp-cta-button:hover,
.whatsapp-button:hover,
.form-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Ripple effect styles */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

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

/* Enhanced card hover effects */
.category-card,
.value-card,
.mission-vision-card,
.feature-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
}

/* Image hover effects */
.hero-img,
.phone-mockup,
.values-img,
.product-hero-img {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 16px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.notification-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.notification-info {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Color Variables */
:root {
    --primary-green: #22c55e;
    --dark-green: #16a34a;
    --light-green: #dcfce7;
    --blue-highlight: #3b82f6;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: none;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled .navbar {
    padding: 0;
}

.navbar {
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.25rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo {
    width: 100px;
    height: 100px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-container-pill {
    background: var(--primary-green);
    border-radius: 50px;
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.nav-link {
    padding: 0.3rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    color: var(--gray-800);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: var(--light-green);
    min-width: 200px;
    text-align: center;
}

.mobile-nav-link:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    background-image: url('../img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Hero Text */
.hero-text {
    z-index: 2;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--blue-highlight);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.cta-button:hover {
    background: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding-top: 120px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-top: 2rem;
    }

    /* .hero-image {
        order: -1;
    }

    .hero-text {
        order: 1;
    } */

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

    .hero-img {
        max-width: 350px;
    }
}

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

    /* Hide desktop navigation pill on mobile */
    .nav-menu {
        display: none;
    }

    /* Show hamburger menu on mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-content {
        padding-top: 1rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 60px;
        height: 60px;
    }

    .mobile-nav-link {
        font-size: 1.25rem;
        padding: 0.875rem 1.5rem;
        min-width: 180px;
    }

    .hero {
        padding-top: 90px;
    }

    .hero-content {
        padding-top: 0.5rem;
        gap: 2rem;
    }

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

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Ordering Section */
.ordering-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0;
}

.ordering-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0fdf4 100%);
    background-image: url('../img/order-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.ordering-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    z-index: -1;
}

.ordering-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.ordering-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

/* Ordering Text */
.ordering-text {
    z-index: 2;
}

.ordering-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    background: rgba(34, 197, 94, 0.05);
    transform: translateX(5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-icon:hover {
    background: var(--dark-green);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.feature-icon svg {
    transition: all 0.3s ease;
}

.feature-icon:hover svg {
    transform: scale(1.1);
}

.feature-text {
    font-size: 1.125rem;
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
    flex: 1;
}

.feature-item:hover .feature-text {
    color: var(--gray-800);
    font-weight: 600;
}

.whatsapp-cta-button {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.whatsapp-cta-button:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

/* Ordering Image */
.ordering-image {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.phone-mockup {
    width: 100%;
    max-width: 400px;
    height: auto;
    /* border-radius: 20px; */
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: scale(1.05);
}

/* Ordering Section Responsive Design */
@media (max-width: 1024px) {
    .ordering-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    /* .ordering-image {
        order: -1;
    }

    .ordering-text {
        order: 1;
    } */

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

    .phone-mockup {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .ordering-section {
        padding: 3rem 0;
    }

    .ordering-container {
        padding: 0 1rem;
    }

    .ordering-content {
        gap: 2rem;
    }

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

    .features-list {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .feature-item {
        gap: 0.75rem;
        align-items: flex-start;
        padding: 0.75rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .feature-text {
        font-size: 1rem;
        line-height: 1.4;
        flex: 1;
    }

    .whatsapp-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .phone-mockup {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .ordering-section {
        padding: 2rem 0;
    }

    .ordering-content {
        gap: 1.5rem;
    }

    .ordering-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .features-list {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .feature-item {
        gap: 0.75rem;
        align-items: flex-start;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 12px;
        border: 1px solid rgba(34, 197, 94, 0.1);
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .feature-text {
        font-size: 0.9rem;
        line-height: 1.4;
        flex: 1;
    }

    .whatsapp-cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        text-align: center;
    }

    .whatsapp-cta-button span {
        display: block;
        line-height: 1.3;
    }

    .phone-mockup {
        max-width: 220px;
    }
}

/* Partners Section */
.partners-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.partners-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    width: 100%;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex: 0 0 auto;
}

.partner-logo:hover {
    transform: translateY(-5px);
}

.partner-img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s ease;
}

.partner-img:hover {
    filter: grayscale(100%);
}

/* Responsive Design for Partners Section */
@media (max-width: 768px) {
    .partners-section {
        padding: 3rem 0;
    }

    .partners-container {
        padding: 0 1rem;
    }

    .partners-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .partners-logos {
        gap: 2rem;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .partner-img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .partners-logos {
        gap: 1rem;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    .partner-img {
        max-height: 40px;
    }
}

/* Footer Section */
.footer {
    position: relative;
    padding: 4rem 0 2rem;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
    background-image: url('../img/footer-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: -1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.footer-link {
    color: var(--blue-highlight);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.footer-link:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    justify-content: flex-start;
}

.contact-item:hover {
    background: rgba(34, 197, 94, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--blue-highlight);
    flex-shrink: 0;
    margin-top: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item:hover .contact-icon {
    color: var(--primary-green);
    transform: scale(1.1);
}

.contact-text {
    color: var(--blue-highlight);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-text {
    color: var(--primary-green);
    font-weight: 600;
}

/* WhatsApp Button */
.footer-whatsapp {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.whatsapp-button {
    background: var(--light-green);
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
}

.whatsapp-button:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.whatsapp-text {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.whatsapp-button:hover .whatsapp-text {
    color: var(--white);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.whatsapp-button:hover .whatsapp-icon {
    color: var(--white);
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--blue-highlight);
    margin: 2rem 0;
}

/* Footer Copyright */
.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    color: var(--blue-highlight);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav {
        align-items: center;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-contact {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .footer-whatsapp {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .footer-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .footer-content {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-nav {
        gap: 0.75rem;
    }

    .footer-link {
        font-size: 0.9rem;
    }

    .footer-contact {
        gap: 1rem;
    }

    .contact-item {
        gap: 0.75rem;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .contact-icon {
        margin-top: 0;
        flex-shrink: 0;
    }

    .contact-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .whatsapp-button {
        padding: 0.875rem 1.25rem;
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .whatsapp-text {
        font-size: 0.9rem;
    }
}

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

    .footer-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-content {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-link {
        font-size: 0.85rem;
    }

    .contact-item {
        flex-direction: row;
        text-align: left;
        gap: 0.75rem;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .contact-icon {
        margin-top: 0;
        flex-shrink: 0;
    }

    .contact-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .whatsapp-button {
        padding: 0.75rem 1rem;
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .whatsapp-text {
        font-size: 0.85rem;
    }

    .footer-copyright p {
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile - Footer Copyright */
@media (max-width: 380px) {
    .footer-copyright p {
        font-size: 0.7rem;
    }
}

/* Very Small Mobile - Footer Copyright */
@media (max-width: 320px) {
    .footer-copyright p {
        font-size: 0.65rem;
    }
}

/* Ripple Effect Animation */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

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

/* Product Hero Section */
.product-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.product-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    background-image: url('../img/product-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.product-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: -1;
}

.product-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Product Hero Image */
.product-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.product-hero-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-hero-img:hover {
    transform: scale(1.02);
}

/* Product Hero Text */
.product-hero-text {
    z-index: 2;
}

.product-hero-description {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.categories-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--blue-highlight);
    margin-bottom: 1.25rem;
    font-family: 'Inter', sans-serif;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.category-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--gray-200);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.category-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-highlight);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.category-icon i {
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: var(--primary-green);
    transform: scale(1.1);
}

.category-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.category-description {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.4;
    margin: 0;
}

/* Active Navigation Link */
.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Product Hero Responsive Design */
@media (max-width: 1024px) {
    .product-hero {
        padding-top: 120px;
    }

    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-top: 1rem;
    }

    .product-hero-img {
        max-width: 300px;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding-top: 100px;
    }

    .product-hero-container {
        padding: 0 1rem;
    }

    .product-hero-content {
        padding-top: 0.5rem;
        gap: 1.5rem;
    }

    .product-hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .categories-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .category-card {
        padding: 0.875rem;
    }

    .category-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }

    .category-icon i {
        font-size: 1.125rem;
    }

    .category-title {
        font-size: 0.85rem;
    }

    .category-description {
        font-size: 0.75rem;
    }

    .product-hero-img {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding-top: 90px;
    }

    .product-hero-content {
        padding-top: 0.25rem;
        gap: 1rem;
    }

    .product-hero-description {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .categories-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .category-card {
        padding: 0.75rem;
    }

    .category-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.4rem;
    }

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

    .category-title {
        font-size: 0.8rem;
    }

    .category-description {
        font-size: 0.7rem;
    }

    .product-hero-img {
        max-width: 220px;
    }
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-quality-text {
    font-size: 1.125rem;
    color: var(--blue-highlight);
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

.cta-question {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.cta-whatsapp-button {
    background: var(--white);
    border: 2px solid var(--blue-highlight);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    margin-top: 0.5rem;
    justify-content: center;
}

.cta-whatsapp-button:hover {
    background: var(--blue-highlight);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.cta-button-text {
    color: var(--blue-highlight);
    font-weight: 600;
    font-size: 1.125rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.cta-whatsapp-button:hover .cta-button-text {
    color: var(--white);
}

.cta-whatsapp-icon {
    width: 24px;
    height: 24px;
    background: var(--blue-highlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cta-whatsapp-button:hover .cta-whatsapp-icon {
    background: var(--white);
    color: var(--blue-highlight);
}

/* CTA Section Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }

    .cta-container {
        padding: 0 1rem;
    }

    .cta-content {
        gap: 1.25rem;
    }

    .cta-quality-text {
        font-size: 1rem;
    }

    .cta-question {
        font-size: 1.25rem;
    }

    .cta-whatsapp-button {
        padding: 0.875rem 1.2rem;
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .cta-button-text {
        font-size: 0.9rem;
        white-space: nowrap;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 2rem 0;
    }

    .cta-content {
        gap: 1rem;
    }

    .cta-quality-text {
        font-size: 0.9rem;
    }

    .cta-question {
        font-size: 1.125rem;
    }

    .cta-whatsapp-button {
        padding: 0.75rem 1rem;
        flex-direction: row;
        gap: 0.4rem;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .cta-button-text {
        font-size: 0.8rem;
        white-space: nowrap;
        line-height: 1.2;
    }

    .cta-whatsapp-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
}

@media (max-width: 360px) {
    .cta-whatsapp-button {
        padding: 0.7rem 0.8rem;
        gap: 0.3rem;
    }

    .cta-button-text {
        font-size: 0.75rem;
    }

    .cta-whatsapp-icon {
        width: 16px;
        height: 16px;
    }
}

/* About Page Styles */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 4rem;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    background-image: url('../img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: -1;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.about-description {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.5;
    text-align: justify;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding-top: 100px;
        min-height: 60vh;
        padding-bottom: 3rem;
    }

    .about-container {
        padding: 0 1rem;
    }

    .about-section {
        margin-bottom: 3rem;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-description {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding-top: 90px;
        min-height: 50vh;
        padding-bottom: 2rem;
    }

    .about-section {
        margin-bottom: 2.5rem;
    }

    .about-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .about-description {
        font-size: 0.9rem;
    }
}

/* Mission and Vision Section */
.mission-vision-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.mission-vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.mission-vision-card {
    background: var(--white);
    border: 2px solid var(--blue-highlight);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    border-color: var(--primary-green);
}

.mission-vision-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-highlight);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.mission-vision-card:hover .mission-vision-title {
    color: var(--primary-green);
}

.mission-vision-description {
    font-size: 1rem;
    color: var(--blue-highlight);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.mission-vision-card:hover .mission-vision-description {
    color: var(--primary-green);
}

/* Mission and Vision Responsive Design */
@media (max-width: 768px) {
    .mission-vision-section {
        padding: 3rem 0;
    }

    .mission-vision-container {
        padding: 0 1rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-vision-card {
        padding: 2rem 1.5rem;
        min-height: 180px;
    }

    .mission-vision-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .mission-vision-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .mission-vision-section {
        padding: 2rem 0;
    }

    .mission-vision-grid {
        gap: 1.5rem;
    }

    .mission-vision-card {
        padding: 1.5rem 1rem;
        min-height: 160px;
    }

    .mission-vision-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .mission-vision-description {
        font-size: 0.85rem;
    }
}

/* Core Values Section */
.values-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.values-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--light-green) 0%, #f0fdf4 100%);
    background-image: url('../img/product-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.values-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: -1;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

/* Values Image */
.values-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.values-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.values-img:hover {
    transform: scale(1.02);
}

/* Values Text */
.values-text {
    z-index: 2;
}

.values-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue-highlight);
    margin-bottom: 2.5rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.value-card {
    background: var(--white);
    border: 2px solid var(--blue-highlight);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
    border-color: var(--primary-green);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--blue-highlight);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-green);
    transform: scale(1.1);
}

.value-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blue-highlight);
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.value-card:hover .value-title {
    color: var(--primary-green);
}

.value-description {
    font-size: 0.9rem;
    color: var(--blue-highlight);
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.value-card:hover .value-description {
    color: var(--primary-green);
}

/* Core Values Responsive Design */
@media (max-width: 1024px) {
    .values-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .values-img {
        max-width: 350px;
    }

    .values-title {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 3rem 0;
    }

    .values-container {
        padding: 0 1rem;
    }

    .values-content {
        gap: 2rem;
    }

    .values-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .value-card {
        padding: 1.25rem;
        gap: 0.75rem;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .value-title {
        font-size: 1rem;
    }

    .value-description {
        font-size: 0.85rem;
    }

    .values-img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .values-section {
        padding: 2rem 0;
    }

    .values-content {
        gap: 1.5rem;
    }

    .values-title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .values-grid {
        gap: 1rem;
    }

    .value-card {
        padding: 1rem;
        gap: 0.5rem;
    }

    .value-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .value-title {
        font-size: 0.9rem;
    }

    .value-description {
        font-size: 0.8rem;
    }

    .values-img {
        max-width: 250px;
    }
}

/* Contact Page Styles - EXACT DESIGN MATCH */
.contact-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 2rem;
    background: var(--white);
    overflow-x: hidden;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.contact-content {
    background: var(--light-green);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    background-image: url('../img/contact-form-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Contact Information (Left Side) */
.contact-info {
    z-index: 2;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
}

.contact-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--blue-highlight);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue-highlight);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
    /* Remove up/down movement animations */
    transform: none !important;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    justify-content: flex-start;
}

.contact-detail-item:hover {
    background: rgba(34, 197, 94, 0.05);
    transform: translateX(5px);
}

.contact-detail-icon {
    width: 24px;
    height: 24px;
    color: var(--blue-highlight);
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-detail-item:hover .contact-detail-icon {
    color: var(--primary-green);
    transform: scale(1.1);
}

.contact-detail-text {
    color: var(--blue-highlight);
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contact-detail-item:hover .contact-detail-text {
    color: var(--primary-green);
    font-weight: 600;
}

/* Contact Form (Right Side) */
.contact-form-container {
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.form-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-highlight);
    font-family: 'Inter', sans-serif;
}

.form-input,
.form-textarea {
    padding: 1rem;
    border: 2px dashed var(--blue-highlight);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: var(--blue-highlight);
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary-green);
    border-style: solid;
    background: rgba(34, 197, 94, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 150px;
}

.form-submit-button {
    background: var(--blue-highlight);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    margin-top: 1rem;
    align-self: flex-end;
    max-width: 200px;
}

.form-submit-button:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.form-submit-button:active {
    transform: translateY(0);
}

.form-submit-button i {
    transition: transform 0.3s ease;
}

.form-submit-button:hover i {
    transform: translateX(3px);
}

/* Mobile Responsive Design */
@media (max-width: 1023px) {
    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        min-height: auto;
    }

    .contact-info {
        text-align: center;
        padding-right: 0;
        order: 1;
    }

    .contact-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-details {
        align-items: center;
        gap: 1rem;
    }

    .contact-detail-item {
        justify-content: center;
    }

    .contact-detail-icon {
        width: 20px;
        height: 20px;
        font-size: 0.9rem;
    }

    .contact-detail-text {
        font-size: 1rem;
    }

    .contact-form-container {
        order: 2;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .form-group {
        gap: 0.5rem;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .form-textarea {
        min-height: 80px;
        max-height: 120px;
    }

    .form-submit-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        gap: 0.5rem;
        align-self: center;
        max-width: 100%;
        margin-top: 0.5rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .contact-container {
        padding: 0 0.75rem;
    }

    .contact-content {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .contact-subtitle {
        font-size: 0.7rem;
    }

    .contact-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .contact-details {
        gap: 0.75rem;
    }

    .contact-detail-icon {
        width: 18px;
        height: 18px;
        font-size: 0.8rem;
    }

    .contact-detail-text {
        font-size: 0.9rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .form-group {
        gap: 0.4rem;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .form-textarea {
        min-height: 70px;
        max-height: 100px;
    }

    .form-submit-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
        gap: 0.4rem;
    }
}

/* Extra Small Mobile (380px and below) */
@media (max-width: 380px) {
    .contact-container {
        padding: 0 0.5rem;
    }

    .contact-content {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-subtitle {
        font-size: 0.65rem;
    }

    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .contact-details {
        gap: 0.5rem;
    }

    .contact-detail-icon {
        width: 16px;
        height: 16px;
        font-size: 0.75rem;
    }

    .contact-detail-text {
        font-size: 0.8rem;
    }

    .contact-form {
        gap: 0.75rem;
    }

    .form-group {
        gap: 0.3rem;
    }

    .form-label {
        font-size: 0.8rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    .form-textarea {
        min-height: 60px;
        max-height: 80px;
    }

    .form-submit-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left: 4px solid var(--blue-highlight);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    border-left-color: var(--primary-green);
}

.notification-error {
    border-left-color: #ef4444;
}

.notification-content {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-message {
    color: var(--gray-800);
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: var(--gray-600);
    background: var(--gray-100);
}

/* Form Validation Error States */
.form-input.error,
.form-textarea.error {
    border-color: #ef4444;
    border-style: solid;
    background: rgba(239, 68, 68, 0.05);
}

.form-input.error:focus,
.form-textarea.error:focus {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Form Submit Button Disabled State */
.form-submit-button:disabled {
    background: var(--gray-400);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-submit-button:disabled:hover {
    background: var(--gray-400);
    transform: none;
    box-shadow: none;
}

/* Notification Responsive Design */
@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .notification-content {
        padding: 0.875rem 1rem;
    }

    .notification-message {
        font-size: 0.85rem;
    }
}

/* Contact Page Styles - COMPACT & FULLY VISIBLE */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 2rem;
    background: var(--white);
}

.contact-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: center;
    background: var(--light-green);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background-image: url('../img/contact-form-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
    max-height: 80vh;
    overflow: hidden;
}

/* Contact Information (Left Side) */
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 0.25rem;
    padding-left: 3rem;
}

.contact-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue-highlight);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.contact-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--blue-highlight);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-detail-item:hover {
    background: rgba(34, 197, 94, 0.05);
    transform: translateX(5px);
}

.contact-detail-icon {
    width: 20px;
    height: 20px;
    color: var(--blue-highlight);
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-item:hover .contact-detail-icon {
    color: var(--primary-green);
    transform: scale(1.1);
}

.contact-detail-text {
    color: var(--blue-highlight);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contact-detail-item:hover .contact-detail-text {
    color: var(--primary-green);
    font-weight: 600;
}

/* Contact Form (Right Side) */
.contact-form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
    max-width: 90%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-left: 0.5rem;
    max-width: 85%;
}

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

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--blue-highlight);
    font-family: 'Inter', sans-serif;
}

.form-input,
.form-textarea {
    padding: 0.4rem;
    border: 2px dashed var(--blue-highlight);
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: var(--blue-highlight);
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary-green);
    border-style: solid;
    background: rgba(34, 197, 94, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-400);
}

.form-textarea {
    resize: vertical;
    min-height: 40px;
    max-height: 60px;
}

.form-submit-button {
    background: var(--blue-highlight);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    margin-top: 0.15rem;
    align-self: flex-start;
    max-width: 100px;
}

.form-submit-button:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.form-submit-button:active {
    transform: translateY(0);
}

.form-submit-button i {
    transition: transform 0.3s ease;
}

.form-submit-button:hover i {
    transform: translateX(3px);
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
        max-height: none;
        min-height: auto;
    }

    .contact-info {
        padding-right: 0;
        padding-left: 0;
        text-align: center;
        order: 1;
    }

    .contact-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .contact-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }

    .contact-details {
        gap: 0.75rem;
        align-items: center;
    }

    .contact-detail-item {
        justify-content: center;
        gap: 0.5rem;
        padding: 0.4rem;
    }

    .contact-detail-icon {
        width: 18px;
        height: 18px;
        font-size: 0.9rem;
    }

    .contact-detail-text {
        font-size: 0.9rem;
    }

    .contact-form-container {
        order: 2;
        padding-left: 0;
        max-width: 100%;
    }

    .contact-form {
        gap: 0.5rem;
        margin-left: 0;
        max-width: 100%;
    }

    .form-group {
        gap: 0.4rem;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .form-textarea {
        min-height: 50px;
        max-height: 70px;
    }

    .form-submit-button {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        align-self: center;
        max-width: 120px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
        max-height: none;
        min-height: auto;
    }

    .contact-info {
        padding-right: 0;
        padding-left: 0;
        text-align: center;
        order: 1;
    }

    .contact-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .contact-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }

    .contact-details {
        gap: 0.75rem;
        align-items: center;
    }

    .contact-detail-item {
        justify-content: center;
        gap: 0.5rem;
        padding: 0.4rem;
    }

    .contact-detail-icon {
        width: 18px;
        height: 18px;
        font-size: 0.9rem;
    }

    .contact-detail-text {
        font-size: 0.9rem;
    }

    .contact-form-container {
        order: 2;
        padding-left: 0;
        max-width: 100%;
    }

    .contact-form {
        gap: 0.5rem;
        margin-left: 0;
        max-width: 100%;
    }

    .form-group {
        gap: 0.4rem;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.6rem;
        font-size: 0.5rem;
    }

    .form-textarea {
        min-height: 60px;
        max-height: 80px;
    }

    .form-submit-button {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
        align-self: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 100px 0 1rem;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-content {
        padding: 1.25rem;
        gap: 1.25rem;
    }

    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .contact-subtitle {
        font-size: 0.65rem;
        margin-bottom: 0.3rem;
    }

    .contact-details {
        gap: 0.5rem;
        align-items: center;
    }

    .contact-detail-item {
        gap: 0.4rem;
        justify-content: center;
        padding: 0.3rem;
    }

    .contact-detail-icon {
        width: 16px;
        height: 16px;
        font-size: 0.8rem;
    }

    .contact-detail-text {
        font-size: 0.85rem;
    }

    .contact-form {
        gap: 0.4rem;
        margin-left: 0.5rem;
        max-width: 70%;
        width: 70%;
    }

    .form-group {
        gap: 0.25rem;
    }

    .form-label {
        font-size: 0.75rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.4rem;
        font-size: 0.7rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-textarea {
        min-height: 45px;
        max-height: 70px;
    }

    .form-submit-button {
        padding: 0.5rem 2rem;
        font-size: 0.7rem;
        max-width: 100px;
        align-self: flex-start;
        border-radius: 25px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 90px 0 0.5rem;
    }

    .contact-container {
        padding: 0 0.75rem;
    }

    .contact-content {
        padding: 1rem;
        gap: 1rem;
    }

    .contact-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .contact-subtitle {
        font-size: 0.6rem;
        margin-bottom: 0.25rem;
    }

    .contact-details {
        gap: 0.4rem;
    }

    .contact-detail-item {
        gap: 0.3rem;
        justify-content: center;
        padding: 0.25rem;
    }

    .contact-detail-icon {
        width: 14px;
        height: 14px;
        font-size: 0.7rem;
    }

    .contact-detail-text {
        font-size: 0.8rem;
    }

    .contact-form {
        gap: 0.3rem;
        margin-left: 1rem;
        max-width: 60%;
        width: 60%;
    }

    .form-group {
        gap: 0.2rem;
    }

    .form-label {
        font-size: 0.65rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.35rem;
        font-size: 0.65rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-textarea {
        min-height: 40px;
        max-height: 60px;
    }

    .form-submit-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.65rem;
        max-width: 85px;
        align-self: flex-start;
        border-radius: 20px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
    }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
    .contact-form {
        gap: 0.25rem;
        margin-left: 1.5rem;
        max-width: 50%;
        width: 50%;
    }

    .form-group {
        gap: 0.15rem;
    }

    .form-label {
        font-size: 0.6rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.3rem;
        font-size: 0.6rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-textarea {
        min-height: 35px;
        max-height: 50px;
    }

    .form-submit-button {
        padding: 0.35rem 0.7rem;
        font-size: 0.6rem;
        max-width: 75px;
        align-self: flex-start;
        border-radius: 18px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        box-shadow: 0 2px 5px rgba(0, 123, 255, 0.3);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Extra-small phones (<= 380px, e.g., iPhone SE/mini width) */
@media (max-width: 380px) {
    .contact-container {
        padding: 0 0.75rem;
    }

    .contact-content {
        padding: 1rem;
        border-radius: 16px;
    }

    .contact-form {
        max-width: 100%;
        margin-inline: 0;
    }

    .form-input,
    .form-textarea {
        font-size: 0.95rem;
    }

    .form-submit-button {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
}