@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-color: #c5a085; /* Soft earth gold/bronze from the logo */
    --primary-dark: #a8846a;
    --secondary-color: #2c2c2c;
    --text-color: #444;
    --text-light: #888;
    --bg-white: #ffffff;
    --bg-off-white: #fcfaf8;
    --accent-soft: #f9f4f0;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 5px 20px rgba(0,0,0,0.03);
    --shadow-medium: 0 15px 45px rgba(197, 160, 133, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary-color);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Utilities --- */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
.gold-text { color: var(--primary-color); }

/* --- Header & Nav --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
}

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

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

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

.btn-nav {
    background: var(--secondary-color);
    color: white;
    padding: 14px 28px;
    border-radius: 0;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

.main-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100vh !important;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-slider .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    max-width: 1300px;
}

.hero-content {
    max-width: 700px;
    width: 90%;
    padding: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    text-align: center;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.hero-slider h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-slider h1 span {
    font-style: italic;
    color: var(--primary-color);
}

.hero-slider p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 40px;
    max-width: 550px;
    font-weight: 500;
    line-height: 1.6;
}

.hero-content {
    animation: fadeInUp 1.2s ease-out;
}

.hero-btns {
    display: flex;
    gap: 25px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-5px);
}

.btn-secondary {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 20px 45px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

/* Swiper Navigation & Pagination */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.2);
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem !important;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white !important;
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5 !important;
    width: 12px !important;
    height: 12px !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    opacity: 1 !important;
    width: 30px !important;
    border-radius: 6px !important;
}

@media (max-width: 768px) {
    .hero-slider h1 { font-size: 3rem; }
    .hero-content { padding: 40px; }
    .hero-btns { flex-direction: column; }
    .swiper-button-next, .swiper-button-prev { display: none !important; }
}

/* --- About Section --- */
.about {
    padding: 150px 0;
    background: var(--bg-white);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: var(--shadow-medium);
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 40px;
    text-align: center;
}

.about-experience h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 5px;
}

.about-experience p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 35px;
    line-height: 1.2;
}

/* --- Services Section --- */
.services {
    padding: 150px 0;
    background: var(--bg-off-white);
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: white;
    padding: 0;
    border-radius: 15px;
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

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

.service-card-content {
    padding: 30px;
    flex-grow: 1;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

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

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Why Choose Us --- */
.features {
    padding: 120px 0;
    background: var(--secondary-color);
    color: white;
}

.features h2 { color: white; margin-bottom: 60px; font-size: 3rem; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.feature-item h3 { color: var(--primary-color); margin-bottom: 15px; font-size: 1.4rem; }
.feature-item p { color: #ccc; font-size: 0.9rem; }

/* --- Testimonials --- */
.testimonials {
    padding: 150px 0;
    background: var(--bg-white);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card i {
    font-size: 3rem;
    color: var(--accent-soft);
    margin-bottom: 40px;
}

.testimonial-card p {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.testimonial-card h4 {
    font-family: var(--font-main);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- Price List --- */
.pricing {
    padding: 120px 0;
    background: var(--bg-white);
}

.price-list {
    max-width: 900px;
    margin: 0 auto;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.price-name { font-weight: 500; font-size: 1.1rem; }
.price-value { font-weight: 700; color: var(--primary-color); }

/* --- Team Section --- */
.team {
    padding: 120px 0;
    background: var(--bg-off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
}

.team-member i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* --- Floating WhatsApp --- */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

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

.faq-item {
    background: white;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    color: var(--text-light);
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 20px;
}

/* --- Contact & Footer --- */
.contact-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-box {
    background: var(--accent-soft);
    padding: 60px;
}

.contact-box h3 { font-size: 2rem; margin-bottom: 40px; }

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

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

.footer {
    background: #1a1a1a;
    color: white;
    padding: 100px 0 50px;
}

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

.footer h4 { color: white; margin-bottom: 30px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; }
.footer p { color: #999; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 15px; }
.footer ul a { color: #999; text-decoration: none; transition: var(--transition); }
.footer ul a:hover { color: var(--primary-color); }

.newsletter input {
    width: 100%;
    background: #222;
    border: 1px solid #333;
    padding: 15px;
    color: white;
    margin-bottom: 15px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 50px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* --- Responsive --- */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .btn-nav { display: none; }
    .hero h1 { font-size: 3rem; }
    .services-grid, .features-grid, .footer-grid { grid-template-columns: 1fr; }
}

/* --- Instagram Feed --- */
.instagram-feed {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.insta-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    border-radius: 10px;
}

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

.insta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(197, 160, 133, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.insta-overlay i {
    color: white;
    font-size: 2.5rem;
}

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

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

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

/* --- Floating WhatsApp Menu --- */
.whatsapp-menu-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsapp-main-btn {
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-menu-container:hover .whatsapp-main-btn {
    transform: scale(1.05) rotate(10deg);
}

.whatsapp-submenu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.whatsapp-menu-container:hover .whatsapp-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-submenu-item {
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.whatsapp-submenu-item.esenler-wa {
    background: #25d366;
}

.whatsapp-submenu-item.bayrampasa-wa {
    background: var(--primary-color);
}

.whatsapp-submenu-item:hover {
    transform: scale(1.1);
}

.wa-tooltip {
    position: absolute;
    right: 65px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.whatsapp-submenu-item:hover .wa-tooltip {
    opacity: 1;
}

.nav-appointment-btns {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .nav-appointment-btns {
        display: none !important;
    }
}

/* --- Elfsight Widget Custom Blending --- */
[class*="HeaderComponent"],
[class*="HeaderContainer"],
[class*="Header__Title"],
[class*="Header__Container"],
[class*="Header__"],
[class*="Header-"],
[class*="Branding"],
[class*="branding"],
.eapps-instagram-feed-posts-grid-load-more,
.es-load-more-button,
[class*="load-more-button"],
[class*="LoadMoreButton"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
}
