:root {
    --primary-color: #028580;     /* Dark teal */
    --secondary-color: #1A1C20;   /* Dark gray */
    --accent-color: #E08477;      /* Coral */
    --text-color: #2C3143;        /* Medium gray */
    --light-bg: #F1E9D5;          /* Light beige */
    --white: #FCF6EE;             /* Cream */
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

/* Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    z-index: 1001;
    top: 100%;
    margin-top: 12px;
    padding: 8px 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4px);
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 25%;
    border-width: 8px 8px 0 8px;
    border-style: solid;
    border-color: var(--white) transparent transparent transparent;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 24px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
    background: transparent;
}

.dropdown-content a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    transform: translateX(4px);
}

.dropdown-content a:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.dropdown-content a:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Active state for better visibility */
.dropdown-content a.active {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Adjust dropdown position for mobile */
@media screen and (max-width: 768px) {
    .dropdown-content {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        margin: 0;
        padding: 0;
        border: none;
    }
    
    .dropdown-content a {
        color: var(--white);
        padding: 8px 16px;
        font-weight: 400;
    }
    
    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: none;
    }
    
    .dropdown-content::before {
        display: none;
    }
}

.logo h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

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

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 4.25rem; /* Match the main content padding */
    box-sizing: border-box;
    background: #4B5D77;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(75, 93, 119, 0.8) 0%, rgba(75, 93, 119, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.hero-text {
    padding-top: 3rem;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hero {
        min-height: 90vh;
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .stat-item {
        margin-bottom: 1.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hero-image {
        padding-top: 50%;
    }
}

.hero-text {
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--white) 0%, #E08477 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: #E08477;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2rem;
}

.illustration-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.illustration {
    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 600px;
}

@media screen and (max-width: 1200px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 2rem 1rem;
        min-height: calc(100vh - 70px); /* Adjust for navbar height */
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 800px;
        padding: 2rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-stats {
        display: none;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text p:not(:first-child) {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        margin-top: 2rem;
    }
}
}

@media screen and (max-width: 768px) {
    .hero-stats {
        display: none;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text p:not(:first-child) {
        display: none;
    }
    
    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        margin-top: 2rem;
    }
}

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

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: #028580;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    margin-top: 2rem;
    border: 2px solid #028580;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #028580 0%, #028580 100%);
    z-index: -1;
}

.cta-button:hover {
    background: #E08477;
    color: var(--white);
    border-color: #E08477;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.cta-button span {
    display: inline-block;
    position: relative;
    z-index: 1;
}

/* Sections */
section {
    padding: 8rem 0;
}

section h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

section.contact {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
    z-index: 1;
}

section.about {
    padding: 8rem 0;
    background: #F1E9D5;
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1rem;
}

.about-text h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    opacity: 0.95;
    text-align: justify;
}

.about-text p:first-of-type {
    font-weight: 500;
}

.about-text p:last-of-type {
    margin-bottom: 0;
}

.product-description {
    padding: 6rem 0 6rem;
    background: linear-gradient(135deg, rgba(75, 93, 119, 0.05) 0%, rgba(75, 93, 119, 0.1) 100%);
}

.product-description h2 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5rem;
    display: block;
    width: fit-content;
    margin: 0 auto;
    position: relative;
}

.product-description h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.description-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 6rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .description-grid {
        grid-template-columns: 1fr;
    }
}

.description-item {
    background: transparent;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.description-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 133, 128, 0.1) 0%, rgba(224, 132, 119, 0.1) 100%);
    z-index: 0;
}

.description-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.description-item i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
}

.description-item h3 {
    color: var(--text-color);
    font-size: 1.75rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.description-item p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

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

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-intro {
    max-width: 600px;
    margin: 2rem auto 3rem;
}

.contact-intro p {
    color: var(--text-color);
}

.highlight-phone,
.highlight-email {
    color: var(--accent-color);
    font-weight: bold;
}

.highlight-email {
    text-decoration: none;
}

.highlight-email:hover {
    text-decoration: underline;
}

.contact-intro p {
    width: 100%;
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    height: 40px;
}

.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    height: 120px;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--secondary-color);
}

/* Footer */
footer {
    background: var(--text-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    section {
        padding: 4rem 0;
    }
}
