@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --primary: #004d40;
    --primary-light: #00695c;
    --secondary: #00acc1;
    --accent: #ffd54f;
    --text-main: #1a1a1a;
    --text-muted: #4a4a4a;
    --bg-light: #f8fbfb;
    --bg-white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

section {
    padding: 100px 0;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 77, 64, 0.9), rgba(0, 105, 92, 0.7)), url('assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-stats {
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-align: left;
}

.hero-stats .stat-number {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1;
    color: white;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-stats .stat-text {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.5;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    padding-left: 1.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 100px 0 50px;
}

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Small Hero for Subpages */
.hero-small {
    height: 40vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 77, 64, 0.9), rgba(0, 105, 92, 0.7));
    color: white;
    padding-top: 100px;
}

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

/* Service Detail Section */
.service-section {
    padding: 80px 0;
}

.service-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.service-content:nth-child(even) {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.service-list {
    margin-top: 1.5rem;
}

.service-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Readable Content */
.readable-content {
    max-width: 900px;
    margin: 0 auto;
}

.readable-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.readable-content h3 {
    margin: 2.5rem 0 1rem;
    color: var(--primary);
}

.readable-content p a,
.contact-info a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    transition: var(--transition);
    display: inline;
    padding-bottom: 1px;
}

.readable-content p a:hover,
.contact-info a:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.badge-link {
    display: inline-block;
    padding: 0.5rem 1.8rem 0.5rem 1.2rem;
    background: transparent;
    color: var(--text-main) !important;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none !important;
    border: 2px solid var(--text-main) !important;
    transition: var(--transition);
    margin: 1.5rem 0 0.5rem 0;
}

.badge-link:hover {
    background: var(--primary);
    color: white !important;
    border-color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 77, 64, 0.2);
}

.btn-text {
    display: inline-block;
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-main);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: var(--transition);
}

.btn-text:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.readable-content h4 {
    margin: 1.5rem 0 0.5rem;
    color: var(--primary-light);
}

.link-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 1.5rem 0 2.5rem;
    align-items: flex-start;
}

.link-list a {
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    display: inline-flex;
    align-items: center;
    word-break: break-all;
    transition: color 0.3s ease;
}

.link-list a::before {
    content: '→';
    margin-right: 8px;
    color: var(--primary);
    font-weight: 700;
    transition: transform 0.3s ease;
}

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

.link-list a:hover {
    color: var(--primary);
}

.link-list a:hover::before {
    transform: translateX(4px);
}

.link-list a:hover::after {
    width: 100%;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 2rem;
    }

    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: rgba(0, 77, 64, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        gap: 1.5rem;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 0.5rem 2rem;
        font-size: 1.2rem;
        color: white;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background-color: white;
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background-color: white;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-small {
        height: auto;
        padding-top: 130px;
        padding-bottom: 50px;
    }
    
    .hero-stats {
        margin-top: 3rem;
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .hero-stats .stat-number {
        font-size: 3.5rem;
    }
    
    .hero-stats .stat-text {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.4);
        padding-left: 0;
        padding-top: 0.8rem;
    }
}

/* Clean About Page Styles */
.leader-row {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.leader-image-col {
    flex-shrink: 0;
    width: 130px;
}

.standard-portrait {
    width: 100%;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.leader-text-col {
    flex-grow: 1;
}

.leader-text-col h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.leader-text-col .title {
    display: block;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.standard-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3rem auto;
}

.contact-box {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-box h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.3rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.8rem;
}

.contact-box p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-box p strong {
    color: var(--text-main);
}

.contact-box a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.contact-box a:hover {
    color: var(--primary);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .leader-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Helper Classes */
.bg-white {
    background-color: var(--bg-white) !important;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--secondary);
}