/* =====================================================
   Ecrin Ev Yemekleri - Özel Stiller & Animasyonlar
   ===================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties */
:root {
    --olive: #556B2F;
    --olive-light: #6B8A3E;
    --olive-dark: #3D4F22;
    --orange: #E67E22;
    --orange-light: #F39C12;
    --orange-dark: #D35400;
    --cream: #F9F9F9;
    --anthracite: #2C3E50;
    --anthracite-light: #34495E;
    --white: #FFFFFF;
    --gray-100: #F7F8FA;
    --gray-200: #EDF0F2;
    --gray-300: #D5DBE1;
    --gray-400: #A0AEC0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--anthracite);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
}

/* ===== HEADER / NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(249, 249, 249, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(85, 107, 47, 0.08);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid rgba(85, 107, 47, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

/* Logo Styling */
.logo-circle {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.navbar.scrolled .logo-circle {
    width: 60px;
    height: 60px;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    transform: scale(1.5);
    transition: transform 0.5s ease;
}

.logo-circle:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--orange);
    box-shadow: 0 12px 30px rgba(230, 126, 34, 0.2);
}

.logo-circle:hover img {
    transform: scale(1.1);
}

/* Desktop Navigation Layout */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    color: var(--anthracite);
    transition: color 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 0;
}

.navbar.scrolled .nav-link {
    color: var(--anthracite);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--orange) !important;
}

.nav-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-wrapper i {
    transition: transform 0.3s ease;
}

.nav-dropdown-wrapper:hover i {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 240px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border: 1px solid var(--gray-200);
}

.nav-dropdown-wrapper:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 10px 25px;
    color: var(--anthracite);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-dropdown a:hover {
    background: var(--gray-100);
    color: var(--orange);
    padding-left: 30px;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--anthracite);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--anthracite);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }
    
    .logo-circle {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .nav-links {
        position: fixed;
        top: 80px; /* Reduced from 120px */
        left: 0;
        right: 0;
        bottom: 0;
        flex-direction: column;
        background: var(--white);
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        gap: 0;
        padding: 0;
        margin: 0;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        max-height: calc(100vh - 80px);
    }
    
    .nav-links.open {
        transform: translateX(0);
    }
    
    .nav-link {
        color: var(--anthracite) !important;
        padding: 16px 20px;
        border-bottom: 1px solid var(--gray-200);
        font-size: 1rem;
        display: block;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover {
        background: var(--gray-100);
    }
    
    .nav-dropdown-wrapper {
        width: 100%;
    }
    
    .nav-dropdown-wrapper i {
        margin-left: 6px;
    }
    
    .nav-dropdown {
        position: static;
        background: var(--gray-100);
        max-width: 100%;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: none;
        border: none;
        padding: 0;
        transform: none;
    }
    
    .nav-dropdown-wrapper.active .nav-dropdown {
        opacity: 1;
        visibility: visible;
        max-height: 800px;
        padding: 4px 0;
    }
    
    .nav-dropdown a {
        padding: 8px 15px 8px 30px;
        border-bottom: 1px solid var(--gray-200);
        font-size: 0.85rem;
    }
    
    .nav-dropdown a:hover {
        background: var(--gray-200);
        padding-left: 33px;
    }
    
    .btn-primary.header-cta {
        width: calc(100% - 40px);
        margin: 15px 20px 20px 20px;
    }
    
    .logo-circle {
        width: 65px;
        height: 65px;
    }
    
    .navbar.scrolled .logo-circle {
        width: 55px;
        height: 55px;
    }
}


/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 62, 80, 0.75) 0%,
        rgba(85, 107, 47, 0.55) 50%,
        rgba(44, 62, 80, 0.65) 100%
    );
    z-index: 3;
}

/* ===== HERO CONTENT & CARDS ===== */
.hero-content {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 4;
    width: 90%;
    max-width: 1000px;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 5.5vw, 3.8rem);
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease;
    line-height: 1.1;
    font-weight: 800;
}

.hero-subtext {
    font-size: clamp(0.9rem, 2vw, 1.25rem) !important;
    color: rgba(255,255,255,0.9);
    margin-bottom: 60px !important;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.hero-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.hero-quick-card {
    background: var(--white);
    padding: 24px 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: var(--anthracite);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    min-height: 90px;
    transition: all 0.3s ease;
}

.hero-quick-card:hover {
    transform: translateY(-5px);
    background: var(--cream);
    color: var(--orange);
}

@media (max-width: 768px) {
    .hero-content { top: 50%; }
    .hero-content h1 { font-size: 2.2rem; margin-top: 40px; }
    .hero-cards-container {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }
    .hero-quick-card {
        min-height: 70px;
        padding: 0;
        font-size: 1rem;
    }
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--orange);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px; /* Sm-Md radius in screenshot */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-olive {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--olive);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(85, 107, 47, 0.3);
}

.btn-olive:hover {
    background: var(--olive-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(85, 107, 47, 0.4);
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--anthracite);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--olive), var(--orange));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 20px auto 0;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--olive), var(--orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(85,107,47,0.1), rgba(85,107,47,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--olive);
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    background: var(--olive);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--anthracite);
}

.service-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== BLOG CARDS ===== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--gray-200);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card .card-image {
    height: 220px;
    overflow: hidden;
}

.blog-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .card-image img {
    transform: scale(1.08);
}

.blog-card .card-body {
    padding: 28px;
}

.blog-card .card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.blog-card .card-meta i {
    color: var(--olive);
}

.blog-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--anthracite);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h3 a:hover {
    color: var(--olive);
}

.blog-card .card-text {
    color: var(--gray-400);
    font-size: 0.93rem;
    margin-bottom: 16px;
    line-height: 1.7;
}

.blog-card .read-more {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.blog-card .read-more:hover {
    gap: 10px;
}

/* ===== REGION BADGES ===== */
.region-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-weight: 500;
    color: var(--anthracite);
    transition: all 0.3s ease;
    text-decoration: none;
}

.region-badge:hover {
    background: var(--olive);
    color: var(--white);
    border-color: var(--olive);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(85, 107, 47, 0.25);
}

.region-badge i {
    color: var(--orange);
    transition: color 0.3s;
}

.region-badge:hover i {
    color: var(--white);
}

/* ===== POPUP / MODAL ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

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

.popup-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: scale(0.8) translateY(30px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-height: 85vh;
    overflow-y: auto;
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-header {
    background: linear-gradient(135deg, var(--olive), var(--olive-light));
    padding: 25px 20px;
    text-align: center;
    color: var(--white);
}

.popup-header h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    line-height: 1.2;
}

.popup-header p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.popup-body {
    padding: 20px;
}

.popup-body .form-group {
    margin-bottom: 14px;
}

.popup-body label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--anthracite);
    margin-bottom: 5px;
}

.popup-body input,
.popup-body select,
.popup-body textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--anthracite);
    transition: border-color 0.3s ease;
    outline: none;
    background: var(--gray-100);
    box-sizing: border-box;
}

.popup-body input:focus,
.popup-body select:focus,
.popup-body textarea:focus {
    border-color: var(--olive);
    background: var(--white);
}

.popup-body textarea {
    resize: vertical;
    min-height: 70px;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .popup-content {
        max-width: 100%;
        margin: 0 10px;
        max-height: 92vh;
    }

    .popup-header {
        padding: 15px 12px;
    }

    .popup-header .w-14.h-14 {
        width: 40px !important;
        height: 40px !important;
    }

    .popup-header .w-14.h-14 i {
        width: 20px !important;
        height: 20px !important;
    }

    .popup-header h3 {
        font-size: 1.1rem;
    }

    .popup-header p {
        font-size: 0.8rem;
    }

    .popup-body {
        padding: 12px;
    }

    .popup-body .form-group {
        margin-bottom: 8px;
    }

    .popup-body label {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }

    .popup-body input,
    .popup-body select,
    .popup-body textarea {
        padding: 7px 10px;
        font-size: 16px; /* Prevent zoom on iOS */
    }

    .popup-body textarea {
        min-height: 50px;
    }

    .grid.grid-cols-2 {
        grid-template-columns: 1fr 1fr;
        gap: 8px !important;
    }
}

/* ===== WHATSAPP FLOATING BUTTON (NEW DESIGN) ===== */
.whatsapp-float-new {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--orange);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.whatsapp-float-new:hover {
    transform: translateY(-5px) scale(1.02);
    background: var(--orange-dark);
}

.whatsapp-float-new::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: var(--orange);
    opacity: 0.3;
    z-index: -1;
    animation: whatsappPulseNew 2s infinite;
}

@keyframes whatsappPulseNew {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.3, 1.5); opacity: 0; }
}

@media (max-width: 768px) {
    .whatsapp-float-new {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--anthracite);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 0;
}

.footer h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--orange);
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--orange);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 24px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 0.88rem;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
    margin-right: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
    padding-left: 0;
}

/* ===== GALLERY GRID ===== */
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(44,62,80,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
    background: none;
    border: none;
}

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

/* ===== FORM STYLES (Contact, FAQ) ===== */
.form-modern input,
.form-modern select,
.form-modern textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--anthracite);
    transition: all 0.3s ease;
    outline: none;
    background: var(--white);
}

.form-modern input:focus,
.form-modern select:focus,
.form-modern textarea:focus {
    border-color: var(--olive);
    box-shadow: 0 0 0 4px rgba(85, 107, 47, 0.1);
}

.form-modern label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--anthracite);
    margin-bottom: 8px;
}

/* ===== WHY US SECTION ===== */
.why-card {
    text-align: center;
    padding: 40px 25px;
}

.why-card .icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--olive), var(--olive-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(85, 107, 47, 0.25);
}

.why-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--gray-400);
    font-size: 0.93rem;
}

/* ===== COUNTER SECTION (PREMIUM) ===== */
.counter-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #2C3E50 0%, #1a252f 40%, #2C3E50 60%, #3D4F22 100%);
    overflow: hidden;
}

/* Decorative background elements */
.counter-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.counter-bg-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.counter-bg-circle-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.08) 0%, transparent 70%);
    animation: counterFloat 12s ease-in-out infinite;
}

.counter-bg-circle-2 {
    width: 350px;
    height: 350px;
    bottom: -150px;
    left: -80px;
    background: radial-gradient(circle, rgba(85, 107, 47, 0.1) 0%, transparent 70%);
    animation: counterFloat 10s ease-in-out infinite reverse;
}

.counter-bg-circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    animation: counterFloat 8s ease-in-out infinite;
}

.counter-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

@keyframes counterFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Counter Grid Layout */
.counter-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* Counter Items */
.counter-item {
    text-align: center;
    padding: 30px 40px;
    position: relative;
    flex: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.counter-item:hover {
    transform: translateY(-8px);
}

/* Counter Icon */
.counter-icon-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.2), rgba(85, 107, 47, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.counter-item:hover .counter-icon-bg {
    transform: scale(1.15);
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.35), rgba(85, 107, 47, 0.25));
    border-color: rgba(230, 126, 34, 0.3);
    box-shadow: 0 0 30px rgba(230, 126, 34, 0.15);
}

.counter-icon {
    width: 32px;
    height: 32px;
    color: var(--orange);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(230, 126, 34, 0.3));
}

.counter-item:hover .counter-icon {
    color: var(--orange-light);
    transform: scale(1.1);
}

/* Counter Numbers */
.counter-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.counter-item .number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    background: linear-gradient(135deg, #FFFFFF, rgba(255, 255, 255, 0.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter-suffix {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange);
    margin-left: 2px;
}

/* Counter Label */
.counter-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Counter Progress Bar */
.counter-bar {
    width: 60%;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.counter-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 10px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.4);
}

.counter-item.visible .counter-bar-fill {
    width: var(--bar-width, 50%);
}

/* Counter Divider */
.counter-divider {
    width: 1px;
    height: 100px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 255, 255, 0.15),
        rgba(230, 126, 34, 0.2),
        rgba(255, 255, 255, 0.15),
        transparent
    );
    flex-shrink: 0;
}

/* Counter Section - Responsive */
@media (max-width: 1024px) {
    .counter-section {
        padding: 80px 0;
    }

    .counter-item {
        padding: 25px 20px;
    }

    .counter-item .number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .counter-section {
        padding: 60px 0;
    }

    .counter-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .counter-divider {
        display: none;
    }

    .counter-item {
        padding: 30px 15px;
        position: relative;
    }

    /* Add subtle border between items on mobile */
    .counter-item:not(:last-of-type) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .counter-grid .counter-item:nth-of-type(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }

    .counter-item .number {
        font-size: 2.2rem;
    }

    .counter-icon-wrapper {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .counter-icon {
        width: 26px;
        height: 26px;
    }

    .counter-label {
        font-size: 0.78rem;
    }

    .counter-bar {
        width: 50%;
    }
}

@media (max-width: 400px) {
    .counter-item .number {
        font-size: 1.8rem;
    }

    .counter-suffix {
        font-size: 1rem;
    }

    .counter-label {
        font-size: 0.72rem;
    }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations for children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.6s; }

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* ===== INNER PAGE HERO (BREADCRUMB) ===== */
.inner-hero {
    position: relative;
    padding: 100px 0 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(85, 107, 47, 0.9), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

.inner-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.breadcrumb-new {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.breadcrumb-new a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-new a:hover {
    color: var(--orange);
}

.breadcrumb-new .sep {
    opacity: 0.5;
}

/* Page Specific Hero Backgrounds */
.hero-hizmetler { background-image: url('../images/hero-hizmetler.png'); }
.hero-blog { background-image: url('../images/hero-blog.png'); }
.hero-iletisim { background-image: url('../images/hero-iletisim.png'); }
.hero-hakkimizda { background-image: url('../images/hero-hakkimizda.png'); }
.hero-bolgeler { background-image: url('../images/hero-bolgeler.png'); }
.hero-galeri { background-image: url('../images/hero-galeri.png'); }

/* ===== MODERN CARDS (INTERNAL) ===== */
.service-card-new {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-color: var(--orange-light);
}

.service-card-new .img-box {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    margin-bottom: 25px;
    overflow: hidden;
}

.service-card-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card-new:hover img {
    transform: scale(1.1);
}

/* ===== CONTACT SECTION MODERN ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--white);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(10px);
    background: var(--cream);
}

.contact-info-card .icon-box {
    width: 55px;
    height: 55px;
    background: var(--olive-light);
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-premium {
    background: var(--white);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.05);
}

.form-input-premium {
    width: 100%;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.form-input-premium:focus {
    border-color: var(--orange);
    background: white;
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
    outline: none;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .inner-hero h1 {
        font-size: 2.2rem;
    }
}

/* ===== BLOG CARDS MODERN ===== */
.blog-card-new {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.blog-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.blog-card-new .img-box {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-new .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card-new:hover .img-box img {
    transform: scale(1.08);
}

.blog-card-new .category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.blog-card-new .content-box {
    padding: 30px;
}

.blog-card-new .meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 15px;
}

.blog-card-new h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-card-new h3 a {
    color: var(--anthracite);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-new h3 a:hover {
    color: var(--orange);
}

.blog-card-new .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}

.blog-card-new .read-more i {
    transition: transform 0.3s ease;
}

.blog-card-new:hover .read-more i {
    transform: translateX(5px);
}
@media (max-width: 1024px) {
    .section {
        padding: 70px 0;
    }
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: var(--white);
        padding: 100px 30px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        overflow-y: auto;
        z-index: 999;
    }

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

    .nav-links .nav-link {
        display: block;
        padding: 14px 0;
        font-size: 1.05rem;
        color: var(--anthracite) !important;
        border-bottom: 1px solid var(--gray-200);
        width: 100%;
    }

    .nav-dropdown-wrapper {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0 0 0 15px;
        min-width: auto;
        width: 100%;
    }

    .nav-dropdown a {
        padding: 10px 0;
        border-bottom: 1px solid var(--gray-200);
        font-size: 0.95rem;
    }

    .nav-dropdown a:hover {
        padding-left: 10px;
    }

    .header-cta {
        display: none;
    }

    .hero-slider {
        min-height: 500px;
        height: 85vh;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .popup-content {
        max-width: 95%;
        margin: 10px;
    }

    .popup-header {
        padding: 24px 20px;
    }

    .popup-body {
        padding: 24px 20px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .footer {
        padding: 50px 0 0;
    }

    .logo-circle {
        width: 60px;
        height: 60px;
    }
}

/* Footer Logo Specifics */
.footer-logo-circle {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.footer-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1);
    filter: brightness(0) invert(1);
    transition: all 0.5s ease;
}

.footer-logo-circle:hover {
    background: var(--white);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: var(--orange);
}

.footer-logo-circle:hover img {
    filter: none;
}


@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .btn-primary, .btn-secondary, .btn-olive {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

/* ===== PAGE SPECIFIC ===== */
/* About page */
.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact page */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(85,107,47,0.1), rgba(85,107,47,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--olive);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== QUICK FORM (Homepage) ===== */
.quick-form-section {
    background: linear-gradient(135deg, var(--anthracite), #1a252f);
    position: relative;
    overflow: hidden;
}

.quick-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(85, 107, 47, 0.08));
    transform: rotate(-12deg);
}

.quick-form-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    backdrop-filter: blur(10px);
}

.quick-form-card input,
.quick-form-card select {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.quick-form-card input::placeholder {
    color: rgba(255,255,255,0.5);
}

.quick-form-card input:focus,
.quick-form-card select:focus {
    border-color: var(--orange);
    background: rgba(255,255,255,0.12);
}

.quick-form-card select option {
    background: var(--anthracite);
    color: var(--white);
}

.quick-form-card label {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 0.88rem;
    margin-bottom: 8px;
    display: block;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--olive);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    border: none;
    box-shadow: 0 4px 15px rgba(85, 107, 47, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--olive-dark);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 85px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}
