/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Stilleri */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.top-bar {
    background: #ff8c00; /* Koyu turuncu */
    color: white;
    width: 1900px;
    height: 30px;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    border-bottom: 1px solid #e8e4e0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.top-bar-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.location-info {
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    z-index: 10;
}

.location-info i {
    font-size: 16px;
    color: white;
}

.contact-info {
    position: absolute !important;
    left: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 10;
}

.contact-info a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    font-size: 16px;
}

.contact-info a:hover {
    color: #f0f0f0;
}

.contact-info i {
    font-size: 16px;
    color: white;
}

.navbar {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff8c00, #ff4500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-wellness {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: #333;
}

.logo-bliss {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff8c00;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff8c00;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    color: #333;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: #ff8c00;
}

.book-appointment-btn {
    background: transparent;
    color: #333;
    padding: 12px 24px;
    border: 1px solid #333;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
}

.book-appointment-btn:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f8ff 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1544161512-6f99c7d77e7a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.15;
    filter: brightness(1.2) contrast(0.8);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.8) 50%, rgba(240, 248, 255, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.hero-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
    animation: fadeInDown 1s ease-out;
}

.hero-title {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.main-title {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitle {
    display: block;
    font-size: 24px;
    font-weight: 300;
    color: #7f8c8d;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-features .feature i {
    color: #ff8c00;
    font-size: 18px;
}

.hero-features .feature span {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
    min-width: 200px;
    justify-content: center;
}

.cta-button i {
    font-size: 18px;
}

.cta-button.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.cta-button.call {
    background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
    color: white;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-button:hover i {
    transform: scale(1.1);
}

.cta-button.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.cta-button.call:hover {
    background: linear-gradient(135deg, #ff4500 0%, #e63900 100%);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-features .feature i {
    color: #ff8c00;
    font-size: 18px;
    width: 20px;
}

.about-features .feature span {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 140, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 69, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.premium {
    border: 2px solid #ff8c00;
    position: relative;
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 140, 0, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-details {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.service-details .detail {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #ff8c00;
    font-weight: 500;
}

.service-details .detail i {
    font-size: 14px;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.service-footer .price {
    font-size: 24px;
    font-weight: 700;
    color: #ff8c00;
    font-family: 'Playfair Display', serif;
}

.btn-reserve {
    background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #25D366;
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-section, .services-section, .why-choose-section, .contact-cta-section {
        padding: 60px 0;
    }
    
    .about-text h2, .cta-content h2 {
        font-size: 28px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.featured {
    border: 3px solid #8B4513;
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.package-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
}

.package-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.package-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-price .price {
    font-size: 28px;
    font-weight: 700;
    color: #8B4513;
}

.package-price .original-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.package-image {
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-content {
    padding: 30px;
}

.package-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #333;
}

.package-features li i {
    color: #8B4513;
    font-size: 14px;
}

.package-cta {
    display: inline-block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.package-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
}

/* Special Offers */
.special-offers {
    padding: 80px 0;
    background: white;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    text-align: center;
    padding: 40px 30px;
    background: #f9f9f9;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.offer-icon i {
    font-size: 32px;
    color: white;
}

.offer-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.offer-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-cta {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.offer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
}

/* Gallery Filter */
.gallery-filter {
    padding: 40px 0;
    background: white;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid #8B4513;
    color: #8B4513;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #8B4513;
    color: white;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 69, 0, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-section .container {
    position: relative;
    z-index: 2;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 25px 25px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #f0f0f0;
    line-height: 1.4;
    opacity: 0.9;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-section {
        padding: 80px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }
    
    .gallery-item {
        aspect-ratio: 3/2;
    }
    
    .gallery-overlay {
        padding: 30px 20px 20px;
    }
    
    .gallery-content h3 {
        font-size: 18px;
    }
    
    .gallery-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 4/3;
    }
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: white;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    padding: 80px 40px;
    text-align: center;
    border-radius: 15px;
    position: relative;
}

.video-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.video-placeholder h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.video-placeholder p {
    font-size: 16px;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: #666;
}

.rating {
    display: flex;
    gap: 5px;
}

.rating i {
    color: #FFD700;
    font-size: 16px;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
}

.hours-list p {
    margin-bottom: 8px;
    text-align: left;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
}

.form-container p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
}

.map-container h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.map-placeholder {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
}

.map-placeholder i {
    font-size: 60px;
    color: #8B4513;
    margin-bottom: 20px;
}

.map-placeholder h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.map-placeholder p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.map-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(139, 69, 19, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    padding: 25px 30px;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin: 0;
}

.faq-question i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: white;
    color: #8B4513;
    border: 2px solid white;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.primary:hover {
    background: transparent;
    color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: #8B4513;
}

/* Footer */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Modern Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    color: #ff8c00;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 15px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) sepia(1) hue-rotate(180deg) saturate(0.5);
}

.footer-section ul {
    list-style: none;
    width: 100%;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
    position: relative;
    padding-left: 0;
    font-size: 15px;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #ff8c00;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff8c00;
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.footer-section .social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-section .social-links a {
    color: #cccccc;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.footer-section .social-links a:hover {
    color: #ff8c00;
    background: rgba(255, 140, 0, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #ff8c00;
    font-size: 18px;
    margin-top: 2px;
    min-width: 18px;
}

.contact-item div {
    flex: 1;
}

.contact-item span {
    display: block;
    color: #ff8c00;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.contact-item p {
    color: #cccccc;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 140, 0, 0.1);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #cccccc;
    margin: 0;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff8c00;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-section h3,
    .footer-section h4 {
        font-size: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
} 

/* Modern Services Section */
.modern-services {
    padding: 120px 0;
    background: #fefefe;
    position: relative;
    overflow: hidden;
}

.modern-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 140, 0, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 69, 0, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

.modern-services .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    color: #666;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.section-badge::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: #ff8c00;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: #ff8c00;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card-modern {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 140, 0, 0.08);
    height: 550px;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.2);
}

.service-card-modern.featured {
    background: linear-gradient(145deg, #fff8f0, #ffffff);
    border: 2px solid #ff8c00;
    position: relative;
}

.service-card-modern.featured::before {
    content: 'PREMIUM';
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ff8c00;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 140, 0, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f0f0f0;
    z-index: 0;
}

.service-card-modern:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: static;
    background: transparent;
    padding: 30px 25px 25px;
    color: #333;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-align: left;
}

.service-overlay p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.6;
    text-align: left;
    flex: 1;
}

.service-details {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto;
}

.service-details span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ff8c00;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 140, 0, 0.08);
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.service-details i {
    font-size: 12px;
}

/* Responsive Design for Modern Services */
@media (max-width: 768px) {
    .modern-services {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card-modern {
        padding: 30px 25px;
    }
    
    .service-card-modern.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
    
    .service-card-modern h3 {
        font-size: 20px;
    }
    
    .service-card-modern p {
        font-size: 13px;
    }
} 

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .nav-toggle {
        display: flex !important;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hero-title .main-title {
        font-size: 48px;
    }
    
    .hero-title .subtitle {
        font-size: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title .main-title {
        font-size: 36px;
    }
    
    .hero-title .subtitle {
        font-size: 18px;
    }
    
    .luxury-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .logo-img {
        height: 40px;
    }
} 

/* Responsive About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .about-text p {
        font-size: 15px;
    }
    
    .about-banner {
        order: -1;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 28px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .about-cta {
        padding: 14px 28px;
        font-size: 13px;
    }
} 

/* Responsive Services Page */
@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-details {
        padding: 30px 25px;
    }
    
    .service-details h3 {
        font-size: 24px;
    }
    
    .service-description {
        font-size: 15px;
    }
    
    .service-features {
        gap: 20px;
    }
    
    .service-price {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .service-price .price {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .service-details h3 {
        font-size: 22px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .service-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .book-button {
        padding: 10px 20px;
        font-size: 13px;
    }
} 

/* Services Preview Modern */
.services-preview {
    padding: 120px 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 140, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 69, 0, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

.services-preview .container {
    position: relative;
    z-index: 2;
}

.services-preview .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-preview .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 400;
    color: #ff8c00;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.services-preview .section-header p {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

.services-preview .services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

@media (min-width: 1200px) {
    .services-preview .services-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .services-preview .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

.services-preview .service-card-modern {
    background: white;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 140, 0, 0.05);
    height: 450px;
    display: flex;
    flex-direction: column;
}

.services-preview .service-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 140, 0, 0.2);
}

.services-preview .service-card-modern.featured {
    background: linear-gradient(145deg, #fff8f0, #ffffff);
    border: 2px solid #ff8c00;
    position: relative;
}

.services-preview .service-card-modern.featured::before {
    content: 'PREMIUM';
    position: absolute;
    top: 20px;
    right: 20px;
    color: #ff8c00;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 140, 0, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    z-index: 10;
}

.services-preview .service-image {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-preview .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.services-preview .service-card-modern:hover .service-image img {
    transform: scale(1.1);
}

.services-preview .service-overlay {
    position: static;
    background: transparent;
    padding: 30px 25px 25px;
    color: #333;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-preview .service-overlay h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-align: left;
}

.services-preview .service-overlay p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.6;
    text-align: left;
    flex: 1;
}

.services-preview .service-details {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto;
}

.services-preview .service-details span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ff8c00;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 140, 0, 0.08);
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.1);
}

.services-preview .service-details i {
    font-size: 12px;
}

.services-preview .service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 140, 0, 0.1);
}

.services-preview .service-price .price {
    font-size: 28px;
    font-weight: 700;
    color: #ff8c00;
    font-family: 'Playfair Display', serif;
}

.services-preview .book-button {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff8c00, #ff4500);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.services-preview .book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.services-preview .services-cta {
    text-align: center;
}

.services-preview .cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff8c00, #ff4500);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.3);
}

.services-preview .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.4);
}

/* Responsive Services Preview */
@media (max-width: 768px) {
    .services-preview {
        padding: 80px 0;
    }
    
    .services-preview .section-header h2 {
        font-size: 32px;
    }
    
    .services-preview .section-header p {
        font-size: 15px;
    }
    
    .services-preview .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-preview .service-card-modern {
        height: 400px;
    }
    
    .services-preview .service-image {
        height: 200px;
    }
    
    .services-preview .service-overlay {
        padding: 25px 20px 20px;
    }
    
    .services-preview .service-overlay h3 {
        font-size: 18px;
    }
    
    .services-preview .service-overlay p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .services-preview .section-header h2 {
        font-size: 28px;
    }
    
    .services-preview .service-card-modern {
        height: 380px;
    }
    
    .services-preview .service-overlay h3 {
        font-size: 16px;
    }
    
    .services-preview .service-overlay p {
        font-size: 12px;
    }
    
    .services-preview .cta-button {
        padding: 14px 28px;
        font-size: 13px;
    }
} 

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 1px solid rgba(255, 140, 0, 0.2);
    padding: 12px 0 8px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-bottom-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.mobile-bottom-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #cccccc;
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
    min-width: 60px;
    position: relative;
    z-index: 2;
}

.mobile-bar-item:hover {
    color: #ff8c00;
    transform: translateY(-2px);
}

.mobile-bar-item i {
    font-size: 20px;
    margin-bottom: 2px;
}

.mobile-bar-item span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* WhatsApp özel stil */
.mobile-bar-item[href*="wa.me"] {
    color: #25D366;
}

.mobile-bar-item[href*="wa.me"]:hover {
    color: #128C7E;
}

/* Telefon özel stil */
.mobile-bar-item[href*="tel:"] {
    color: #E74C3C;
}

.mobile-bar-item[href*="tel:"]:hover {
    color: #C0392B;
}

/* Arama özel stil */
.mobile-bar-item.search-toggle {
    color: #ff8c00;
}

.mobile-bar-item.search-toggle:hover {
    color: #ff4500;
}

/* Hizmetler özel stil */
.mobile-bar-item[href*="masajlar.html"] {
    color: #9B59B6;
}

.mobile-bar-item[href*="masajlar.html"]:hover {
    color: #8E44AD;
}

/* Responsive Mobile Bottom Bar */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
    }
    
    /* Footer için alt boşluk */
    .footer {
        padding-bottom: 100px;
    }
    
    /* Body için alt boşluk */
    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .mobile-bar-item {
        padding: 6px 8px;
        min-width: 50px;
    }
    
    .mobile-bar-item i {
        font-size: 18px;
    }
    
    .mobile-bar-item span {
        font-size: 9px;
    }
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 60px 0;
    }
    
    .hero-content .container {
        padding: 0 15px;
    }
    
    .main-title {
        font-size: 42px;
        line-height: 1.1;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-features {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .hero-features .feature {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        min-width: 250px;
        padding: 16px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        padding: 40px 0;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .hero-features .feature {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .cta-button {
        min-width: 200px;
        padding: 14px 25px;
        font-size: 14px;
    }
    
    .hero-badge {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    color: #cccccc;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Page */
.services-page {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.services-page .container {
    position: relative;
    z-index: 1;
}

.services-grid-large {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 400px 1fr;
    min-height: 300px;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-item.featured {
    border: 2px solid #ff8c00;
    position: relative;
}

.service-item.featured::before {
    content: 'PREMIUM';
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-details h3 {
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.service-description {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.service-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666666;
}

.service-features .feature i {
    color: #ff8c00;
    font-size: 0.8rem;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff8c00;
    font-family: 'Playfair Display', serif;
}

.book-button {
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
    color: white;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff8c00, #ff6b35);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.4);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ff8c00;
}

.cta-button.secondary:hover {
    background: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
    color: white;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-details {
        padding: 25px;
    }
    
    .service-details h3 {
        font-size: 1.5rem;
    }
    
    .service-price {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .services-page {
        padding: 60px 0;
    }
    
    .service-details {
        padding: 20px;
    }
    
    .service-features {
        gap: 10px;
    }
    
    .service-features .feature {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}