:root {
    --primary-color: #D4AF37; /* Gold */
    --secondary-color: #1A1A1A; /* Soft Black */
    --accent-color: #E0B0FF; /* Rose Gold/Mauve */
    --bg-color: #FDFDFD; /* Off-White */
    --text-dark: #222;
    --text-light: #f4f4f4;
    --transition: all 0.3s ease;
    --glass: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

#anasayfa,
#hizmetler,
#galeri,
#yazilar,
#hakkimizda,
#iletisim {
    scroll-margin-top: 110px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

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

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

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--secondary-color);
}

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

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

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-dark);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.logo img {
    transition: var(--transition);
}

/* Navbar şeffafken: Logoyu beyaz yap */
.navbar:not(.scrolled) .logo img {
    filter: invert(1);
}

/* Navbar beyazken: Logoyu orijinal (siyah) yap */
.navbar.scrolled .logo img {
    filter: none;
}

.navbar:not(.scrolled) .logo {
    color: white;
}

.logo span {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-left: 5px;
    font-weight: 400;
    display: block;
    line-height: 0.8;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    color: var(--text-dark);
}

.navbar:not(.scrolled) .nav-links a {
    color: white;
}

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

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

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100svh;
    height: auto;
    background: #111;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--bg-color);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0 auto 20px;
}

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

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 250px;
    overflow: hidden;
}

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

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

/* About */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img img {
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--primary-color);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.features {
    margin: 25px 0;
}

.features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features i {
    color: var(--primary-color);
}

/* Floating Contact Group */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

/* Tüm butonların ortak stili */
.whatsapp-btn, .instagram-btn, .phone-btn, #backToTop {
    color: white;
    display: none; /* JS ve Flex ile kontrol ediliyor */
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    width: 200px;
    justify-content: center;
    cursor: pointer;
    border: none;
}

/* WhatsApp ve Insta her zaman görünür, diğerleri aktif olunca */
.whatsapp-btn, .instagram-btn, .phone-btn { display: flex; }
#backToTop.active { display: flex; }

/* Tüm butonların kesin sıralaması */
.phone-btn     { background: #3498db !important; order: 1 !important; display: flex !important; }
.instagram-btn { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important; order: 2 !important; display: flex !important; }
.whatsapp-btn  { background: #25d366 !important; order: 3 !important; display: flex !important; }
#backToTop     { background: #333 !important; order: 4 !important; } /* En altta ve koyu renk */

#backToTop.active { 
    display: flex !important; 
}

.whatsapp-btn:hover, .instagram-btn:hover, .phone-btn:hover, #backToTop:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

/* Mobil Görünüm Düzenlemesi */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
        gap: 8px; /* Boşluğu biraz daralttık */
    }
    .whatsapp-btn, .instagram-btn, .phone-btn, #backToTop {
        padding: 0 !important;
        border-radius: 50% !important;
        width: 45px !important; /* Mobilde biraz daha kibar yaptık */
        height: 45px !important;
        min-width: 45px !important;
        justify-content: center !important;
    }
    .whatsapp-btn span, .instagram-btn span, .phone-btn span, #backToTop span {
        display: none !important;
    }
    .whatsapp-btn i, .instagram-btn i, .phone-btn i, #backToTop i {
        font-size: 1.2rem !important;
    }
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: white;
    padding: 80px 0 20px;
}

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

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px 0 0 8px;
    background: rgba(255,255,255,0.1);
    color: white;
}

.newsletter-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
}

.footer-info .logo {
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

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

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

.social-links a:hover {
    background: var(--primary-color);
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

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

.reveal, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Price List */
.prices { padding: 100px 0; background: #fff; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.price-category h3 { font-family: 'Playfair Display', serif; margin-bottom: 20px; border-bottom: 2px solid var(--primary); display: inline-block; padding-bottom: 5px; }
.price-item { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.price-item .dots { flex: 1; border-bottom: 1px dotted #ccc; margin: 0 10px; }
.price-val { font-weight: 600; color: var(--primary); }

/* Gallery */
.gallery-section { padding: 100px 0; background: var(--bg-color); }
.gallery-grid-main { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; }
.gallery-item-main { position: relative; height: 250px; overflow: hidden; border-radius: 10px; }
.gallery-item-main img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(212,175,55,0.8); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item-main:hover .gallery-overlay { opacity: 1; }
.gallery-item-main:hover img { transform: scale(1.1); }
.gallery-overlay span { color: white; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }

/* Blog */
.blog-section { padding: 100px 0; background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.blog-card { padding: 30px; border-radius: 15px; box-shadow: var(--shadow); transition: var(--transition); border-top: 5px solid var(--primary); }
.blog-card:hover { transform: translateY(-10px); }

/* Modern Appointment Section */
.appointment-section {
    padding: 120px 0;
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url('images/salon_hero_premium.png') no-repeat center center/cover;
    background-attachment: fixed;
    color: white;
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.appointment-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.appointment-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
}

.glass-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.appointment-form {
    display: grid;
    gap: 25px;
}

.form-field {
    position: relative;
}

.appointment-form input, 
.appointment-form textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.appointment-form input:focus, 
.appointment-form textarea:focus {
    border-color: var(--primary-color);
}

.appointment-form label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #888;
    pointer-events: none;
    transition: 0.3s;
}

.appointment-form input:focus ~ label,
.appointment-form input:not(:placeholder-shown) ~ label,
.appointment-form textarea:focus ~ label,
.appointment-form textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #b88a24 100%);
    color: #fff;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.3);
}

.btn-glow:hover {
    filter: brightness(1.03);
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.42);
    transform: translateY(-2px);
}

.btn-glow:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.28);
}

.btn-glow:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 2px;
}

.btn-glow i {
    font-size: 0.95rem;
    line-height: 1;
}

.appointment-map {
    margin-top: 45px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.map-heading h3 {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.map-heading i {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.map-subtitle {
    margin: 0;
    padding: 10px 16px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
}

.appointment-map iframe {
    display: block;
    filter: none;
}

/* Before/After Slider */
.results-section { padding: 100px 0; background: #fff; }
.results-grid-main { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; }
.comparison-container { border-radius: 20px; overflow: hidden; background: #f9f9f9; box-shadow: var(--shadow); }
.comparison-slider { position: relative; height: 350px; width: 100%; overflow: hidden; }
.comparison-slider img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.resize-img { position: absolute; top: 0; left: 0; width: 50%; height: 100%; overflow: hidden; border-right: 3px solid var(--primary-color); z-index: 10; }
.slider-control { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 20; }
.slider-labels { position: absolute; bottom: 10px; width: 100%; display: flex; justify-content: space-between; padding: 0 10px; z-index: 15; pointer-events: none; }
.slider-labels span { background: rgba(0,0,0,0.5); color: white; padding: 2px 8px; border-radius: 5px; font-size: 0.7rem; text-transform: uppercase; }
.comparison-info { padding: 20px; text-align: center; }

/* Reviews Section */
.reviews-section { padding: 100px 0; background: var(--bg-color); overflow: hidden; }
.reviews-slider { width: 100%; overflow: hidden; position: relative; }
.reviews-track { display: flex; gap: 30px; width: max-content; animation: scroll 40s linear infinite; }
.reviews-track:hover { animation-play-state: paused; } /* Fare üzerine gelince durur */

.review-card { 
    background: white; 
    padding: 30px; 
    border-radius: 20px; 
    box-shadow: var(--shadow); 
    border: 1px solid rgba(0,0,0,0.05); 
    width: 350px; 
    flex-shrink: 0;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.review-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.google-icon img { width: 35px; height: 35px; }
.reviewer-info h4 { margin: 0; font-size: 1.1rem; }
.review-date { font-size: 0.8rem; color: #888; }
.review-rating { color: #fbbc04; font-size: 1rem; margin-bottom: 15px; }
.review-text { font-style: italic; color: #555; line-height: 1.8; }

/* Instagram Section */
.instagram-section { padding: 100px 0; background: var(--bg-color); }
.insta-container { max-width: 1200px; margin: 0 auto; }
.instagram-widget-wrap { 
    background: white; 
    padding: 10px; 
    border-radius: 20px; 
    box-shadow: var(--shadow); 
    overflow: hidden;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.insta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 15px; }
.insta-item { height: 300px; overflow: hidden; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.insta-item:hover img { transform: scale(1.1); }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--secondary-color); }
::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 10px; }

/* Dark Mode Variables */
body.dark-mode {
    --bg-color: #111;
    --text-dark: #f4f4f4;
    background-color: #111;
    color: #f4f4f4;
}
body.dark-mode .navbar.scrolled { background: rgba(0,0,0,0.9); }
body.dark-mode .service-card, body.dark-mode .card, body.dark-mode .blog-card { background: #1a1a1a; color: white; }

/* Preloader */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--secondary-color);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Cookie Consent */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    color: var(--secondary-color);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
    transform: translateY(200%);
    transition: 0.5s;
}
.cookie-banner.active { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 0.9rem; }

/* Back to Top */
#backToTop {
    position: relative;
    bottom: auto;
    right: auto;
    background: var(--primary-color);
    color: white;
    width: 200px;
    min-height: 48px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
    z-index: 999;
}
#backToTop.active { opacity: 1; }

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    margin-right: 15px;
}

@media (max-width: 768px) {
    #iletisim {
        scroll-margin-top: 70px;
    }

    .hero {
        min-height: 100svh;
        height: auto;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 70%;
        background: var(--secondary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 999;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links a {
        color: white !important;
        font-size: 1.3rem;
        padding: 15px;
        width: 100%;
        text-align: center;
    }

    .btn {
        padding: 15px 35px;
        width: 100%;
        margin-bottom: 10px;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        margin: 5px;
        transition: var(--transition);
    }

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

    .menu-toggle.toggle span:nth-child(2) {
        opacity: 0;
    }

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

    .hero h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .price-grid { grid-template-columns: 1fr; }
    .appointment-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .appointment-map { margin-top: 30px; }
    .results-grid-main { grid-template-columns: 1fr; }
    .insta-grid { grid-template-columns: repeat(2, 1fr); }
    .review-card { width: min(350px, 90vw); }
    .appointment-section { background-attachment: scroll; }
    .footer-grid { grid-template-columns: 1fr; }
    .nav-cta { display: none; }
}

/* Instagram Modal Styles */
.insta-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.insta-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border-radius: 15px;
    width: 100%;
    max-width: 550px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #333;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2100;
}

.close-modal:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .insta-modal-content {
        max-width: 100%;
    }
}
/* Scroll Story Styles */
.scroll-story {
    height: 120vh;
    background: #000;
    position: relative;
    overflow: hidden;
}

.story-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #1a1a1a 0%, #000 100%);
}

.story-content {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.golden-drop {
    font-size: 80px;
    color: var(--primary-color);
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    z-index: 10;
}

.story-text-wrap {
    position: relative;
    height: 100px;
    width: 100%;
}

.story-title {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    font-family: 'Playfair Display', serif;
    color: #fff;
    opacity: 0;
    transform: translateY(50px);
    margin: 0;
}

@media (max-width: 768px) {
    .golden-drop { font-size: 50px; }
}
