/* 
 * KADIR OZVEY - Professional Corporate Theme
 * Clean, Robust, High-Performance
 */

/* =========================================
   VARIABLES
   ========================================= */
:root {
    --primary: #0F172A;
    /* Slate 900 */
    --primary-light: #1E293B;
    /* Slate 800 */
    --secondary: #C5A065;
    /* Gold */
    --secondary-dark: #A6854F;
    --text-main: #334155;
    /* Slate 700 */
    --text-light: #64748B;
    /* Slate 500 */
    --white: #FFFFFF;
    --light-bg: #F8FAFC;
    /* Slate 50 */
    --border-color: #E2E8F0;
    /* Slate 200 */

    --font-main: 'Inter', sans-serif;

    --header-height: 80px;
    --container-width: 1200px;
    --radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* =========================================
   RESET & BASE
   ========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    padding-top: var(--header-height);
    /* Prevent content hiding behind fixed header */
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header .underline {
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    display: block;
    margin-top: 10px;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--radius);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-dark);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.navbar {
    width: 100%;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 0;
}

.nav-link:hover {
    color: var(--secondary);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
    padding: 10px 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    border-top: 3px solid var(--secondary);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-main);
    font-size: 0.9rem;
}

.dropdown-menu li a:hover {
    background-color: var(--light-bg);
    color: var(--secondary);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin: 5px 0;
    transition: 0.3s;
}

/* Responsive Menu */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        display: none;
        /* JS will toggle this */
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        background: var(--light-bg);
        margin-top: 10px;
    }
}

/* =========================================
   HERO SLIDER
   ========================================= */
.hero-slider {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    background: var(--primary);
    margin-top: -1px;
    /* Gap fix */
    overflow: hidden;
}

.slider-wrapper {
    height: 100%;
}

.slider-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    /* Dark Blue overlay */
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(197, 160, 101, 0.2);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Hero Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   PAGE HERO (Subpages)
   ========================================= */
.page-hero {
    background: var(--primary);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
}

/* =========================================
   SECTIONS & CARDS
   ========================================= */
section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

/* About Section */
.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image {
    width: 100%;
}

/* Services Grid */
.services-section {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-image-bg {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -60px;
    /* Pull up */
    margin-bottom: 20px;
    border: 4px solid var(--white);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Large Project Cards */
.project-card-large {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.project-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 350px;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-features li {
    padding: 5px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--light-bg);
}

/* Consulting/Methods Grid */
.consulting-services-grid,
.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.consulting-service-card,
.method-card,
.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: left;
    border-top: 4px solid var(--secondary);
    margin-bottom: 20px;
}

.service-icon-large,
.method-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    background: var(--primary);
    color: var(--white);
    position: relative;
    padding: 80px 0;
    text-align: center;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
}

.stat-label {
    opacity: 0.8;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    text-align: center;
}

.gallery-grid.desktop-only {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

.gallery-image-wrapper {
    width: 100%;
    height: 100%;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    color: white;
    text-align: left;
}

.gallery-content h3 {
    font-size: 1.25rem;
    margin-bottom: 5px;
    color: white;
}

.gallery-slider-wrapper {
    display: none;
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    position: relative;
    background-color: var(--primary);
    color: white;
}

.vision-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.vision-overlay {
    position: absolute;
    inset: 0;
    background: var(--primary);
    opacity: 0.9;
}

.vision-content {
    position: relative;
    z-index: 2;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.vision-card:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.vision-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.vision-card h4 {
    color: white;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--secondary);
    line-height: 0.5;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--primary);
}

.author-info p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Goals */
.goals-section {
    padding: 100px 0;
    text-align: center;
}

.goals-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.goals-highlight {
    font-weight: 600;
    color: var(--secondary);
    margin-top: 20px;
}

/* Contact Form */
.contact-wrapper {
    display: flex;
    gap: 50px;
}

.contact-info,
.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(197, 160, 101, 0.1);
}

/* Tourism & Extra Grids */
.tourism-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.tourism-gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow);
}

.tourism-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tourism-gallery-item:hover .tourism-gallery-image {
    transform: scale(1.1);
}

.partners-section {
    text-align: center;
    padding: 80px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.partner-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.impact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.impact-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    transition: 0.3s;
    box-shadow: var(--shadow);
}

.impact-item:hover {
    transform: translateY(-5px);
}

/* Footer */
.main-footer {
    background: var(--primary);
    color: #94a3b8;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
    }

    .project-card-large {
        grid-template-columns: 1fr;
    }

    .project-image-wrapper {
        height: 250px;
        min-height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .vision-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid.desktop-only {
        display: none;
    }

    .gallery-slider-wrapper {
        display: block;
        overflow-x: auto;
        padding-bottom: 20px;
    }

    .gallery-slider {
        display: flex;
        gap: 20px;
        min-width: 100%;
    }

    .gallery-slide {
        min-width: 85vw;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .tourism-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   ABOUT PAGE STYLES
   ========================================= */

.about-intro-section {
    padding: 100px 0;
}

.about-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-intro-image img {
    width: 100%;
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.about-intro-image:hover img {
    transform: scale(1.1);
}

.about-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-intro-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 20px;
}

.section-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(197, 160, 101, 0.15);
    color: var(--secondary);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Values Grid */
.values-section {
    background: var(--light-bg);
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--secondary);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(197, 160, 101, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* Journey Timeline */
.journey-section {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    margin-left: 50%;
    padding-left: 40px;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    margin-left: 0;
    padding-left: 0;
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: auto;
    right: -9px;
}

.timeline-dot {
    position: absolute;
    left: -9px;
    top: 0;
    width: 18px;
    height: 18px;
    background: var(--secondary);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(197, 160, 101, 0.2);
}

.timeline-date {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .about-intro-wrapper {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        margin-left: 0;
        padding-left: 50px;
        text-align: left;
    }

    .timeline-item:nth-child(even) {
        margin-left: 0;
        padding-left: 50px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: 11px;
        right: auto;
    }

    .timeline-dot {
        left: 11px;
    }
}

/* =========================================
   ZIG-ZAG FEATURE LAYOUT (Premium)
   ========================================= */
.feature-section {
    padding: 100px 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
}

.feature-image {
    flex: 1;
    position: relative;
}

.feature-image-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 400px;
}

.feature-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-row:hover .feature-image-frame img {
    transform: scale(1.05);
}

.feature-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-light);
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-list-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

@media (max-width: 992px) {

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .feature-image-frame {
        height: 300px;
    }
}

/* =========================================
   INTERACTIVE WORLD MAP
   ========================================= */
.map-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
}

.world-map-svg {
    width: 100%;
    height: 100%;
    fill: #cbd5e1;
    /* Slate 300 */
}

/* Map Pins */
.map-pin {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--secondary);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s;
    box-shadow: 0 0 0 2px rgba(197, 160, 101, 0.3);
}

.map-pin:hover {
    transform: scale(1.2);
    background: var(--primary);
    z-index: 20;
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Tooltips (Project Cards on Map) */
.map-tooltip {
    position: absolute;
    bottom: 25px;
    /* Above the pin */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    width: 250px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    pointer-events: none;
    z-index: 30;
    border-left: 4px solid var(--secondary);
}

.map-pin:hover .map-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.map-tooltip h4 {
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 5px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.map-tooltip p {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 5px;
    line-height: 1.4;
}

.map-tooltip .project-stat {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .map-container {
        overflow-x: scroll;
    }

    .world-map-svg {
        width: 150%;
        /* Zoom in on mobile */
    }
}