/* CSS Variables for Theme */
:root {
    --primary-color: #2b6777;
    /* Deep Teal */
    --primary-light: #52ab98;
    /* Soft Teal */
    --secondary-color: #c8d8e4;
    /* Light Slate */
    --accent-color: #e6b771;
    /* Warm Gold/Sand for accents */
    --bg-color: #f2f2f2;
    /* Off-white background */
    --surface-color: #ffffff;
    /* Pure white for cards */
    --text-main: #333333;
    /* Dark gray for readability */
    --text-muted: #666666;

    --font-main: 'Outfit', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(43, 103, 119, 0.15);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.highlight {
    color: var(--primary-light);
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--accent-color);
    margin: 1rem 0 2rem;
    border-radius: 2px;
}

.divider.center {
    margin: 1rem auto 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(43, 103, 119, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(82, 171, 152, 0.4);
}

.btn-secondary {
    background-color: var(--surface-color);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.full-width {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.nav-logo {
    max-height: 60px;
    width: auto;
}

.logo-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition);
    position: relative;
}

.nav-links li a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links li a:not(.btn):hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Offset for nav */
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(242, 242, 242, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

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

.hero-image-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-frame {
    width: 80%;
    height: 90%;
    border-radius: 20px 100px 20px 20px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-text {
    color: var(--text-muted);
    font-weight: 500;
    text-align: center;
}

.decorative-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    opacity: 0.1;
    top: -50px;
    right: -50px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    opacity: 0.15;
    bottom: 20px;
    left: 20px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* About Section Refactored */
.about {
    padding: 6rem 0;
    background: var(--surface-color);
}

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-text-main {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-text-main .lead-text {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text-main p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.highlight-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-card h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Re-adding expertise list for evaluation page */
.expertise-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.expertise-list li svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: var(--accent-color);
}

.highlight-card.featured {
    background: var(--primary-color);
    border: none;
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
    z-index: 1;
}

.highlight-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-card.featured h4,
.highlight-card.featured p {
    color: white;
}

.featured-list {
    text-align: left;
    margin-top: 1rem;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    color: white;
}

.featured-list li {
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.featured-list li strong {
    color: var(--accent-color);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, #e8f0f2 100%);
}

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

.service-card {
    background: var(--surface-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    position: relative;
    top: 0;
    border-bottom: 5px solid var(--primary-light);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(82, 171, 152, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    min-height: 60px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Infoproducts Section */
.infoproducts {
    padding: 6rem 0;
    background: var(--bg-color);
}

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

.section-header h2 {
    font-size: 2.5rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    top: 0;
}

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

.product-image-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.product-content {
    padding: 2rem;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(82, 171, 152, 0.1);
    color: var(--primary-light);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.product-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    min-height: 60px;
}

.product-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    min-height: 80px;
}

/* Footer Bottom Logo */
.footer-bottom-logo {
    max-height: 180px;
    width: auto;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 0;
}

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



.footer-info p {
    margin-top: 1rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-bottom {
    background: var(--surface-color);
    text-align: center;
    padding: 3rem 1.5rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.2s;
}

.reveal-delay-1 {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-container,
    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image-placeholder {
        aspect-ratio: 16/9;
    }

    .photo-frame {
        width: 100%;
        height: 100%;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        border-left: none;
        border-top: 5px solid var(--primary-light);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

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

    .hero {
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

/* Scheduling Page Styles */
.scheduling-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.scheduling-card {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 5px solid var(--primary-light);
}

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

.card-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.card-icon.whatsapp-icon {
    color: #25D366;
    /* WhatsApp Green */
}

.scheduling-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.scheduling-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    min-height: 80px;
}