/* ==========================================
   AKMAN MOBILYA - MOBİLYA İMALATI
   Modern & Premium CSS Styles
========================================== */

/* Import Google Fonts - Modern Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ==========================================
   CSS VARIABLES
========================================== */
:root {
    /* Primary Colors */
    --primary-color: #2C3E50;
    --primary-dark: #1a252f;
    --primary-light: #34495e;

    /* Accent Colors */
    --accent-gold: #D4AF37;
    --accent-gold-light: #E5C158;
    --accent-gold-dark: #B8960C;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #212529;

    /* Background Colors */
    --bg-cream: #FAF8F5;
    --bg-warm: #F5F3F0;

    /* Text Colors */
    --text-primary: #2C3E50;
    --text-secondary: #6C757D;
    --text-light: #ADB5BD;

    /* Fonts - Modern */
    --font-heading: 'DM Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.15rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.9rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

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

ul {
    list-style: none;
}

/* ==========================================
   UTILITY CLASSES
========================================== */
.section-padding {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 2px;
}

.section-title p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 15px auto 0;
}

.bg-cream {
    background-color: var(--bg-cream);
}

.bg-dark {
    background-color: var(--primary-color);
}

/* ==========================================
   CUSTOM BUTTONS
========================================== */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border: none;
    color: var(--white);
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 8px 22px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-outline-custom:hover {
    background: var(--accent-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background: var(--white);
    border: none;
    color: var(--primary-color);
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-white:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-white i {
    color: var(--accent-gold);
}

.btn-white:hover i {
    color: var(--accent-gold);
}


/* ==========================================
   NAVBAR STYLES
========================================== */
#navbar-placeholder {
    min-height: 80px;
}

.navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.navbar-custom.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.navbar-custom .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-custom .navbar-brand span {
    color: var(--accent-gold);
}


/* Premium Logo Styles */
.navbar-brand.logo-premium {
    padding: 0;
    margin-right: 1rem;
    display: flex;
    align-items: flex-start;
    /* Logo aşağı sarksın, yukarıdan kesilmesin */
    height: 60px;
    /* Sabit referans yükseklik */
}

.nav-logo-custom {
    height: 180px;
    width: auto;
    object-fit: contain;
    margin-top: -50px;
    /* Daha da yukarı */
    margin-left: 15px;
    margin-bottom: -160px;
    /* Dengelemek için */
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1051;
    position: relative;
}

/* Scrolled state adjustment */
.navbar-custom.scrolled .nav-logo-custom {
    height: 150px;
    margin-top: -40px;
    margin-left: 10px;
    margin-bottom: -85px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .nav-logo-custom {
        height: 130px;
        margin-top: -35px;
        margin-left: 10px;
        margin-bottom: -100px;
    }

    .navbar-custom.scrolled .nav-logo-custom {
        height: 90px;
        margin-top: -20px;
        margin-left: 5px;
        margin-bottom: -50px;
    }
}

/* Old SVG Logo Styles (Commented Out) */
/*
.logo-badge {
    width: 65px;
    height: 65px;
    transition: var(--transition-normal);
    filter: drop-shadow(0 3px 6px rgba(212, 175, 55, 0.25));
}

.logo-badge svg {
    width: 100%;
    height: 100%;
}

.navbar-brand.logo-premium:hover .logo-badge {
    transform: scale(1.08) rotate(5deg);
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.4));
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition-normal);
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: var(--transition-normal);
}

.navbar-brand.logo-premium:hover .logo-brand-name {
    color: var(--accent-gold);
    letter-spacing: 4px;
}

.navbar-brand.logo-premium:hover .logo-tagline {
    opacity: 1;
    letter-spacing: 3px;
}
*/

.navbar-custom .nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 10px 20px !important;
    margin: 0 5px;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-custom .nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.navbar-custom .nav-link:hover::before,
.navbar-custom .nav-link.active::before {
    transform: scaleX(1);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--accent-gold);
}

.navbar-custom .navbar-toggler {
    border: none;
    padding: 10px;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232C3E50' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================
   HERO SECTION
========================================== */
.hero-section {
    --hero-bg: url('images/banyo.jpg');
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(15, 15, 20, 0.9), rgba(20, 20, 30, 0.75)), var(--hero-bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    /* transition: background 0.2s ease; -> JS ile kontrol ediliyor */
    overflow: hidden;
}

.hero-content {
    color: var(--white);
    max-width: 650px;
    padding: 120px 0 30px;
    /* Alt boşluk azaltıldı çünkü dots dışarıda */
    margin-left: 10%;
    text-align: left;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    transition: opacity 0.4s, transform 0.4s;
}

.hero-content h1 span {
    color: var(--accent-gold);
}

.hero-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.7;
    transition: opacity 0.4s, transform 0.4s;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    transition: opacity 0.4s, transform 0.4s;
}

/* Hero Dots */
.hero-dots {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    margin-left: 10%;
    /* hero-content ile aynı hiza */
    position: relative;
    z-index: 2;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
    background: var(--accent-gold);
    width: 30px;
    border-radius: 6px;
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.hero-arrow:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-arrow {
        top: 65%;
        /* Move arrows down to avoid text overlap */
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .hero-prev {
        left: 5px;
    }

    .hero-next {
        right: 5px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--white);
    font-size: 2rem;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.hero-scroll a:hover {
    opacity: 1;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ==========================================
   FEATURES SECTION
========================================== */
.features-section {
    background: var(--white);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-normal);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ==========================================
   ABOUT SECTION
========================================== */
.about-section .about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-section .about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-section .about-image:hover img {
    transform: scale(1.05);
}

.about-section .about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content {
    padding-left: 40px;
}

.about-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.about-content h2 span {
    color: var(--accent-gold);
}

.about-content p {
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* ==========================================
   PRODUCTS / CATEGORIES SECTION
========================================== */
.categories-section {
    background: var(--bg-cream);
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.95), transparent);
    padding: 40px 25px 25px;
    transition: var(--transition-normal);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(212, 175, 55, 0.9), rgba(44, 62, 80, 0.5));
}

.category-overlay h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.category-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.category-link {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-weight: 500;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.category-link i {
    margin-left: 8px;
    transition: var(--transition-fast);
}

.category-link:hover i {
    transform: translateX(5px);
}

/* ==========================================
   PRODUCT CARDS
========================================== */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-normal);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.product-action-btn:hover {
    background: var(--accent-gold);
    color: var(--white);
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-info h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    transition: var(--transition-fast);
}

.product-card:hover .product-info h5 {
    color: var(--accent-gold);
}

.product-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
}

.product-price .old-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 10px;
}

/* ==========================================
   TESTIMONIALS SECTION
========================================== */
.testimonials-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.testimonials-section .section-title h2,
.testimonials-section .section-title p {
    color: var(--white);
}

.testimonials-section .section-title h2::after {
    background: var(--accent-gold);
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 60px;
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition-normal);
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-quote {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    min-height: 80px;
}

.testimonial-author h5 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.testimonial-stars {
    color: var(--accent-gold);
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Carousel Navigation Arrows */
.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
}

.testimonial-arrow:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
    left: 10px;
}

.testimonial-next {
    right: 10px;
}

.testimonial-arrow i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        padding: 20px 40px;
    }

    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
        padding: 25px 20px;
    }

    .testimonial-quote {
        font-size: 0.9rem;
        min-height: 70px;
    }

    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }

    .testimonial-arrow i {
        font-size: 1rem;
    }
}


/* ==========================================
   CTA SECTION
========================================== */
.cta-section {
    background: var(--accent-gold);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* ==========================================
   CONTACT PAGE
========================================== */
.contact-section {
    background: var(--bg-cream);
}

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-item h5 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Tıklanabilir İletişim Bilgileri */
.contact-info-link {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
    border-radius: var(--radius-md);
    padding: 15px;
    margin: -15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-cream);
    border-left: 3px solid var(--accent-gold);
}

.contact-info-link:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.contact-info-link:hover h5 {
    color: var(--accent-gold);
}

.contact-info-link .contact-icon {
    transition: var(--transition-normal);
}

.contact-info-link h5,
.contact-info-link p {
    transition: var(--transition-fast);
}


.contact-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    margin-bottom: 30px;
}

.form-control-custom {
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control-custom:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-label-custom {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

/* Map Container Styles */
.contact-map-card {
    position: relative;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-link {
    position: relative;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.map-link iframe {
    display: block;
    pointer-events: none;
    transition: var(--transition-normal);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(212, 175, 55, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
    pointer-events: none;
}

.map-link:hover .map-overlay {
    opacity: 1;
}

.map-overlay-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.map-link:hover .map-overlay-content {
    transform: translateY(0);
}

.map-overlay-content i.fa-map-marker-alt {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
    animation: bounce 2s infinite;
}

.map-overlay-content h5 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.map-overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 20px;
}

.map-cta {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-lg);
}

.map-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.map-cta i {
    color: var(--accent-gold);
}


/* ==========================================
   PAGE HEADER
========================================== */
.page-header {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.8)),
        url('../images/salon.jpg');
    background-size: cover;
    background-position: center 85%;
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-header-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.7;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.breadcrumb-custom a {
    color: var(--accent-gold);
}

.breadcrumb-custom span {
    color: rgba(255, 255, 255, 0.7);
}

/* ==========================================
   FOOTER STYLES
========================================== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding-top: 80px;
}

.footer-widget h5 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand span {
    color: var(--accent-gold);
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '→';
    margin-right: 10px;
    color: var(--accent-gold);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-contact-item p {
    margin-bottom: 0;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-contact-link:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact-link p {
    margin-bottom: 0;
    transition: var(--transition-fast);
}


.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.social-link i {
    color: var(--white);
    font-size: 1.1rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ==========================================
   RESPONSIVE STYLES
========================================== */
@media (max-width: 1199px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-padding {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-section .about-image::before {
        display: none;
    }

    .about-stats {
        justify-content: center;
    }

    .navbar-custom .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .section-padding {
        padding: 60px 0;
    }

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

    .section-title h2 {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .category-card {
        height: 300px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .contact-form-card {
        padding: 30px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {

    .btn-primary-custom,
    .btn-outline-custom,
    .btn-white {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-widget h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a::before {
        display: none;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* ==========================================
   ANIMATION UTILITIES
========================================== */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.slide-up {
    animation: slideUp 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* ==========================================
   LOADING ANIMATION
========================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: var(--transition-slow);
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

}

/* ==========================================
   STICKY SOCIAL CARDS
========================================== */
/* ==========================================
   STICKY SOCIAL CARDS
========================================== */
.sticky-social-container {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    cursor: pointer;
    color: #fff;
    border: none;
}

.sticky-card:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.sticky-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    width: 100%;
    height: 100%;
}

.sticky-icon i {
    color: #fff;
}

/* Tooltip Content */
.sticky-content {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(-15px);
    background: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1000;
}

/* Tooltip Arrow */
.sticky-content::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid var(--white);
}

.sticky-card:hover .sticky-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.sticky-content span {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 2px;
}

.sticky-content .phone-number,
.sticky-content .follow-text {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 0;
}

/* --- BRAND COLORS (Always Colored) --- */

/* Call Button - Blue */
.call-card {
    background: linear-gradient(135deg, #007bff, #0062cc);
}

/* WhatsApp Button - Green */
.whatsapp-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Instagram Button - Gradient Pink/Purple */
.instagram-card {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.instagram-card .sticky-icon i {
    background: none;
    -webkit-text-fill-color: #fff;
    color: #fff;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .sticky-social-container {
        left: 15px;
        bottom: 25px;
        gap: 12px;
    }

    .sticky-card {
        width: 42px;
        height: 42px;
    }

    .sticky-icon {
        font-size: 20px;
    }
}

/* ==========================================
   NAVBAR SOCIAL BUTTONS
========================================== */
.nav-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 18px;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

/* Call Button - Blue */
.nav-call {
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.nav-call:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

/* WhatsApp Button - Green */
.nav-whatsapp {
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.1);
}

.nav-whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

/* Instagram Button - Pink/Gradient */
.nav-instagram {
    color: #d62976;
    border: 1px solid rgba(214, 41, 118, 0.1);
}

.nav-instagram .fa-instagram {
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.nav-instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: transparent;
}

.nav-instagram:hover .fa-instagram {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

/* Mobile Adjustments for Navbar items */
@media (max-width: 991px) {
    .navbar-nav.ms-lg-3 {
        flex-direction: row !important;
        /* Force row layout even on mobile */
        justify-content: center;
        margin-top: 15px;
        margin-bottom: 15px;
        gap: 15px !important;
    }

    .nav-social-btn {
        width: 42px;
        height: 42px;
        font-size: 20px;
        background: #f8f9fa;
        /* Slightly darker bg on mobile menu */
    }
}

/* ==========================================
   PROMO CARD (Bottom Left)
========================================== */
.promo-card {
    position: fixed;
    left: 20px;
    bottom: 250px;
    /* Positioned well above sticky social icons */
    width: 380px;
    /* Wider */
    background-color: #c6a47e;
    color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 998;
    display: flex;
    flex-direction: column;
    transform: translateX(-150%);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    /* Slower and smooth */
    overflow: hidden;
}

.promo-card.show {
    transform: translateX(0);
}

.promo-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    line-height: 1;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

.promo-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.promo-card-icon {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.promo-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

.promo-text p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.promo-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.1);
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.3s;
}

.promo-link:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
}

.promo-link i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Decoration Circle */
.promo-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: -1;
}

/* Responsive */
@media (max-width: 576px) {
    .promo-card {
        width: auto;
        max-width: 300px;
        /* Constrained width */
        bottom: 220px;
        /* Significantly higher to ensure clearance */
        left: 20px;
        right: auto;
        padding: 15px;
        /* Compact padding */
    }

    .promo-content {
        gap: 12px;
    }

    .promo-card-icon {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .promo-text h5 {
        font-size: 0.9rem;
        /* Smaller title */
        margin-bottom: 2px;
    }

    .promo-text p {
        font-size: 0.75rem;
        /* Smaller text */
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .promo-link {
        padding: 4px 10px;
        font-size: 0.7rem;
        /* Smaller button */
    }

    /* Adjust close button */
    .promo-close {
        width: 20px;
        height: 20px;
        font-size: 14px;
        top: 8px;
        right: 8px;
    }

    /* --- MOBILE CARD ADJUSTMENTS (2 Columns) --- */
    .category-card {
        height: 200px;
        /* Reduced height from 400px */
    }

    .category-overlay {
        padding: 15px 10px;
        background: linear-gradient(to top, rgba(44, 62, 80, 0.95), rgba(44, 62, 80, 0.2));
    }

    .category-overlay h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .category-overlay p {
        font-size: 0.7rem;
        line-height: 1.2;
        display: none;
        /* Hide description on very small screens to save space if needed, or keep: */
        /* display: block; */
    }

    .category-link {
        font-size: 0.75rem;
        margin-top: 5px;
    }

    /* Product Cards Mobile */
    .product-image {
        height: 160px;
        /* Reduced from 280px */
    }

    .product-info {
        padding: 12px;
    }

    .product-info h5 {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }

    .product-category {
        font-size: 0.7rem;
    }

    .product-info p {
        font-size: 0.75rem;
        margin-bottom: 0;
        line-height: 1.3;
    }

    .product-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
        top: 10px;
        left: 10px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }
}

/* ==================== COOKIE CONSENT BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 10000;
    transition: transform 0.5s ease-in-out;
    border-top: 3px solid var(--accent-gold);
    transform: translateY(100%);
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.cookie-content a {
    color: var(--accent-gold);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-content a:hover {
    color: var(--primary-color);
}

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

    .cookie-banner {
        padding: 20px 0;
    }
}