/* =========================================================================
   Base Variables & Setup
   ========================================================================= */
   :root {
    /* Colors */
    --clr-bg: #030d0a; /* Very deep green/charcoal */
    --clr-bg-alt: #05140f;
    --clr-primary: #00E575; /* Vibrant emerald */
    --clr-primary-hover: #14B86A;
    --clr-text: #F8FAFC;
    --clr-text-muted: #94A3B8;
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(16px);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
    /* Typography */
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.2rem;
    color: var(--clr-text-muted);
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--clr-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.lead {
    font-size: 1.25rem;
    color: var(--clr-text);
    font-weight: 500;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.mt-2 { margin-top: 1rem; }
.w-100 { width: 100%; }

/* =========================================================================
   Glassmorphism Utilities & UI Components
   ========================================================================= */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(0, 229, 117, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 229, 117, 0.1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--clr-primary);
    color: var(--clr-bg);
    box-shadow: 0 4px 15px rgba(0, 229, 117, 0.3);
}

.btn-primary:hover {
    background: var(--clr-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 229, 117, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--clr-primary);
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 229, 117, 0.1);
    color: var(--clr-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 229, 117, 0.2);
}

.badge-outline {
    background: transparent;
    border-color: var(--clr-primary);
}

/* =========================================================================
   Layout & Structure
   ========================================================================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

.section-darker {
    background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-alt) 50%, var(--clr-bg) 100%);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Ambient Background Orbs */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out alternate;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--clr-primary);
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: #008f49; /* Darker green */
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: #0d4a2c;
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* =========================================================================
   Navigation
   ========================================================================= */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.glass-nav.scrolled {
    padding: 1rem 0;
    background: rgba(3, 13, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-text);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--clr-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--clr-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--clr-primary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--clr-text);
    transition: var(--transition);
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 60px;
}

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

.hero-title {
    font-size: 4rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 550px;
    margin-bottom: 2.5rem;
}

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

/* Profile Image Handling */
.image-card {
    padding: 10px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.image-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--clr-primary));
    animation: rotate 6s linear infinite;
    z-index: 0;
}

.image-card::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--clr-bg);
    border-radius: 17px;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
    position: relative;
    z-index: 2;
    aspect-ratio: 4/5;
    object-fit: cover;
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 6rem;
    text-align: center;
}

.trust-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.logos-scroll {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    opacity: 0.7;
}

.trust-logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--clr-text-muted);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =========================================================================
   About Section
   ========================================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: center;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 2rem;
}

.stat h2 {
    font-size: 3rem;
    margin-bottom: 0.2rem;
    color: var(--clr-text);
}

.stat p {
    margin-bottom: 0;
    font-size: 1rem;
}

.stat-highlight h2, .stat-highlight p {
    color: var(--clr-primary);
}

.credentials-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    color: var(--clr-text);
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.credential-item svg {
    color: var(--clr-primary);
    flex-shrink: 0;
}

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

.service-card {
    position: relative;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    transition: var(--transition);
}

.service-card:hover .service-number {
    color: rgba(0, 229, 117, 0.1);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-desc {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

/* =========================================================================
   Impact Section
   ========================================================================= */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.impact-card {
    padding: 2.5rem 2rem;
}

.impact-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.impact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.impact-card strong {
    color: var(--clr-primary);
    font-weight: 600;
}

/* =========================================================================
   Tourism Section
   ========================================================================= */
.section-full-width {
    padding: 4rem 0;
}

.tourism-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.tourism-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.tourism-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.resource-box {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    background: rgba(0, 229, 117, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 117, 0.15);
}

.resource-icon svg {
    color: var(--clr-primary);
}

.resource-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.resource-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* CSS gradient placeholder for the image area if they don't have one */
.tourism-image {
    background: linear-gradient(135deg, rgba(0, 229, 117, 0.2), rgba(0, 0, 0, 0.5)),
                url('tourism_bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
}

/* =========================================================================
   Contact Section
   ========================================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

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

.contact-item {
    padding: 1.5rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item p {
    margin-bottom: 0;
}

.contact-item a {
    color: var(--clr-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--clr-text);
    text-decoration: none;
    font-weight: 600;
}

.social-btn svg {
    color: #0077b5; /* LinkedIn Color inside dark theme */
}

.social-btn:hover {
    border-color: #0077b5;
}

.form-container {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.glass-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--clr-text);
    font-family: var(--font-sans);
    transition: var(--transition);
    outline: none;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--clr-primary);
    box-shadow: 0 0 10px rgba(0, 229, 117, 0.2);
}

textarea.glass-input {
    resize: vertical;
}

/* =========================================================================
   Footer
   ========================================================================= */
.glass-footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: var(--clr-primary);
}

.footer-copy p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =========================================================================
   Animations & Reveals
   ========================================================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* =========================================================================
   Responsive Design
   ========================================================================= */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.2rem; }
    .hero-container { gap: 2rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-stats { flex-direction: row; justify-content: space-around; width: 100%; border-radius: 16px; margin-bottom: 2rem; }
    .tourism-grid { grid-template-columns: 1fr; }
    .tourism-image { min-height: 300px; }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 20, 15, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        border-bottom: 1px solid var(--glass-border);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .hamburger { display: flex; }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { margin: 0 auto 2rem; }
    .image-card { max-width: 400px; margin: 0 auto; }
    
    .trust-indicators { margin-top: 4rem; }
    .logos-scroll { gap: 1.5rem; }
    
    .about-stats { flex-direction: column; padding: 2rem; }
    
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .form-container { padding: 2rem; }
    .tourism-content { padding: 2rem; }
    
    .footer-content { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .section { padding: 4rem 0; }
    .section-title { font-size: 2rem; }
    .btn { width: 100%; }
}
