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

:root {
    --primary-green: #1B4332;
    --primary-green-light: #2D6A4F;
    --accent-orange: #F97316;
    --accent-orange-hover: #EA580C;
    --accent-gold: #F59E0B;
    --text-dark: #111827;
    --text-muted: #4B5563;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --transition: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Abstract Backgrounds & Aesthetics */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.15;
    animation: floatBlob 15s ease-in-out infinite alternate;
}

.shape-1 {
    top: 15%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary-green-light);
}

.shape-2 {
    bottom: 20%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: var(--accent-orange);
    animation-delay: -5s;
}

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

.bg-line-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.abstract-line {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.abstract-line path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dashAnim 8s ease-in-out infinite alternate;
}

@keyframes dashAnim {
    from { stroke-dashoffset: 1000; }
    to { stroke-dashoffset: 0; }
}

.aesthetic-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-gold));
    border-radius: 2px;
}
.aesthetic-line.center-line {
    margin: 0 auto;
}

/* Typography */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-family: 'Outfit', sans-serif;
}

.text-center { text-align: center; justify-content: center; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 4rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.4s var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
    color: white;
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--accent-orange-hover);
    transition: all 0.4s var(--transition);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(249, 115, 22, 0.5);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-contact {
    background-color: var(--primary-green);
    color: white !important;
    padding: 10px 28px !important;
    border-radius: 30px;
}
.btn-contact:hover {
    background-color: var(--primary-green-light) !important;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s var(--transition);
    padding: 24px 0;
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 110px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.logo-text {
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: -0.5px;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-link:not(.btn-contact)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-link:not(.btn-contact):hover {
    color: var(--accent-orange);
}

.nav-link:not(.btn-contact):hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: -15px;
}

.dropdown-icon {
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.4s var(--transition);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--accent-orange);
    padding-left: 30px; /* Aesthetic slide hover */
}

.hamburger {
    display: none;
    font-size: 1.6rem;
    color: var(--primary-green);
    cursor: pointer;
}

/* Slider Section */
.slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05); /* Slight zoom effect start */
    transition: opacity 1.5s ease-in-out, transform 5s ease-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.7), rgba(15, 30, 20, 0.4));
    z-index: 3;
}

.slider-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 4;
    line-height: 0;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 5;
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
    color: white;
}

.slider-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.text-orange {
    color: var(--accent-orange);
}

.slider-content p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

/* General Sections */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about {
    padding-top: 60px; /* Reduced to fix gap with slider */
}

.bg-gradient-light {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    transition: transform 0.8s var(--transition);
}
.about-image:hover img {
    transform: scale(1.05);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-orange);
    border-radius: 20px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-green);
    color: white;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 8px solid white;
    box-shadow: 0 15px 30px rgba(27, 67, 50, 0.2);
    z-index: 3;
    animation: bounceSlow 4s ease-in-out infinite;
}

@keyframes bounceSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.experience-badge .number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin-top: 5px;
    letter-spacing: 1px;
}

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

.feature-line {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.feature-line i {
    color: var(--accent-orange);
    font-size: 1.3rem;
}

/* Vision Mission */
.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.vm-card {
    padding: 60px 50px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.5s var(--transition);
    position: relative;
    overflow: hidden;
}

.vm-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--accent-orange);
    transition: width 0.5s var(--transition);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

.vm-card:hover::after {
    width: 100%;
}

.vm-icon-wrapper {
    width: 90px;
    height: 90px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
    transition: all 0.4s var(--transition);
}

.vm-card:hover .vm-icon-wrapper {
    background: var(--accent-orange);
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.separator-line {
    width: 40px;
    height: 3px;
    background: var(--primary-green-light);
    margin: 20px auto;
    border-radius: 2px;
}

.vm-card h3 {
    font-size: 2rem;
    color: var(--primary-green);
}

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

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

#erik-cesitleri {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

@media (max-width: 768px) {
    #erik-cesitleri {
        grid-template-columns: 1fr;
    }
}

.product-clickable {
    cursor: pointer;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(27, 67, 50, 0.08);
}

.product-img {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.img-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(27, 67, 50, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s var(--transition);
    color: white;
    font-size: 3rem;
    backdrop-filter: blur(3px);
}

.product-card:hover .product-img img {
    transform: scale(1.15);
}

.product-card:hover .img-overlay {
    opacity: 1;
}

.product-info {
    padding: 30px;
    position: relative;
}

.premium-badge {
    position: absolute;
    top: -20px;
    right: 30px;
    background: linear-gradient(135deg, #FFD700, #F59E0B);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info h3 {
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.short-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

.click-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--accent-orange);
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.product-card:hover .click-hint {
    gap: 15px;
}

.product-card.secondary {
    text-align: center;
    padding: 50px 30px;
    background: white;
}

.product-card.secondary .product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-green);
    transition: all 0.4s var(--transition);
}

.product-card.secondary:hover .product-icon {
    background: var(--primary-green);
    color: white;
    transform: rotateY(180deg);
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 1000px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
}

.modal-overlay.show .modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--accent-orange);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.modal-image-col {
    flex: 1 1 50%;
    background: var(--bg-light);
    position: relative;
}

.modal-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
}

.modal-info-col {
    flex: 1 1 50%;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-title {
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.modal-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
}

.modal-contact-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--accent-orange);
}

.modal-contact-box h4 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.modal-contact-box p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.modal-btn {
    display: inline-flex;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 0.95rem;
}

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

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

/* Season Calendar Table */
.season-calendar {
    background-color: var(--bg-white);
}

.table-responsive {
    overflow-x: auto;
    background: #1A1A1A; /* To match screenshot dark aesthetics */
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin: 40px auto 0;
    max-width: 1000px;
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    color: #F8FAFC;
    font-family: 'Outfit', sans-serif;
    text-align: left;
}

.premium-table th {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-table td {
    font-size: 1rem;
    padding: 18px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #D1D5DB;
}

.premium-table tbody tr:last-child td {
    border-bottom: none;
}

.premium-table tbody tr {
    transition: background-color 0.3s ease;
}

.premium-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

/* Countries Section (Minimalist Photo Grid) */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 40px;
    border-top: 1px solid #EEEEEE;
    border-left: 1px solid #EEEEEE;
    background: #FFFFFF;
}

.country-item {
    background: transparent;
    border-right: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
    border-radius: 0;
    padding: 30px 20px 20px;
    text-align: center;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    transition: background-color 0.3s ease;
}

.country-item:hover {
    transform: none;
    box-shadow: none;
    background: #FAFAFA;
    color: inherit;
}

.country-img {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.country-name {
    font-size: 0.95rem;
    font-weight: 400;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

@media (max-width: 1200px) {
    .countries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 900px) {
    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 15px 0;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-banner p {
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Switched to left side for phone */
    z-index: 999;
}

.fab-phone {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(27, 67, 50, 0.4);
    transition: all 0.3s ease;
    animation: fabPulse 2s infinite;
    cursor: pointer;
}

.fab-phone:hover {
    background-color: var(--accent-orange);
    color: white;
    transform: scale(1.1) rotate(10deg);
    animation: none;
}

@keyframes fabPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(27, 67, 50, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(27, 67, 50, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(27, 67, 50, 0);
    }
}

/* Header Contact Button Animation */
.btn-contact {
    background-color: var(--primary-green);
    color: white !important;
    padding: 10px 28px !important;
    border-radius: 30px;
    animation: btnPulse 2s infinite;
    position: relative;
    overflow: visible;
}

.btn-contact:hover {
    background-color: var(--accent-orange) !important;
    animation: none;
}

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

.fw-600 {
    font-weight: 600;
    color: #FFFFFF !important;
}

/* Footer */
.footer {
    background-color: var(--primary-green);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--primary-green-light), var(--accent-orange), var(--accent-gold));
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 2fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.6rem; 
}

.footer-logo img {
    height: 80px; 
    width: auto;
    background: white;
    padding: 5px;
    border-radius: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s var(--transition);
}

.social-links a:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: translateY(-5px);
}

.links-col ul li {
    margin-bottom: 15px;
}

.links-col ul li a {
    display: inline-block;
    position: relative;
}

.links-col ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--accent-orange);
    transition: all 0.3s ease;
}

.links-col ul li a:hover {
    color: var(--accent-orange);
    transform: translateX(20px);
}

.links-col ul li a:hover::before {
    opacity: 1;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.map-overlay-aesthetic {
    position: absolute;
    top: -10px; left: -10px; width: 100%; height: 100%;
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 12px;
    pointer-events: none;
}

.footer-bottom {
    background-color: #0d2419;
    padding: 24px 0;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Responsive */
@media (max-width: 1024px) {
    .about-container, .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .experience-badge {
        bottom: -20px; right: 0;
    }
    
    .slider-content {
        left: 5%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-link {
        display: block;
        padding: 20px 24px;
        font-size: 1.1rem;
    }

    .dropdown {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        background: rgba(0,0,0,0.02) !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none !important; /* Hidden by default */
    }

    .dropdown.open .dropdown-menu {
        display: block !important; /* Shown when toggled via JS */
        padding: 10px 0 !important;
    }

    .dropdown .dropdown-icon {
        float: right;
        margin-top: 5px;
        transition: transform 0.3s ease;
    }

    .dropdown.open .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu li a {
        padding: 12px 24px 12px 40px !important;
        font-size: 1rem !important;
        border-bottom: 1px dashed rgba(0,0,0,0.05) !important;
    }

    .btn-contact {
        background: transparent !important;
        color: var(--primary-green) !important;
    }

    .hamburger {
        display: block;
    }

    .slider-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .modal-image-col {
        height: 300px;
    }
    
    .modal-info-col {
        padding: 40px 30px;
    }
}
