/* ============================================
   OSMAN GONCA - Premium Barber Website
   Unified Stylesheet (style.css)
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --gold-start: #C9A84C;
    --gold-mid: #E5C158;
    --gold-end: #F0D878;
    --gold-bright: #FFF4C7;
    --gold-dark: #9A7B2C;
    --gold-deep: #6B5420;
    --dark: #0A0A0A;
    --dark-light: #141414;
    --dark-card: #111111;
    --text-light: #F0F0F0;
    --text-muted: #777777;
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--text-light);
    overflow-x: hidden;
}

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

/* ============================================
   GRADIENT UTILITY CLASSES
   ============================================ */
.text-gold-gradient {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold-gradient-shine {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 30%, var(--gold-bright) 50%, var(--gold-mid) 70%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gold-gradient {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
}

.border-gold-gradient {
    border-image: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%) 1;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-start), var(--gold-end));
    border-radius: 4px;
}

/* ============================================
   NAVBAR
   ============================================ */
   .navbar {
       background: rgba(10, 10, 10, 0.95);
       backdrop-filter: blur(10px);
       border-bottom: 1px solid rgba(201, 168, 76, 0.15);
       padding: 1rem 0;
       transition: all 0.3s ease;
   }

   /* ... Diğer stilleriniz aynı kalabilir (navbar-brand, .nav-link vs.) ... */

   .nav-link {
       color: var(--text-light) !important;
       font-weight: 500;
       letter-spacing: 1px;
       text-transform: uppercase;
       font-size: 0.85rem;
       margin: 0 0.5rem;
       position: relative;
       transition: all 0.3s ease;
   }

   /* ====================== DROPDOWN DÜZELTMELERİ ====================== */

   .dropdown-toggle::after {
       position: absolute !important;
       right: 8px !important;      /* sağa yasla */
       bottom: 50% !important;
       transform: translateY(50%) !important;
       border-color: var(--gold-mid) transparent transparent transparent !important;
   }

   /* Dropdown Menü Stili */
   .dropdown-menu {
       background: rgba(10, 10, 10, 0.98) !important;
       backdrop-filter: blur(15px);
       border: 1px solid rgba(201, 168, 76, 0.5) !important;
       border-top: 3px solid var(--gold-mid) !important;
       box-shadow: 0 15px 40px rgba(0,0,0,0.8) !important;
       padding: 8px 0 !important;
       border-radius: 8px !important;
       min-width: 240px !important;
       margin-top: 8px !important;
   }

   .dropdown-item {
       color: var(--text-light) !important;
       padding: 0.85rem 1.5rem !important;
       font-size: 0.92rem;
       transition: all 0.3s ease;
   }

   .dropdown-item:hover {
       background: rgba(201, 168, 76, 0.25) !important;
       color: var(--gold-mid) !important;
   }


/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    background: transparent;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%) 1;
    color: var(--gold-mid);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 244, 199, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    color: var(--dark);
    box-shadow: 0 0 30px rgba(229, 193, 88, 0.3);
    -webkit-text-fill-color: var(--dark);
}

.btn-gold-solid {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    border: none;
    color: var(--dark);
    padding: 0.8rem 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.btn-gold-solid::after {
    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: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.btn-gold-solid:hover::after {
    opacity: 1;
    left: 100%;
}

.btn-gold-solid:hover {
    box-shadow: 0 0 40px rgba(229, 193, 88, 0.5);
    transform: translateY(-2px);
}

/* ============================================
   SECTION STYLING
   ============================================ */
.section-padding {
    padding: 6rem 0;
}

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

.section-title h2 {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-mid), var(--gold-end));
}

.section-title p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 1.5rem;
    font-weight: 300;
}

/* ============================================
   HERO SECTION (INDEX)
   ============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(20,20,20,0.85) 100%),
                url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(229, 193, 88, 0.05) 0%, transparent 50%);
}

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

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-weight: 300;
}

.hero-icons {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 2;
}

.hero-icons a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.hero-icons a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    transition: width 0.3s ease;
}

.hero-icons a:hover {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-3px);
}

.hero-icons a:hover::after {
    width: 100%;
}

/* ============================================
   ABOUT SECTION (INDEX)
   ============================================ */
.about {
    background: var(--dark-light);
    position: relative;
}

.about-img-wrapper {
    position: relative;
    overflow: hidden;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%) 1;
    z-index: 1;
    pointer-events: none;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.5s ease;
}

.about-img-wrapper:hover .about-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.about-content h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}

.stat-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ============================================
   SERVICES SECTION (INDEX)
   ============================================ */
.services {
    background: var(--dark);
}

.service-card {
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-mid), var(--gold-end));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(201, 168, 76, 0.1);
}

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

.service-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h4 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
}

.service-price {
    display: block;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

/* ============================================
   GALLERY SECTION (INDEX)
   ============================================ */
.gallery {
    background: var(--dark-light);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(50%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(20,20,20,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.gallery-overlay i {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
}

/* ============================================
   TESTIMONIALS (INDEX)
   ============================================ */
.testimonials {
    background: var(--dark);
    position: relative;
}

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    padding: 3rem;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.testimonial-author h5 {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.stars {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* ============================================
   CTA SECTION (ALL PAGES)
   ============================================ */
.cta {
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(20,20,20,0.9) 100%),
                url('https://images.unsplash.com/photo-1621605815971-fbc98d665033?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
}

.cta h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER (ALL PAGES)
   ============================================ */
.footer {
    background: #050505;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-links h5 {
    color: var(--text-light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

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

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

.footer-links ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links ul li a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.footer-social a:hover::before {
    left: 0;
}

.footer-social a:hover {
    -webkit-text-fill-color: var(--dark);
    border-color: transparent;
    transform: translateY(-3px);
}

/* Remove underline from footer social icon links */
.footer-social a::after,
.footer-social a:hover::after {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   ABOUT HERO (HAKKIMIZDA PAGE)
   ============================================ */
.about-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(20,20,20,0.85) 100%),
                url('https://images.unsplash.com/photo-1633681926022-84c23e8cb2d6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.about-hero-title span {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.about-hero-breadcrumb {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.about-hero-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.about-hero-breadcrumb a:hover {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-breadcrumb .separator {
    margin: 0 0.8rem;
    color: var(--gold-mid);
}

.about-hero-breadcrumb .current {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   OUR STORY (HAKKIMIZDA PAGE)
   ============================================ */
.our-story {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.our-story::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.story-img-wrapper {
    position: relative;
    overflow: hidden;
}

.story-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.story-img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    filter: grayscale(40%);
    transition: all 0.6s ease;
}

.story-img-wrapper:hover .story-img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.story-content {
    padding: 2rem 0;
}

.story-content .section-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    display: block;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content h2 {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-content h2 span {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 1rem;
}

.story-quote {
    border-left: 3px solid transparent;
    border-image: linear-gradient(180deg, var(--gold-start), var(--gold-end)) 1;
    padding-left: 1.5rem;
    margin: 2rem 0;
}

.story-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.story-quote .quote-author {
    margin-top: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--gold-mid);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-style: normal;
}

/* ============================================
   TIMELINE (HAKKIMIZDA PAGE)
   ============================================ */
.timeline-section {
    background: var(--dark-light);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-start), var(--gold-mid), var(--gold-end), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

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

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    border-radius: 50%;
    border: 4px solid var(--dark-light);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    position: relative;
    transition: all 0.4s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold-start), var(--gold-end));
}

.timeline-content:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 20px rgba(201, 168, 76, 0.1);
    transform: translateY(-5px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.timeline-title {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.timeline-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   VALUES (HAKKIMIZDA PAGE)
   ============================================ */
.values-section {
    background: var(--dark);
    position: relative;
}

.value-card {
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.value-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.value-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%) 1;
    position: relative;
    z-index: 1;
}

.value-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-card h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* ============================================
   TEAM (HAKKIMIZDA PAGE)
   ============================================ */
.team-section {
    background: var(--dark-light);
    position: relative;
}

.team-card {
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.team-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3), 0 0 30px rgba(201, 168, 76, 0.1);
    transform: translateY(-8px);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(60%);
    transition: all 0.5s ease;
}

.team-card:hover .team-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 100%);
    z-index: 2;
}

.team-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-mid);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    color: var(--dark);
    border-color: transparent;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.team-info p {
    color: var(--gold-mid);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 500;
}

/* ============================================
   AWARDS (HAKKIMIZDA PAGE)
   ============================================ */
.awards-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: all 0.4s ease;
    margin-bottom: 1.5rem;
}

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

.award-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.award-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--dark);
}

.award-content h4 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.award-content p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 300;
}

.award-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: auto;
    white-space: nowrap;
}

/* ============================================
   STATS BAR (HAKKIMIZDA PAGE)
   ============================================ */
.stats-bar {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, rgba(201, 168, 76, 0.05) 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 3rem 0;
}

.stats-bar-item {
    text-align: center;
    position: relative;
}

.stats-bar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--gold-mid), transparent);
}

.stats-bar-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stats-bar-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    font-weight: 500;
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */
.gallery-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(20,20,20,0.85) 100%),
                url('https://images.unsplash.com/photo-1622286342621-4bd786c2447c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.gallery-hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.gallery-hero-title span {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.gallery-hero-breadcrumb {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.gallery-hero-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.gallery-hero-breadcrumb a:hover {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-hero-breadcrumb .separator {
    margin: 0 0.8rem;
    color: var(--gold-mid);
}

.gallery-hero-breadcrumb .current {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gallery Filter Buttons */
.gallery-filter {
    background: var(--dark);
    padding: 2rem 0;
    text-align: center;
}

.gallery-filter-btn {
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--text-muted);
    padding: 0.6rem 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0.3rem 0.5rem;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-mid) 50%, var(--gold-end) 100%);
    border-color: transparent;
    color: var(--dark);
}

/* Gallery Grid */
.gallery-grid-section {
    background: var(--dark-light);
    padding: 3rem 0 6rem;
}

.gallery-grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: all 0.4s ease;
}

.gallery-grid-item:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.gallery-grid-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(40%);
}

.gallery-grid-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.gallery-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(20,20,20,0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 1.5rem;
}

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

.gallery-grid-overlay i {
    background: linear-gradient(135deg, var(--gold-start) 0%, var(--gold-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.gallery-grid-overlay h5 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.gallery-grid-overlay p {
    color: var(--gold-mid);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Gallery Masonry Layout */
.gallery-masonry .gallery-grid-item img {
    height: 100%;
    min-height: 250px;
}

.gallery-masonry .gallery-grid-item.tall img {
    min-height: 520px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--gold-start), var(--gold-end)) 1;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--gold-mid);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-mid);
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem;
}

.lightbox-nav:hover {
    color: var(--gold-bright);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.shimmer-text {
    background: linear-gradient(90deg, var(--gold-start) 0%, var(--gold-mid) 25%, var(--gold-bright) 50%, var(--gold-mid) 75%, var(--gold-end) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    .about-img-wrapper::before {
        display: none;
    }
    .about-stats {
        gap: 1.5rem;
    }
    .about-hero-title {
        font-size: 3rem;
    }
    .gallery-hero-title {
        font-size: 3rem;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-dot {
        left: 20px;
    }
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 50px !important;
        margin-right: 0 !important;
    }
    .stats-bar-item:not(:last-child)::after {
        display: none;
    }
    .stats-bar-item {
        margin-bottom: 2rem;
    }
    .stats-bar-item:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
    .cta h2 {
        font-size: 2rem;
    }
    .about-img {
        height: 350px;
        margin-bottom: 2rem;
    }
    .service-card {
        margin-bottom: 1.5rem;
    }
    .about-hero-title {
        font-size: 2.2rem;
    }
    .gallery-hero-title {
        font-size: 2.2rem;
    }
    .story-content h2 {
        font-size: 2rem;
    }
    .story-img {
        min-height: 300px;
    }
    .award-item {
        flex-direction: column;
        text-align: center;
    }
    .award-year {
        margin-left: 0;
        margin-top: 1rem;
    }
    .team-img-wrapper {
        height: 300px;
    }
    .gallery-grid-item img {
        height: 250px;
    }
    .lightbox-nav {
        font-size: 1.5rem;
    }
    .lightbox-prev {
        left: 0.5rem;
    }
    .lightbox-next {
        right: 0.5rem;
    }
}

.gold-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    margin: 1rem auto;
}


/* ============================================
   FOOTER SOCIAL LINKS - NO UNDERLINE
   ============================================ */
.footer-social a,
.footer-social a:hover,
.footer-social a:focus,
.footer-social a:active,
.footer-social a::after,
.footer-social a:hover::after {
    text-decoration: none !important;
    border-bottom: none !important;
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}
