/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo h1 {
    background: linear-gradient(135deg, #ff6b9d, #c44569, #ff6b9d);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ff6b9d; /* Fallback color */
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(255, 107, 157, 0.3);
    position: relative;
    display: inline-block;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
    .nav-logo h1 {
        background: none;
        color: #ff6b9d;
        text-shadow: 
            0 0 10px rgba(255, 107, 157, 0.5),
            0 0 20px rgba(255, 107, 157, 0.3),
            0 2px 4px rgba(255, 107, 157, 0.3);
    }
}

.nav-logo h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b9d, transparent);
    opacity: 0.6;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.footer-logo {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer-logo h3 {
    background: linear-gradient(135deg, #ff6b9d, #c44569, #ff6b9d);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #ff6b9d; /* Fallback color */
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(255, 107, 157, 0.3);
    display: inline-block;
}

/* Fallback for footer logo */
@supports not (-webkit-background-clip: text) {
    .footer-logo h3 {
        background: none;
        color: #ff6b9d;
        text-shadow: 
            0 0 10px rgba(255, 107, 157, 0.5),
            0 0 20px rgba(255, 107, 157, 0.3),
            0 2px 4px rgba(255, 107, 157, 0.3);
    }
}

.footer-logo-img {
    height: 120px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b9d;
}

.nav-campaign {
    animation: pulse 2s ease-in-out infinite;
    font-weight: 600;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.btn-reserv {
    background: #ff6b9d;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.btn-reserv:hover {
    background: #e55a87;
}

/* Campaign Banner */
.campaign-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #8b9fef 25%, #667eea 50%, #8b9fef 75%, #667eea 100%);
    background-size: 200% 200%;
    animation: gradientMove 4s ease infinite;
    color: white;
    z-index: 999;
    margin-top: 120px;
    padding-top: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    overflow: hidden;
}

.campaign-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.campaign-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.8rem 1.5rem;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.campaign-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    animation: bounce 1.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.1);
    }
}

.campaign-text {
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
    flex: 1;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.campaign-text strong {
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.campaign-link {
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    flex-shrink: 0;
    white-space: nowrap;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.campaign-link:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.campaign-link i {
    transition: transform 0.3s ease;
}

.campaign-link:hover i {
    transform: translateX(5px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 80px 0 80px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #ff6b9d;
    color: white;
}

.btn-primary:hover {
    background: #e55a87;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-secondary:hover {
    background: #333;
    color: white;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 3rem;
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.service-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-content ul {
    list-style: none;
}

.service-content li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-content li:before {
    content: "✓";
    color: #ff6b9d;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Benefits Detailed Section */
.benefits-detailed {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.benefits-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-detail-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-detail-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.benefit-detail-card p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 2rem;
}

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

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ff6b9d;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

.gallery-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.gallery-slider {
    overflow: hidden;
    border-radius: 20px;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.gallery-item {
    min-width: calc(33.333% - 14px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    flex-shrink: 0;
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    font-weight: 600;
    font-size: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ff6b9d;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: #ff6b9d;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 0;
}

.gallery-nav.next {
    right: 0;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: #ff6b9d;
    width: 30px;
    border-radius: 6px;
}

/* Reservation Section */
.reservation {
    padding: 80px 0;
    background: #f8f9fa;
}

.reservation-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b9d;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff6b9d;
    margin-top: 0.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-map {
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    max-height: 400px;
    border: none;
    border-radius: 15px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b9d;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b9d;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff6b9d;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

.footer-bottom a {
    color: #ff6b9d;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Temporarily hide About section */
#hakkimizda {
    display: none !important;
}

/* Special Prices Section - New Design */
.special-prices {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef5f8 0%, #fff 100%);
}

.pricing-hero {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

.pricing-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.pricing-subtitle {
    background: linear-gradient(135deg, #ff6b9d, #c44569, #ff6b9d);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #333; /* Fallback color */
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(255, 107, 157, 0.3);
    position: relative;
    display: inline-block;
}

/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
    .pricing-subtitle {
        background: none;
        color: #333;
        text-shadow: 
            0 0 10px rgba(255, 107, 157, 0.5),
            0 0 20px rgba(255, 107, 157, 0.3),
            0 2px 4px rgba(255, 107, 157, 0.3);
    }
}

.pricing-subtitle::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b9d, transparent);
    opacity: 0.6;
}

.pricing-note {
    color: #667eea;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.pricing-period {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.period-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: center;
}

.period-badge {
    display: block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.period-badge.week {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
}

.period-badge.weekend {
    background: linear-gradient(135deg, #6b9dff, #8faaff);
    color: white;
}

.period-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Konsept Cards Grid */
.konsept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(371px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.konsept-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #ff6b9d;
}

.konsept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 157, 0.2);
}

.konsept-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.konsept-header h4 {
    font-size: 1.3rem;
    color: #333;
    font-weight: 700;
    margin: 0;
}

.konsept-price {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(255, 107, 157, 0.3);
}

.konsept-price.blue {
    background: linear-gradient(135deg, #6b9dff, #4a7fd9);
}

.konsept-price.purple {
    background: linear-gradient(135deg, #b76bff, #9347d9);
}

.konsept-price.orange {
    background: linear-gradient(135deg, #ff9b6b, #ff7733);
}

.konsept-description {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Annual Package */
.annual-package {
    background: linear-gradient(135deg, #e8f8f5, #d1f2eb);
    border: 3px solid #1abc9c;
    border-radius: 20px;
    padding: 35px;
    margin: 40px 0;
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.2);
}

.annual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.annual-header h3 {
    font-size: 1.8rem;
    color: #333;
    font-weight: 700;
    margin: 0;
}

.annual-price {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(26, 188, 156, 0.3);
}

.annual-tagline {
    color: #16a085;
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 20px;
}

.annual-features {
    list-style: none;
    padding: 0;
}

.annual-features li {
    padding: 12px 0;
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.annual-features li i {
    color: #1abc9c;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Session Duration */
.session-duration {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.session-duration i {
    font-size: 2rem;
    color: #ff6b9d;
}

.session-duration p {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

/* Pricing Footer Text */
.pricing-footer-text {
    text-align: center;
    margin: 40px 0;
    color: #666;
}

.pricing-footer-text p {
    margin: 10px 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.pricing-footer-text .tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6b9d;
}

/* Contact Info in Pricing */
.contact-info-pricing {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-item-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.contact-item-pricing i {
    font-size: 1.5rem;
    color: #ff6b9d;
}

.contact-item-pricing a {
    color: #ff6b9d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item-pricing a:hover {
    color: #c44569;
}

.contact-item-pricing span {
    font-size: 0.95rem;
}

/* Responsive Design for Pricing Section */
@media (max-width: 968px) {
    .pricing-main-title {
        font-size: 2rem;
    }

    .pricing-subtitle {
        font-size: 1.6rem;
    }

    .konsept-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .annual-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .special-prices {
        padding: 60px 0;
    }

    .pricing-logo {
        width: 110px;
        height: 110px;
        margin-bottom: 1.5rem;
    }

    .pricing-main-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .pricing-subtitle {
        font-size: 1.5rem;
        padding: 12px 28px;
        border-radius: 12px;
    }

    .period-badge {
        padding: 12px 24px;
        font-size: 1.05rem;
        min-height: 48px;
        border-radius: 12px;
    }

    .konsept-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .konsept-card {
        padding: 2rem 1.5rem;
    }

    .konsept-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .konsept-header h4 {
        font-size: 1.3rem;
    }

    .konsept-price {
        padding: 10px 20px;
        font-size: 1.05rem;
    }

    .annual-package {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin-top: 2rem;
    }

    .annual-header h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .annual-price {
        font-size: 1.4rem;
        padding: 12px 28px;
        border-radius: 12px;
    }

    .session-item {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .contact-info-pricing {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        margin-top: 2rem;
    }

    .contact-item-pricing {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .contact-item-pricing i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .special-prices {
        padding: 50px 0;
    }

    .pricing-logo {
        width: 100px;
        height: 100px;
    }

    .pricing-main-title {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .pricing-subtitle {
        font-size: 1.3rem;
        padding: 10px 24px;
    }

    .period-badge {
        padding: 10px 20px;
        font-size: 1rem;
        min-height: 44px;
    }

    .konsept-card {
        padding: 1.75rem 1.25rem;
        border-radius: 15px;
    }

    .konsept-header h4 {
        font-size: 1.2rem;
    }

    .konsept-price {
        font-size: 1rem;
        padding: 8px 18px;
        border-radius: 8px;
    }

    .annual-package {
        padding: 1.75rem 1.25rem;
    }

    .annual-header h3 {
        font-size: 1.3rem;
    }

    .annual-price {
        font-size: 1.2rem;
        padding: 10px 24px;
    }

    .session-duration {
        flex-direction: column;
        gap: 0.75rem;
    }

    .session-item {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .session-item i {
        font-size: 1.1rem;
    }

    ul li {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0.75rem 0;
    }
}

/* Responsive Design */
@media (min-width: 1200px) {
    .contact-content {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .contact-map {
        max-width: 500px;
        margin-left: auto;
    }
    
    .contact-map iframe {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hamburger {
        display: flex;
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }
    
    .nav-logo h1 {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
    }
    
    .logo-img {
        height: 60px;
        max-width: 65px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2.5rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 998;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .campaign-banner {
        margin-top: 60px;
    }
    
    .campaign-banner-content {
        padding: 0.7rem 1rem;
        gap: 0.6rem;
        flex-wrap: wrap;
    }
    
    .campaign-text {
        font-size: 0.85rem;
        white-space: normal;
        flex: 1 1 100%;
    }
    
    .campaign-text strong {
        font-size: 0.9rem;
    }
    
    .campaign-icon {
        font-size: 1.3rem;
    }
    
    .campaign-link {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        padding: 16px 24px;
        font-size: 1.1rem;
        min-height: 48px;
        transition: all 0.3s ease;
    }

    .nav-list a:hover {
        background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(196, 69, 105, 0.1));
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-height: 48px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
        min-width: 140px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 14px;
        min-height: 48px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .contact-map {
        margin-top: 2rem;
    }

    .contact-map iframe {
        height: 280px;
        border-radius: 15px;
    }

    .gallery-item {
        min-width: 100%;
    }

    .gallery-slider-container {
        padding: 0 55px;
    }

    .gallery-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .gallery-dots {
        margin-top: 24px;
        gap: 10px;
    }

    .gallery-dot {
        width: 10px;
        height: 10px;
    }

    .section-header h2 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .section-header h2 {
        font-size: 1.9rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .reservation-form {
        padding: 2rem 1.25rem;
        border-radius: 15px;
    }

    .btn {
        padding: 1rem 1.75rem;
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
        border-radius: 12px;
    }

    .contact-map iframe {
        height: 250px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .gallery-slider-container {
        padding: 0 45px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-item img {
        height: 280px;
        border-radius: 12px;
    }

    .gallery-caption h3 {
        font-size: 1.1rem;
    }

    .nav-logo h1 {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 55px;
        max-width: 60px;
    }

    .stat-item {
        padding: 1.75rem 1.25rem;
        min-width: 130px;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-info {
        gap: 2rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-item i {
        font-size: 2rem;
    }

    .contact-item h3 {
        font-size: 1.2rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success/Error Messages */
.message {
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-weight: 500;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Temporarily hide About section */
#hakkimizda {
    display: none !important;
}