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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fefefe;
    color: #1a2e2a;
    overflow-x: hidden;
}

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

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

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

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

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.fade-up { animation: fadeInUp 0.8s ease-out; }
.slide-left { animation: slideInLeft 0.8s ease-out; }
.slide-right { animation: slideInRight 0.8s ease-out; }

.menu-toggle {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 1001;
    background: linear-gradient(135deg, #1d6f5c, #0f5545);
    width: 52px;
    height: 52px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    border: none;
    color: white;
    font-size: 26px;
}

.menu-toggle:hover { transform: scale(1.05); box-shadow: 0 12px 28px rgba(29,111,92,0.3); }

.sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(145deg, #0a2f2a 0%, #1a4d41 100%);
    z-index: 1002;
    transition: left 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 5px 0 25px rgba(0,0,0,0.2);
    padding: 2rem 1.5rem;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar.open { left: 0; }

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.overlay.active { opacity: 1; visibility: visible; }

.sidebar-logo h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.9rem;
    border-bottom: 2px solid #8fcbc0;
    display: inline-block;
    padding-bottom: 5px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.sidebar-nav a {
    color: #f0f7f4;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-nav a i { width: 28px; font-size: 1.2rem; }
.sidebar-nav a:hover, .sidebar-nav a.active { color: #ffd966; transform: translateX(8px); }

.close-sidebar {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: transform 0.2s;
}

.close-sidebar:hover { transform: rotate(90deg); }

.navbar-main {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    padding: 1rem 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    position: sticky;
    top: 0;
    z-index: 99;
}

.logo-text { margin-right: auto; }
.logo-text h1 { font-size: 1.8rem; color: #1d6f5c; font-family: 'Playfair Display', Georgia, serif; }
.logo-text span { font-size: 0.75rem; font-weight: 500; letter-spacing: 1px; color: #5f7f6e; }

.quote-btn {
    text-decoration: none;
    background: linear-gradient(135deg, #1d6f5c, #0f5545);
    color: white;
    padding: 8px 24px;
    border-radius: 40px;
    transition: all 0.3s;
    font-weight: 500;
}

.quote-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(29,111,92,0.3); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eefaf6 0%, #ffffff 100%);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(29,111,92,0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.hero-content { flex: 1; }

.dynamic-welcome {
    background: linear-gradient(135deg, #daf4ef, #c5e8e0);
    display: inline-block;
    padding: 0.3rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1d6f5c;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 3.3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0a2f2a;
}

.typed-text { color: #2a9d8f; }
.cursor { animation: blink 1s infinite; font-weight: bold; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0;} }

.hero-image { flex: 1; text-align: center; }
.hero-image img {
    max-width: 100%;
    border-radius: 40px;
    box-shadow: 0 30px 40px -20px rgba(0,0,0,0.2);
    transition: transform 0.4s;
}
.hero-image img:hover { transform: scale(1.02); }

.btn-group {
    margin: 2rem 0 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #1d6f5c, #0f5545);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(29,111,92,0.3); }

.btn-outline {
    border: 2px solid #1d6f5c;
    background: transparent;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: #1d6f5c;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-outline:hover { background: #1d6f5c; color: white; transform: translateY(-2px); }

.section-badge {
    background: linear-gradient(135deg, #e9ecef, #dee4e1);
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1d6f5c;
}

/* Section Cards */
.services-grid, .blog-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card, .blog-card, .gallery-item {
    background: white;
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border: 1px solid #eef7f3;
    overflow: hidden;
}

.service-card:hover, .blog-card:hover, .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(29,111,92,0.1);
}

.service-card i, .blog-card i { font-size: 2.8rem; color: #1d6f5c; margin-bottom: 1rem; display: inline-block; }
.service-card h3, .blog-card h3 { margin-bottom: 0.8rem; font-size: 1.4rem; }

.service-card img, .blog-card img, .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.video-container iframe, .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.testimonials {
    background: linear-gradient(135deg, #f8fdfb, #f0f8f4);
    padding: 5rem 0;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 32px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.testimonial-card:hover { transform: translateY(-5px); }
.testimonial-card i.fa-quote-left { color: #ffb347; font-size: 1.8rem; margin-bottom: 1rem; }
.testimonial-card i.fa-star { color: #ffb83b; }

.ad-banner {
    background: linear-gradient(135deg, #0f4e40, #1d6f5c);
    border-radius: 48px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin: 3rem 0;
}

.contact-section {
    background: linear-gradient(135deg, #1e2f2a, #15312b);
    border-radius: 48px;
    padding: 2.5rem;
    color: white;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.contact-info-item i { font-size: 1.5rem; width: 45px; color: #8fcbc0; }

.page-header {
    background: linear-gradient(135deg, #eef7f3, #e3f0ea);
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-header h1 { font-size: 3rem; color: #1d6f5c; font-family: 'Playfair Display', Georgia, serif; }

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    z-index: 99;
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover { transform: scale(1.1); background: #20b859; }

.live-chat {
    position: fixed;
    bottom: 28px;
    left: 28px;
    background: linear-gradient(135deg, #1d6f5c, #0f5545);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    cursor: pointer;
    z-index: 99;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

.live-chat:hover { transform: scale(1.05); }

.chat-popup {
    position: fixed;
    bottom: 95px;
    left: 30px;
    background: white;
    width: 280px;
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    display: none;
    z-index: 100;
    animation: fadeInUp 0.3s ease;
}

footer {
    background: #0a1f1b;
    color: #cbdcd6;
    padding: 2.5rem 0;
    text-align: center;
}

@media (max-width: 800px) {
    .hero-content h1 { font-size: 2.3rem; }
    .container { padding: 0 20px; }
    .menu-toggle { top: 16px; left: 16px; width: 46px; height: 46px; font-size: 22px; }
    .page-header h1 { font-size: 2rem; }
}
