/* 
   MNZ BAŞARAN YAPI - PRESTIGE THEME
   Modern, Responsive, Luxury Design - REVISED
*/

:root {
    /* Renk Paleti */
    --primary-color: #1a1a1a;       /* Koyu Antrasit / Siyah */
    --secondary-color: #c5a059;     /* Lüks Altın */
    --secondary-hover: #d4af37;     /* Parlak Altın */
    --whatsapp-green: #25D366;      /* WhatsApp Yeşili */
    --text-dark: #111111;
    --text-light: #f4f4f4;
    --text-gray: #666666;
    --bg-light: #ffffff;
    --bg-off-white: #f9f9f9;
    --border-color: #e0e0e0;
    
    /* Tipografi */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Efektler */
    --shadow-sm: 0 5px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Reset & Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-gold { color: var(--secondary-color); }
.text-white { color: var(--text-light); }
.text-center { text-align: center; }

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-light);
    border-color: var(--secondary-color);
}

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

.btn-outline {
    border-color: var(--text-light);
    color: var(--text-light);
    background: transparent;
}

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

.btn-gold {
    background-color: var(--secondary-color);
    color: white;
    border: 1px solid var(--secondary-color);
}

.btn-gold:hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
}

.btn-block {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    position: relative;
    overflow: hidden;
}

.logo img {
    height: 60px;
    width: auto;
    position: relative;
    z-index: 2;
}

.logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    animation: logoShine 4s infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes logoShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

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

.nav-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

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

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

.hamburger {
    display: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1002;
}

/* Sol Sosyal Medya Barı */
.side-social-bar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 9998;
    background: rgba(26, 26, 26, 0.85);
    border-radius: 0 10px 10px 0;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: none;
    padding: 10px 5px;
    gap: 10px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
}

.side-social-item {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
}

/* Marka Renkleri */
.side-social-item.instagram { color: #E1306C; }
.side-social-item.facebook { color: #1877F2; }
.side-social-item.whatsapp { color: #25D366; }
.side-social-item.phone { color: var(--secondary-color); }

.side-social-item:hover {
    color: white;
    transform: translateX(5px);
}

.side-social-item.instagram:hover { background: #E1306C; }
.side-social-item.facebook:hover { background: #1877F2; }
.side-social-item.whatsapp:hover { background: #25D366; }
.side-social-item.phone:hover { background: var(--secondary-color); }

/* Language Dropdown in Header */
.lang-dropdown {
    position: relative;
    margin-left: 2rem;
}

.lang-dropdown-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.lang-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.lang-dropdown-toggle .fi {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 5px;
    min-width: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 1001;
}

.lang-dropdown-menu.active {
    display: flex;
}

.lang-dropdown-item {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.lang-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.15);
}

.lang-dropdown-item.active {
    background: rgba(197, 160, 89, 0.2);
    border: 2px solid var(--secondary-color);
}

.lang-dropdown-item .fi {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Slide Overlay */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    color: var(--text-light);
    margin-top: 60px;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.1;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Slider Nav */
.slider-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--text-light);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

/* About Section Modernized */
.about-section {
    padding-bottom: 8rem;
    background-color: var(--bg-light);
    position: relative;
}

.about-header {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85), rgba(0, 0, 0, 0.75)), url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Paralaks etkisi */
    padding: 8rem 0;
    text-align: center;
    color: white;
    margin-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(197, 160, 89, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(197, 160, 89, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-header .container {
    position: relative;
    z-index: 1;
}

.about-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 30px 30px 0;
    border-style: solid;
    border-color: rgba(0,0,0,0.7) transparent transparent transparent; /* Ok işareti */
}

.about-main-title {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 5px;
    text-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
    font-weight: 700;
    position: relative;
}

.about-main-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
    letter-spacing: 2px;
    max-width: 800px;
    margin: 0 auto;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.company-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1rem;
    border-left: 5px solid var(--secondary-color);
    line-height: 1.2;
}

.divider-gold {
    display: none; /* Border-left kullandığımız için gizledik */
}

.about-desc {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Resim Efekti */
.about-image {
    position: relative;
    z-index: 1;
    padding: 1rem;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 4px;
    z-index: 1;
    transition: var(--transition);
}

.about-image:hover::before {
    top: 20px;
    right: 20px;
}

/* Stats Modern */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.stat-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 0 0 1px rgba(197, 160, 89, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.3), 0 0 0 3px var(--secondary-color);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.stat-item i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-item:hover i {
    transform: scale(1.15) rotate(5deg);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #2d2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Mission & Vision Modern */
.mission-vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 0 0 1px rgba(197, 160, 89, 0.1);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.mv-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.mv-item:hover::before {
    opacity: 1;
}

.mv-item:hover {
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.3), 0 0 0 3px var(--secondary-color);
    transform: translateY(-10px) scale(1.02);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(212, 165, 116, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.8rem;
    flex-shrink: 0;
    border: 3px solid rgba(197, 160, 89, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.mv-item:hover .mv-icon {
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    color: white;
    transform: scale(1.15) rotate(5deg);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.mv-content {
    position: relative;
    z-index: 1;
}

.mv-content h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #2d2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    transition: all 0.3s ease;
}

.mv-item:hover .mv-content h4 {
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mv-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Section Modernized */
.services-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(197, 160, 89, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(197, 160, 89, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.services-section .section-header {
    position: relative;
    z-index: 2;
}

.services-section .section-subtitle {
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.services-section h2 {
    background: linear-gradient(135deg, var(--primary-color), #2d2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.divider-center {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 1rem auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 0 0 1px rgba(197, 160, 89, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.card-bg-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: -1;
    transition: var(--transition);
    transform: rotate(-15deg);
}

.card-bg-icon i {
    font-size: 10rem;
    color: rgba(0,0,0,0.05); 
}

.service-card:hover .card-bg-icon {
    transform: rotate(0deg) scale(1.1);
}

.service-card:hover .card-bg-icon i {
    color: rgba(197, 160, 89, 0.1);
}


.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(197, 160, 89, 0.25), 0 0 0 2px var(--secondary-color);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(212, 165, 116, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.2);
    position: relative;
    border: 3px solid rgba(197, 160, 89, 0.2);
    z-index: 2;
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(212, 165, 116, 0.15));
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(32, 186, 90, 0.15));
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.2);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, rgba(24, 119, 242, 0.2), rgba(18, 102, 241, 0.15));
    color: #1877F2;
    border-color: rgba(24, 119, 242, 0.2);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.2);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.2), rgba(225, 48, 108, 0.15));
    color: #E4405F;
    border-color: rgba(228, 64, 95, 0.2);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.2);
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--secondary-color);
    opacity: 0;
    transition: var(--transition);
    animation: spin 10s linear infinite;
}

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

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(197, 160, 89, 0.4);
}

.service-card:nth-child(1):hover .service-icon {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.service-card:nth-child(2):hover .service-icon {
    background: #25D366;
    color: white;
    border-color: #25D366;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.service-card:nth-child(3):hover .service-icon {
    background: #1877F2;
    color: white;
    border-color: #1877F2;
    box-shadow: 0 12px 35px rgba(24, 119, 242, 0.4);
}

.service-card:nth-child(4):hover .service-icon {
    background: #E4405F;
    color: white;
    border-color: #E4405F;
    box-shadow: 0 12px 35px rgba(228, 64, 95, 0.4);
}

.service-card:hover .service-icon::after {
    opacity: 0.5;
    width: 120%;
    height: 120%;
    border-color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-card:hover h3 {
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(197, 160, 89, 0.1);
}

.service-link:hover {
    gap: 12px;
    color: white;
    background: var(--secondary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

/* Projects Section (Modernized) */
.projects-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(197, 160, 89, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(197, 160, 89, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.projects-section .container {
    position: relative;
    z-index: 1;
}

.projects-section .section-header {
    position: relative;
    z-index: 2;
}

.projects-section .section-subtitle {
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.projects-section h2 {
    background: linear-gradient(135deg, var(--primary-color), #2d2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.project-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid rgba(197, 160, 89, 0.3);
    color: var(--text-gray);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    border-radius: 30px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 0 0 1px rgba(197, 160, 89, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(197, 160, 89, 0.25), 0 0 0 2px var(--secondary-color);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

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

.project-card:hover .card-image img {
    transform: scale(1.1);
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    border-radius: 20px;
    z-index: 5;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.status-badge.ongoing {
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    border-color: rgba(197, 160, 89, 0.5);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.status-badge.completed {
    background: linear-gradient(135deg, #25D366, #20ba5a);
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.project-card:hover .status-badge {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(197, 160, 89, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    cursor: pointer;
    z-index: 4;
    backdrop-filter: blur(2px);
}

.project-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay i {
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.project-card:hover .card-overlay i {
    transform: scale(1.2);
}

.card-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.project-card:hover .card-info h3 {
    color: var(--secondary-color);
}

.card-info .location {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.project-card:hover .card-info .location {
    color: var(--primary-color);
}

.card-info .location i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.project-card:hover .card-info .location i {
    transform: scale(1.2);
}

.card-info .btn-outline {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.card-info .btn-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--secondary-color);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.card-info .btn-outline:hover {
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

.card-info .btn-outline:hover::before {
    width: 300px;
    height: 300px;
}


/* Contact Section Modernized - Revised Layout */
.contact-section {
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(197, 160, 89, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(197, 160, 89, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-section .container {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.contact-section .section-header {
    position: relative;
    z-index: 2;
}

.contact-section .section-subtitle {
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.contact-section h2 {
    background: linear-gradient(135deg, var(--primary-color), #2d2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
    align-items: stretch; /* İletişim kutusu ile haritanın yüksekliğini eşitler */
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(197, 160, 89, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.4), 0 0 0 1px var(--secondary-color);
    border-color: var(--secondary-color);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(197, 160, 89, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23c5a059" fill-opacity="0.08"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 1;
    z-index: 0;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.info-header {
    position: relative;
    z-index: 2;
    margin-bottom: 2.5rem;
}

.contact-card-title {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    line-height: 1.3;
}

.contact-card-desc {
    opacity: 0.85;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.info-item-modern {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.info-item-modern:last-child {
    margin-bottom: 0;
}

.info-item-modern:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.3), rgba(212, 165, 116, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(197, 160, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--secondary-color);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.info-item-modern:nth-child(1) .icon-box {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.3), rgba(212, 165, 116, 0.2));
}

.info-item-modern:nth-child(2) .icon-box {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.3), rgba(32, 186, 90, 0.2));
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.3);
}

.info-item-modern:nth-child(3) .icon-box {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.3), rgba(225, 48, 108, 0.2));
    color: #E4405F;
    border-color: rgba(228, 64, 95, 0.3);
}

.info-item-modern:hover .icon-box {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.15) rotate(5deg);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.info-item-modern:nth-child(2):hover .icon-box {
    background: #25D366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.info-item-modern:nth-child(3):hover .icon-box {
    background: #E4405F;
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

.info-item-modern:hover .icon-box::before {
    width: 100%;
    height: 100%;
}

.info-content .label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-item-modern:hover .info-content .label {
    color: rgba(255, 255, 255, 0.9);
}

.info-content .value {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    transition: color 0.3s ease;
    line-height: 1.5;
    display: block;
}

.info-item-modern:hover .info-content .value {
    color: var(--secondary-color);
}

.contact-social {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.social-btn i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.05);
    border-width: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-btn:hover::before {
    width: 300px;
    height: 300px;
}

.social-btn.whatsapp {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.3);
}

.social-btn.whatsapp:hover { 
    background: #25D366; 
    color: white; 
    border-color: #25D366;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.social-btn.instagram {
    background: rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.3);
}

.social-btn.instagram:hover { 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white; 
    border-color: #E1306C;
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}

.social-btn.facebook {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.3);
}

.social-btn.facebook:hover { 
    background: #1877F2; 
    color: white; 
    border-color: #1877F2;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.4);
}

/* Map Card Modern */
.map-card-modern {
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 1px rgba(197, 160, 89, 0.2);
    border: 3px solid var(--secondary-color);
    position: relative;
    transition: all 0.4s ease;
}

.map-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.3), 0 0 0 2px var(--secondary-color);
    border-color: var(--secondary-color);
}

.map-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), transparent);
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

.map-card-modern iframe {
    filter: grayscale(30%) brightness(0.95);
    transition: all 0.5s ease;
    display: block;
    position: relative;
    z-index: 0;
    border-radius: 17px;
}

.map-card-modern:hover iframe {
    filter: grayscale(0%) brightness(1.05);
    transform: scale(1.02);
}

/* Map Full Width (Yedek) */
.map-full-width {
    width: 100%;
    height: 450px;
    position: relative;
    filter: grayscale(100%); 
    transition: filter 0.5s;
}

.map-full-width:hover {
    filter: grayscale(0%);
}

.map-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, var(--bg-light), transparent);
    pointer-events: none;
}

/* Modern Form */
.modern-form {
    background: white;
    padding: 3.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--secondary-color);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 0.5rem;
    border: none;
    border-bottom: 2px solid #eee;
    background: transparent;
    font-size: 1rem;
    transition: var(--transition);
    font-family: var(--font-body);
    border-radius: 0;
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
}

.input-group label {
    position: absolute;
    top: 1rem;
    left: 0.5rem;
    color: #999;
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition);
}

.input-group input:focus,
.input-group input:not(:placeholder-shown),
.input-group textarea:focus,
.input-group textarea:not(:placeholder-shown) {
    border-bottom-color: var(--secondary-color);
    outline: none;
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 0;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

/* Footer - Kurumsal Tasarım */
.footer {
    background: #000000;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23c5a059" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    color: #ffffff;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 4rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-desc {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Facebook */
.footer-social-icon[href*="facebook"] {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.3);
}

.footer-social-icon[href*="facebook"]:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

/* Instagram */
.footer-social-icon[href*="instagram"] {
    background: rgba(228, 64, 95, 0.2);
    border-color: rgba(228, 64, 95, 0.3);
}

.footer-social-icon[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #E4405F;
    box-shadow: 0 5px 15px rgba(228, 64, 95, 0.4);
}

/* WhatsApp */
.footer-social-icon[href*="whatsapp"] {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.3);
}

.footer-social-icon[href*="whatsapp"]:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* YouTube */
.footer-social-icon[href*="youtube"] {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.footer-social-icon[href*="youtube"]:hover {
    background: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.8rem;
}

.footer-links-list a {
    color: #ffffff;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    padding-left: 0;
    opacity: 0.9;
}

.footer-links-list a::before {
    content: '→';
    margin-right: 8px;
    opacity: 0;
    transition: var(--transition);
    color: var(--secondary-color);
}

.footer-links-list a:hover {
    color: var(--secondary-color);
    padding-left: 15px;
}

.footer-links-list a:hover::before {
    opacity: 1;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-contact-list li i {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-list li a {
    color: #ffffff;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-contact-list li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: #ffffff;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-credit {
    font-size: 0.85rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-credit span {
    color: rgba(255, 255, 255, 0.6);
}

.footer-credit a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-credit a:hover {
    color: #d4a574;
    transform: translateY(-2px);
}

.footer-credit a:hover::after {
    width: 100%;
}

/* WhatsApp Button */
.sticky-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.sticky-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    z-index: 10002;
    transition: var(--transition);
}

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

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

@media (max-width: 768px) {
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        padding: 0.5rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 1rem; right: 1rem; font-size: 2rem; }
}

/* Virtual Tour (VT) Page */
.vt-section {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px;
    position: relative;
}

.vt-content {
    max-width: 800px;
    padding: 3rem 2rem;
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
}

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

.vt-icon {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
    display: inline-block;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.vt-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.vt-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.vt-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.vt-section .btn {
    margin-top: 1rem;
}

/* Project Detail Styles */
.project-header {
    height: 60vh;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.project-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
}

.project-title-area {
    position: relative;
    z-index: 2;
    padding-bottom: 4rem;
    width: 100%;
    color: var(--text-light);
}

.project-details-content {
    padding: 6rem 0;
    background: var(--bg-light);
}

/* Project Amenities Section */
.project-amenities-section {
    margin-bottom: 4rem;
}

/* Project Amenities Section - Sidebar Version */
.project-amenities-section-sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-top: 2rem;
}

.amenities-sidebar-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.amenities-sidebar-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.amenities-grid-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
}

.amenities-grid-sidebar .amenity-card {
    padding: 1.2rem 0.8rem;
    margin: 0;
}

.amenities-grid-sidebar .amenity-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 0.8rem;
}

.amenities-grid-sidebar .amenity-icon i {
    font-size: 1.5rem;
}

.amenities-grid-sidebar .amenity-label {
    font-size: 0.85rem;
    line-height: 1.3;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.amenity-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.amenity-card:hover::before {
    opacity: 1;
}

.amenity-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.2);
    border-color: var(--secondary-color);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(212, 165, 116, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    border: 2px solid rgba(197, 160, 89, 0.2);
}

.amenity-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon {
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.amenity-card:hover .amenity-icon i {
    color: white;
    transform: scale(1.1);
}

.amenity-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.amenity-card:hover .amenity-label {
    color: var(--secondary-color);
}

/* Responsive Amenities */
@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .amenity-card {
        padding: 1.5rem 1rem;
    }
    
    .amenity-icon {
        width: 60px;
        height: 60px;
    }
    
    /* Sidebar Amenities Responsive */
    .amenities-grid-sidebar {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .amenities-grid-sidebar .amenity-card {
        padding: 1rem 0.5rem;
    }
    
    .amenities-grid-sidebar .amenity-icon {
        width: 50px;
        height: 50px;
    }
    
    .amenities-grid-sidebar .amenity-icon i {
        font-size: 1.3rem;
    }
    
    .amenities-grid-sidebar .amenity-label {
        font-size: 0.75rem;
    }
    
    .amenities-sidebar-header {
        padding: 1.2rem;
    }
    
    .amenities-sidebar-header h3 {
        font-size: 1.1rem;
    }
    
    .amenity-icon i {
        font-size: 1.5rem;
    }
    
    .amenity-label {
        font-size: 0.85rem;
    }
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

/* MODERN GALLERY TABS */
.gallery-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.gallery-tabs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.05), transparent);
    pointer-events: none;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 600;
    border-radius: 50px;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.tab-btn.active {
    color: white;
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

.tab-btn.active::before {
    opacity: 1;
    transform: scale(1);
}

.tab-btn:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.tab-btn.active:hover {
    color: white;
    transform: translateY(-2px) scale(1.05);
}

/* Gallery Header */
.gallery-header {
    position: relative;
    padding-bottom: 1rem;
}

.gallery-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    border-radius: 2px;
}

/* Gallery Styles - Modernized */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.gallery-item {
    height: 280px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 20px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 20px;
}

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

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.3);
    border-color: var(--secondary-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
}

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

/* Gallery Overlay with Icon */
.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 2.5rem;
    z-index: 2;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Gradient Overlay on Hover */
.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.6), rgba(197, 160, 89, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 20px;
}

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

/* Skeleton Loading Animation Enhancement */
.gallery-item.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.project-sidebar {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 120px;
    overflow: hidden;
}

.sidebar-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
}

.sidebar-header h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.feature-list {
    padding: 1.5rem;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-label {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-label i {
    color: var(--secondary-color);
}

.sidebar-cta {
    padding: 2rem;
    text-align: center;
}

.sidebar-action-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
}

.sidebar-action-buttons .btn {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sidebar-action-buttons .btn i {
    font-size: 1.1rem;
}

.sidebar-action-buttons .btn-phone-sidebar {
    background: var(--secondary-color);
    color: white;
    border: none;
}

.sidebar-action-buttons .btn-phone-sidebar:hover {
    background: #d4a574;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.sidebar-action-buttons .btn-whatsapp-sidebar {
    background: #25D366;
    color: white;
    border: none;
}

.sidebar-action-buttons .btn-whatsapp-sidebar:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
    .about-grid, .contact-container, .details-grid { grid-template-columns: 1fr; gap: 3rem; }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar { background: var(--primary-color); }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
    }
    .nav-links.active { right: 0; }
    .hamburger { display: block; }
    
    .lang-dropdown {
        margin-left: 1rem;
    }
    
    .lang-dropdown-toggle {
        width: 35px;
        height: 35px;
    }
    
    .lang-dropdown-toggle .fi {
        width: 20px;
        height: 20px;
    }
    
    .hero-content h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    
    .mission-vision-wrapper { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: 1fr; }

    .footer-content {
        grid-template-columns: 1fr; 
        gap: 2.5rem;
        text-align: left;
    }
    .footer-title { text-align: left; }
    .footer-social-icons { justify-content: flex-start; }
    .footer-desc { text-align: left; }
    
    .footer-bottom {
        padding-top: 1.5rem;
        gap: 0.6rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .footer-credit {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .sticky-whatsapp { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
    
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .gallery-item {
        height: 240px;
        border-radius: 16px;
    }
    
    .gallery-tabs {
        flex-direction: column;
        gap: 0.5rem;
        border-radius: 20px;
        padding: 0.75rem;
    }
    
    .tab-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    .services-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-info-card, .modern-form { padding: 2rem; }
    
    .sidebar-action-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .sidebar-action-buttons .btn {
        width: 100%;
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Virtual Tour Responsive */
    .vt-section {
        min-height: 100vh;
        padding-top: 100px;
    }
    
    .vt-title {
        font-size: 2.5rem;
    }
    
    .vt-subtitle {
        font-size: 1.2rem;
    }
    
    .vt-icon {
        font-size: 4rem;
    }
    
    .vt-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid { 
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item {
        height: 220px;
        border-radius: 12px;
    }
    
    .gallery-item::after {
        font-size: 2rem;
    }
    
    .gallery-header h2 {
        font-size: 2rem;
    }
}

/* Page Loader */
#page-loader {
    position: fixed;
    top: 0;
        left: 0;
        width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 99999; /* En üstte */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    width: 120px;
    height: 120px;
        display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    width: 60px;
    height: auto;
    z-index: 2;
    animation: pulse-logo 2s infinite ease-in-out;
}

.loader-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin-loader 1s linear infinite;
    z-index: 1;
}

.loader-spinner::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 3px solid transparent;
    border-top-color: rgba(197, 160, 89, 0.5);
    border-radius: 50%;
    animation: spin-loader 2s linear infinite;
}

.loader-spinner::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid transparent;
    border-top-color: rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    animation: spin-loader 3s linear infinite;
}

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

@keyframes pulse-logo {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* ============================================
   NEW PAGES STYLES
   ============================================ */

/* Page Section (Common) */
.page-section {
    padding: 100px 0;
    min-height: 70vh;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding: 2rem 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    border-radius: 2px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 300;
    font-weight: 400;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-family: var(--font-heading);
        font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    }

.content-block p {
        font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-section {
    background: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 0 0 1px rgba(197, 160, 89, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.3), 0 0 0 3px var(--secondary-color);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(212, 165, 116, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    border: 3px solid rgba(197, 160, 89, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
    color: var(--secondary-color);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    color: white;
    transform: scale(1.15) rotate(5deg);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}
    color: white;
}

.value-card h3 {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--primary-color), #2d2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.value-card:hover h3 {
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-color), #1a1a1a);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: var(--secondary-color);
}

.stat-box p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

/* Board Grid */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.board-member {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 0 0 1px rgba(197, 160, 89, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.board-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.board-member:hover::before {
    opacity: 1;
}

.board-member:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.3), 0 0 0 3px var(--secondary-color);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.member-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.2), rgba(212, 165, 116, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: var(--secondary-color);
    border: 4px solid rgba(197, 160, 89, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.2);
}

.board-member:hover .member-photo {
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    color: white;
    transform: scale(1.1) rotate(5deg);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}
}

.board-member h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.member-name {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Career Benefits */
.career-benefits {
    margin: 3rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.news-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 0 0 1px rgba(197, 160, 89, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 3px solid transparent;
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.news-card:hover::before {
    opacity: 1;
}

.news-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.3), 0 0 0 3px var(--secondary-color);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.news-date {
    background: linear-gradient(135deg, var(--secondary-color), #d4a574);
    color: white;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
}

.news-date .day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.news-date .year {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

.news-content {
    padding: 2rem;
    flex: 1;
    display: flex;
        flex-direction: column;
}

.news-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.news-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: 1rem;
}

/* Press Grid */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.press-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 0 0 1px rgba(197, 160, 89, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    border-top: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.press-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.press-card:hover::before {
    opacity: 1;
}

.press-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.3), 0 0 0 3px var(--secondary-color);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.press-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.press-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.press-source {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.press-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.press-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.press-link:hover {
    gap: 1rem;
}

/* Gallery Page */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: white;
}

.gallery-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item-page {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
    color: white;
        font-size: 2rem;
    }

/* Responsive for new pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .values-grid,
    .board-grid,
    .benefits-grid,
    .news-grid,
    .press-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid-page {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-card {
        flex-direction: row;
    }
    
    .news-date {
        min-width: 80px;
        padding: 1rem;
    }
    
    .news-date .day {
        font-size: 2rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(197, 160, 89, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(197, 160, 89, 0.12) 0%, transparent 50%),
        url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23c5a059" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 1;
    z-index: 0;
}

.partners-section .container {
    position: relative;
    z-index: 1;
}

.partners-section .page-header {
    margin-bottom: 4rem;
}

.partners-section .page-subtitle {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    margin: 0;
    text-align: center;
    letter-spacing: -0.5px;
    position: relative;
    text-shadow: 0 2px 10px rgba(197, 160, 89, 0.2);
}

.partners-section .page-subtitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    border-radius: 2px;
}

.partners-carousel-wrapper {
    overflow: hidden;
    margin-top: 4rem;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    padding: 2rem 0;
}

.partners-carousel-wrapper::before,
.partners-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 249, 250, 1), transparent);
}

.partners-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 249, 250, 1), transparent);
}

.partners-carousel {
    display: flex;
    gap: 2.5rem;
    animation: scrollPartners 35s linear infinite;
    width: fit-content;
    align-items: center;
}

.partners-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    align-items: center;
}

.partner-logo {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1), 0 0 0 1px rgba(197, 160, 89, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 180px;
    width: calc((100vw - 12rem) / 7);
    min-width: 180px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.partner-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.partner-logo:hover::after {
    opacity: 1;
}

.partner-logo img {
    max-width: 90%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(70%) brightness(0.9);
    opacity: 0.85;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1.05);
    opacity: 1;
    transform: scale(1.15);
}

.partner-logo img + .partner-name {
    display: none !important;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.partner-logo:hover::before {
    left: 100%;
}

.partner-logo:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.3), 0 0 0 3px var(--secondary-color);
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
}

.partner-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    display: block;
}

.partner-logo:hover .partner-name {
    color: var(--secondary-color);
}

/* About Section Page */
.about-section-page {
    padding: 0;
}

@media (max-width: 768px) {
    .partners-section {
        padding: 4rem 0;
    }
    
    .partners-section .page-subtitle {
        font-size: 1.8rem;
    }
    
    .partners-carousel-wrapper {
        margin-top: 3rem;
    }
    
    .partners-carousel {
        gap: 1.5rem;
    }
    
    .partner-logo {
        padding: 2.5rem 2rem;
        min-height: 160px;
        width: calc((100vw - 4.5rem) / 3);
        min-width: 160px;
        border-radius: 16px;
    }
    
    .partner-logo img {
        max-height: 100px;
    }
    
    .partner-name {
        font-size: 1rem;
    }
    
    .partners-section .page-subtitle::after {
        width: 80px;
        height: 3px;
    }
    
    @keyframes scrollPartners {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100% / 2));
        }
    }
}
