/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    --primary-color: #D9C589;
    /* Rose Gold */
    --primary-light: #F8F5EC;
    --primary-dark: #B09F67;
    --accent-gold: #D4AF37;
    /* Gold */
    --gold-light: #F4E1A1;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4e1a1 50%, #b38728 100%);
    --bg-color: #FDFBF7;
    /* Alabaster */
    --bg-light: #FFFFFF;
    --text-main: #2A2A2A;
    --text-light: #5A5A5A;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

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

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-main);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

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

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.title-separator {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin-bottom: 30px;
}

.title-separator-center {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto 30px auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary,
.btn-appointment {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #1a1a1a;
    border: none;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    color: #000;
}

.btn-appointment {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
}

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

/* WhatsApp Button Premium Gold */
.btn-whatsapp {
    background: var(--gold-gradient);
    color: #1a1a1a !important;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.25);
    opacity: 0.9;
}

.btn-whatsapp i {
    font-size: 1.1rem;
    color: inherit;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0; /* Slightly larger padding at the top */
    background-color: transparent; /* Transparent when at the very top */
    z-index: 1000;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar--scrolled {
    padding: 15px 0;
    background-color: rgba(253, 251, 247, 0.95); /* Cream/White when scrolled */
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.navbar--hidden {
    transform: translateY(-100%) !important;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 1px;
}

.logo span {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--accent-gold);
    /* Fallback */
    font-style: italic;
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .nav-links {
        position: static;
        transform: none;
    }
}

.nav-links a:not([class*="btn"]) {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a:not([class*="btn"]):hover {
    color: var(--accent-gold);
}

.nav-links a:not([class*="btn"])::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:not([class*="btn"]):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    animation: zoomIn 10s linear infinite forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(253, 251, 247, 0.9) 0%, rgba(253, 251, 247, 0.6) 50%, rgba(253, 251, 247, 0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    animation: fadeIn 1.5s ease-out;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-main);
}

.hero-content h1 span {
    display: block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--accent-gold);
    /* Fallback */
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

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

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

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    z-index: 1;
}

.about-image {
    position: relative;
    z-index: 2;
    background-color: var(--primary-light);
    height: 500px;
    width: 100%;
    overflow: hidden;
}

.bg-pattern {
    width: 100%;
    height: 100%;
    background: url('../images/about.png') center/cover no-repeat;
    transition: transform 0.5s ease;
}

.about-image:hover .bg-pattern {
    transform: scale(1.05);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--bg-color);
    padding: 40px 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 3px solid var(--primary-color);
}

.service-img {
    width: 100%;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    color: #fff;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
}

/* ==========================================================================
   Contact Banner
   ========================================================================== */
.contact-banner {
    background-color: var(--primary-light);
    position: relative;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.3;
}

.contact-banner .container {
    position: relative;
    z-index: 2;
}

.contact-info-boxes {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.info-box {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-box h4 {
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 10px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: #1A1A1A;
    color: white;
    padding: 60px 0 20px 0;
    text-align: center;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-brand h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-brand span {
    color: var(--primary-color);
    font-style: italic;
}

.footer-brand p {
    color: #AAAAAA;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: #777777;
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }

    h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(253, 251, 247, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .hero {
        text-align: center;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(253, 251, 247, 0.9) 0%, rgba(253, 251, 247, 0.8) 100%);
    }

    .hero-content {
        margin: 0 auto;
    }

    .title-separator {
        margin: 0 auto 30px auto;
    }

    .about-text {
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   New Sections Styling
   ========================================================================== */

/* Why Us Modern */
.why-us {
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--primary-light) 100%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

.why-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(176, 159, 103, 0.05);
    line-height: 1;
    z-index: 0;
    transition: var(--transition);
}

.why-card:hover .why-number {
    color: rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.why-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 45px 25px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(176, 159, 103, 0.1);
    border-color: var(--primary-color);
}

.why-card:hover h4,
.why-card:hover p {
    color: var(--text-main);
}

.why-icon-box {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.why-card:hover .why-icon-box {
    transform: rotateY(180deg);
    background: var(--gold-gradient);
}

.why-icon-box i {
    font-size: 2rem;
    color: var(--accent-gold);
    /* Fallback */
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.why-card:hover .why-icon-box i {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.why-card h4,
.why-card p,
.why-icon-box {
    position: relative;
    z-index: 1;
}

.why-card h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
    transition: var(--transition);
}

/* Testimonials Modern */
.testimonials {
    background: radial-gradient(circle at top right, var(--primary-light) 0%, var(--bg-color) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: var(--gold-gradient);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(176, 159, 103, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card::after {
    content: '\f10e';
    /* fa-quote-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: var(--accent-gold);
    opacity: 0.1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--accent-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 25px;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h5 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.phone-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.phone-frame {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 50px;
    padding: 12px;
    border: 12px solid #1a1a1a;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #1a1a1a;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.insta-header {
    padding: 15px;
    border-bottom: 1px solid #efefef;
    text-align: center;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 5;
}

.insta-logo {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-style: italic;
    font-size: 1.2rem;
}

.insta-profile {
    padding: 15px;
}

.insta-top {
    display: flex;
    align-items: center;
    gap: 15px;
}

.insta-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    padding: 2px;
    flex-shrink: 0;
}

.insta-avatar img,
.insta-avatar .avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    background-color: #eee;
}

.insta-stats-row {
    display: flex;
    gap: 10px;
    flex: 1;
    justify-content: space-around;
}

.insta-bio {
    padding: 15px 0;
}

.insta-actions {
    display: flex;
    gap: 5px;
    position: relative;
    z-index: 10;
}

.insta-btn {
    flex: 1;
    padding: 8px 0;
    border-radius: 5px;
    border: 1px solid #dbdbdb;
    background: #fff;
    font-weight: 600;
    font-size: 0.8rem;
}

.btn-follow {
    background: #0095f6;
    color: #fff;
    border: none;
}

/* Instagram Profile Styles */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    padding: 2px;
}

.insta-post {
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
}

.insta-tabs {
    display: flex;
    border-top: 1px solid #efefef;
    padding: 10px 0;
}

.insta-tabs i {
    flex: 1;
    text-align: center;
    color: #8e8e8e;
    font-size: 1.2rem;
}

.insta-tabs i:first-child {
    color: #262626;
}

/* Instagram Showcase Modern */
.instagram-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.instagram-text {
    flex: 1;
    min-width: 300px;
}

/* About Section Ultra Premium */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--primary-light) 100%);
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.about-content {
    position: relative;
    padding-right: 20px;
}

.about-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.btn-whatsapp i {
    font-size: 1.1rem;
    color: inherit;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-main);
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-image {
    position: relative;
    padding: 20px;
}

.about-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 40px 100px 40px 100px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(176, 159, 103, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.glass-decoration {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gold-accent-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 250px;
    height: 250px;
    border: 2px solid var(--accent-gold);
    border-radius: 40px;
    z-index: 1;
    opacity: 0.3;
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-image img { height: 400px; }
}

/* ==========================================================================
   Modern Modal & Review System
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    display: none; /* VarsayÄ±lan olarak gizli */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    padding: 50px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .glass-card {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
    opacity: 0.5;
    transition: var(--transition);
}

.close-modal:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 10px;
    margin: 25px 0;
}

.star-rating input { display: none; }

.star-rating label {
    font-size: 2.5rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--accent-gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.form-group { margin-bottom: 20px; }

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.5);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: white;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}
/* Booking System Modern Styles */
.booking-container {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 50px !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-main);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group label i {
    color: var(--accent-gold);
    margin-right: 5px;
}

.form-group select,
.form-group input[type="date"],
.form-group input[type="time"] {
    width: 100%;
    padding: 15px 20px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.8);
    font-family: inherit;
    appearance: none;
    cursor: pointer;
    transition: var(--transition);
}

.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: white;
}

/* Footer Contact Info Strip */
.footer-contact-strip {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.contact-item:hover {
    color: white;
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .booking-container { padding: 30px !important; }
    .footer-contact-strip { gap: 20px; }
}
/* ==========================================================================
   Instagram Showcase Refined
   ========================================================================== */
.instagram-showcase {
    background: #fff;
    padding: 120px 0;
}

.instagram-container {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.instagram-text {
    flex: 1;
    min-width: 300px;
}

.instagram-visual {
    flex: 1.8;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    min-width: 0; /* Critical for flex child overflow */
}

/* Phone Mockup */
.phone-mockup {
    width: 280px;
    min-width: 280px;
    background: #fff;
    border: 12px solid #1a1a1a;
    border-radius: 40px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.15);
    overflow: hidden;
    position: relative;
}

.phone-content {
    background: #fff;
    height: 100%;
}

.insta-profile-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.insta-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    padding: 3px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.insta-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff;
}

.insta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 15px;
    border-top: 1px solid #eee;
}

.stat-item span {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
}

.stat-item small { color: #888; font-size: 0.7rem; }

/* Reels Grid Fixed */
.reels-column {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 20px;
    align-content: start;
}

.reel-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: var(--transition);
    cursor: pointer;
    height: fit-content;
}

.reel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.reel-thumb {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-overlay {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.reel-info {
    padding: 15px;
}

.reel-info span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.reel-info small { color: #999; font-size: 0.75rem; }

@media (max-width: 1200px) {
    .instagram-container {
        gap: 40px;
    }
    .instagram-visual {
        flex-direction: column;
        width: 100%;
    }
}

@media (max-width: 992px) {
    .instagram-container {
        flex-direction: column;
    }
    .instagram-text {
        text-align: center;
    }
    .instagram-text .section-header .title-separator {
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 768px) {
    .instagram-visual {
        flex-direction: column;
        gap: 40px;
    }
    .reels-column {
        padding-top: 0; 
        width: 100%; 
        grid-template-columns: 1fr; 
    }
}
/* ==========================================================================
   Luxury Multi-Column Footer
   ========================================================================== */
footer {
    background: #0a0a0a;
    color: #eee;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

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

.footer-col h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-gradient);
    color: #000;
    transform: translateY(-3px);
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #aaa;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--accent-gold);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.footer-bottom .agency-credit {
    font-weight: 600;
    color: #888;
}

.footer-bottom .agency-credit span {
    color: var(--accent-gold);
}

@media (max-width: 1200px) {
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
/* ==========================================================================
   Ultra-Realistic iPhone Mockup
   ========================================================================== */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 50px;
    border: 10px solid #1a1a1a;
    position: relative;
    box-shadow: 
        0 50px 100px rgba(0,0,0,0.3),
        inset 0 0 15px rgba(255,255,255,0.1);
    overflow: visible; /* Butonlar iÃ§in gÃ¶rÃ¼nÃ¼r kalsÄ±n */
}

/* Dynamic Island (Notch) */
.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 25px;
    background: #000;
    border-radius: 20px;
    z-index: 100;
}

/* Side Buttons */
.phone-mockup::after {
    content: '';
    position: absolute;
    left: -13px;
    top: 100px;
    width: 3px;
    height: 80px;
    background: #1a1a1a;
    box-shadow: 
        0 100px 0 #1a1a1a, /* Volume Buttons */
        313px 20px 0 #1a1a1a; /* Power Button */
    border-radius: 3px 0 0 3px;
}

.phone-content {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Screen Reflection Effect */
.phone-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
    pointer-events: none;
    z-index: 10;
}

/* Home Indicator Bar */
.home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(0,0,0,0.1);
    border-radius: 10px;
    z-index: 50;
}

/* Instagram Profile Refinements */
.insta-profile-header {
    padding: 40px 20px 20px;
    text-align: center;
}

.insta-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    padding: 4px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.insta-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

.insta-stats {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin: 15px 0;
}

.stat-item strong {
    display: block;
    font-size: 1.1rem;
    color: #000;
}

.stat-item small {
    color: #999;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* ==========================================================================
   FAQ Section Styles
   ========================================================================== */
.faq {
    background-color: var(--bg-color);
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(217, 197, 137, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(217, 197, 137, 0.1);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0;
    font-family: var(--font-body);
    color: var(--text-main);
}

.faq-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.8rem;
    transition: transform 0.4s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background: #fafafa;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Active State */
.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(217, 197, 137, 0.15);
}

.faq-item.active .faq-question {
    background: var(--primary-light);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Large enough to fit content */
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Instagram Phone Video Player
   ========================================================================== */
.phone-video-overlay {
    position: absolute;
    top: 40px; /* Below top bar */
    left: 0;
    width: 100%;
    height: calc(100% - 40px);
    background: #000;
    z-index: 100;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.phone-video-overlay.active {
    display: flex;
}

.phone-video-overlay video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.close-phone-video {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 110;
    transition: var(--transition);
}

.close-phone-video:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.grid-video-trigger {
    cursor: pointer;
    transition: var(--transition);
}

.grid-video-trigger:hover {
    opacity: 0.8;
}

/* ==========================================================================
   Small Mobile Tweaks (max-width: 480px)
   ========================================================================== */
@media (max-width: 480px) {
    .navbar .btn-whatsapp {
        font-size: 0; /* Hides the text */
        padding: 10px 12px;
        gap: 0;
    }
    .navbar .btn-whatsapp i {
        font-size: 1.2rem;
        margin: 0;
    }
    .logo {
        font-size: 1.4rem;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .about-content h2 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Mobile Touch Hover Fixes
   ========================================================================== */
@media (max-width: 768px) {
    /* Hizmetlerimiz kartlarında mobilde büyüme efektini iptal et */
    .service-card:hover .service-img img {
        transform: none !important;
    }
    .service-card:hover {
        transform: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
        border-bottom: 3px solid transparent !important;
    }
    .service-card:hover .service-icon {
        background: var(--gold-gradient) !important;
        color: #fff !important;
    }
    
    /* Hizmet resimlerinin aşırı uzun durmaması için mobilde biraz kısalt */
    .service-img {
        height: auto !important; 
        aspect-ratio: 4/5; /* Portrait formatı için yüksekliği otomatik ayarla */
    }
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: -150%;
    left: 20px;
    z-index: 99999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-width: 450px;
    width: calc(100% - 40px);
    transition: bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cookie-banner.show {
    bottom: 20px;
}

.cookie-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: -5px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 8px;
}

.cookie-text a {
    font-size: 0.85rem;
    color: var(--accent-gold);
    text-decoration: underline;
    font-weight: 600;
}

.btn-cookie {
    background: var(--gold-gradient);
    color: #1a1a1a;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    width: 100%;
}

.btn-cookie:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 576px) {
    .cookie-banner {
        left: 10px;
        width: calc(100% - 20px);
    }
    .cookie-banner.show {
        bottom: 10px;
    }
}
