* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37;
    --primary-dark: #b8941f;
    --secondary-color: #2c3e50;
    --accent-color: #8fbc8f;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-muted: #95a5a6;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --cream: #faf8f5;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --border-radius: 15px;
    --border-radius-small: 8px;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-secondary);
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-info {
    display: inline-block;
    padding: 15px 30px;
    border-radius: var(--border-radius-small);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-info {
    background: var(--light-bg);
    color: var(--text-light);
    cursor: default;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-light);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.pexels.com/photos/3757942/pexels-photo-3757942.jpeg?auto=compress&cs=tinysrgb&w=1000') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 248, 245, 0.9) 0%, rgba(248, 249, 250, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 120px 20px 60px;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-bg) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.text-center {
    text-align: center;
}

/* Services Full Page */
.services-full {
    padding: 80px 0;
    background: var(--white);
}

.service-card-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
}

.service-card-full:hover {
    box-shadow: var(--shadow);
}

.service-card-full:nth-child(even) {
    direction: rtl;
}

.service-card-full:nth-child(even) .service-content {
    direction: ltr;
}

.service-card-full .service-image {
    height: 350px;
}

.service-card-full .service-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-benefits {
    list-style: none;
    margin: 20px 0;
}

.service-benefits li {
    padding: 5px 0;
    color: var(--text-light);
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-bg);
}

.duration {
    color: var(--text-muted);
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
}

/* About Story */
.about-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    color: var(--text-dark);
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.story-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Mission Vision */
.mission-vision {
    padding: 80px 0;
    background: var(--light-bg);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
}

.mv-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mv-card p {
    line-height: 1.7;
}

/* Values */
.values {
    padding: 80px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* Team */
.team {
    padding: 80px 0;
    background: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.team-image {
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    padding: 30px;
}

.team-content h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
}

.team-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px !important;
}

/* Certificates */
.certificates {
    padding: 80px 0;
    background: var(--white);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.certificate-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--cream);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.certificate-card:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: var(--white);
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.certificate-card h4 {
    margin-bottom: 10px;
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: var(--white);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    margin-bottom: 15px;
}

.contact-card small {
    opacity: 0.8;
    font-style: italic;
}

/* Location */
.location {
    padding: 80px 0;
    background: var(--light-bg);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.transport-info {
    margin-top: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius-small);
    border-left: 4px solid var(--primary-color);
}

.transport-info h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.transport-info ul {
    list-style: none;
}

.transport-info li {
    padding: 8px 0;
    color: var(--text-light);
}

.location-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Appointment Info */
.appointment-info {
    padding: 80px 0;
    background: var(--white);
}

.appointment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.appointment-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.appointment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.appointment-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.appointment-card h3 {
    margin-bottom: 15px;
}

.appointment-card p {
    margin-bottom: 25px;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--cream);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.faq-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.faq-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-card p {
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--light-bg);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-brand p {
    color: #bbb;
    font-size: 1.1rem;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    color: #bbb;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #bbb;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3.2rem; }
    .page-header h1 { font-size: 3rem; }
    h2 { font-size: 2.4rem; }
    
    .story-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-card-full {
        grid-template-columns: 1fr;
    }
    
    .service-card-full:nth-child(even) {
        direction: ltr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; }
    .page-header h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-content,
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card-full .service-content {
        padding: 30px 25px;
    }
    
    .testimonials-grid,
    .contact-grid,
    .appointment-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 15px 50px;
    }
    
    .hero h1 { font-size: 2.2rem; }
    .page-header h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    
    .features,
    .services-preview,
    .testimonials,
    .about-story,
    .mission-vision,
    .values,
    .team,
    .certificates,
    .contact-info,
    .location,
    .appointment-info,
    .faq,
    .cta-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .feature-card,
    .testimonial-card,
    .value-card,
    .contact-card,
    .appointment-card {
        padding: 30px 20px;
    }
    
    .service-card-full .service-content {
        padding: 25px 20px;
    }
    
    .mv-card {
        padding: 40px 25px;
    }
}

/* Smooth animations */
html {
    scroll-behavior: smooth;
}

img {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Hover effects */
.service-card,
.feature-card,
.testimonial-card,
.value-card,
.team-card,
.contact-card,
.appointment-card,
.faq-card {
    position: relative;
    overflow: hidden;
}

.service-card::before,
.feature-card::before,
.testimonial-card::before,
.value-card::before,
.team-card::before,
.contact-card::before,
.appointment-card::before,
.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before,
.feature-card:hover::before,
.testimonial-card:hover::before,
.value-card:hover::before,
.team-card:hover::before,
.contact-card:hover::before,
.appointment-card:hover::before,
.faq-card:hover::before {
    left: 100%;
}
    .fixed-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }
    
    .action-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 180px;
        padding: 12px 15px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: bold;
        color: white;
        transition: all 0.3s;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        font-size: 0.9rem;
    }
    
    /* ARA BUTONU */
    .call-btn {
        background: #25D366;
        border: 2px solid #128C7E;
    }
    .call-btn:hover {
        background: #128C7E;
        transform: translateY(-3px) scale(1.05);
    }
    
    /* INSTAGRAM BUTONU */
    .ig-btn {
        background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #E1306C);
        border: 2px solid #833AB4;
    }
    .ig-btn:hover {
        transform: translateY(-3px) scale(1.05);
    }
    
    /* İKONLAR */
    .action-btn i {
        margin-right: 8px;
        font-size: 1rem;
    }