/* BDAesthetic Legacy - Dark Theme Styles */

:root {
    --primary-color: #E63946;
    --secondary-color: #1a1a1a;
    --accent-color: #E63946;
    --dark-color: #0d1117;
    --darker-color: #010409;
    --light-color: #f0f6fc;
    --text-color: #e6edf3;
    --text-muted: #8b949e;
    --border-color: #30363d;
    --card-bg: #161b22;
    --hover-bg: #21262d;
    --gradient-primary: linear-gradient(135deg, #E63946 0%, #ff6b6b 100%);
    --gradient-dark: linear-gradient(135deg, #0d1117 0%, #1a1a1a 100%);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-color);
    padding-top: 80px; /* Navbar height */
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Buttons */
.btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 14px 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #d62828 0%, #ff5252 100%);
}

.btn-accent {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

.btn-outline-light:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-success {
    background: linear-gradient(135deg, #25D366 0%, #4CAF50 100%);
    color: white;
    box-shadow: var(--shadow);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #1ea952 0%, #45a049 100%);
}

/* Navigation */
.navbar-modern {
    background: rgba(13, 17, 23, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    text-decoration: none;
}

.brand-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.3s ease;
    position: relative;
    color: var(--text-color) !important;
    padding: 8px 16px !important;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--accent-color) !important;
    background: rgba(230, 57, 70, 0.1);
    transform: translateY(-2px);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #4CAF50 100%) !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 10px 20px !important;
    margin-left: 10px;
    box-shadow: var(--shadow);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1ea952 0%, #45a049 100%) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: brightness(0.3) contrast(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(230, 57, 70, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero-text {
    padding: 3rem 2rem;
    background: rgba(22, 27, 34, 0.9);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    margin-right: 2rem;
}

.hero-slogan {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 20px;
    animation: fadeInSlide 1s ease-out;
}

.hero-slogan::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.text-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

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

.hero-image {
    position: relative;
    padding: 1rem;
    margin-left: 2rem;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    transition: all 0.4s ease;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.2;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.05); opacity: 0.4; }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--darker-color);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: auto;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.about-content {
    padding: 2rem;
}

.about-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
    background: var(--dark-color);
}

.package-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
    background: var(--hover-bg);
}

.package-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--hover-bg) 100%);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.5);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(230, 57, 70, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(230, 57, 70, 0.7);
    }
}

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.package-level {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-price {
    margin: 1rem 0;
}

.package-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.package-price .period {
    color: var(--text-muted);
    font-size: 1rem;
    margin-left: 0.25rem;
}

.package-features {
    flex: 1;
    padding: 1rem 0.5rem;
    text-align: left;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 30px;
    color: var(--text-muted);
    transition: color 0.3s ease;
    text-align: left;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.package-features li:hover {
    color: var(--text-color);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.package-footer .btn {
    font-size: 0.85rem;
    padding: 12px 20px;
}

/* Success Section */
.success-section {
    padding: 100px 0;
    background: var(--darker-color);
    display: none; /* Geçici olarak gizlendi - Fotoğraflar gelince display: block; yapılacak */
}

.success-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid var(--border-color);
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.before-after-container {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.before-after-image {
    display: flex;
    height: 100%;
}

.before-section, .after-section {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.before-section img, .after-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.before-after-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.before-label {
    background: rgba(220, 53, 69, 0.9);
}

.after-label {
    background: rgba(40, 167, 69, 0.9);
}

.success-content {
    padding: 2rem;
}

.success-content h4 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.success-stats {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(230, 57, 70, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(230, 57, 70, 0.15) 0%, transparent 50%);
}

.cta-content {
    background: rgba(22, 27, 34, 0.8);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-hover);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Sponsor Section */
.sponsor-section {
    background: var(--darker-color);
    padding: 100px 0;
}

.sponsor-logo img {
    max-height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.sponsor-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.sponsor-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.sponsor-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sponsor-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-weight: 500;
}

.sponsor-feature i {
    font-size: 1.2rem;
}

.offer-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.offer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.offer-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.offer-code {
    background: var(--hover-bg);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 2px dashed var(--accent-color);
}

.code-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.code-value {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.offer-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Footer */
.footer-new {
    background: var(--darker-color);
    margin-top: 4rem;
    position: relative;
}

.footer-content {
    background: var(--card-bg);
    padding: 4rem 0;
    position: relative;
}

.footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-brand h5 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links h6, .footer-contact h6 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-link {
    color: var(--text-muted) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    position: relative;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color) !important;
    transform: translateX(8px);
}

.footer-link:hover::before {
    width: 20px;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--hover-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    text-align: center;
    line-height: 50px;
    transition: all 0.3s ease;
    margin-right: 15px;
    color: var(--text-muted) !important;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white !important;
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 8px 0;
}

.footer-contact .contact-item i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-contact .contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    background: var(--darker-color);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.fountr-credit {
    margin-top: 0.5rem;
}

.fountr-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.fountr-text::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.4;
}

.fountr-text::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background: var(--accent-color);
    opacity: 0.4;
}

.fountr-text:hover {
    opacity: 0.8;
    color: var(--accent-color);
}

/* Back to Top Button */
.back-to-top-btn {
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.back-to-top-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.2rem;
}

.back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.fountr-credit {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.fountr-credit:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 2rem;
    }
    
    .hero-slogan {
        font-size: 0.95rem;
        letter-spacing: 2.5px;
        margin-top: 0.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-features {
        gap: 1rem;
    }
    
    .hero-text {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
        margin-right: 0;
    }
    
    .hero-image {
        margin-left: 0;
    }
    
    .hero-image img {
        height: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .package-card {
        padding: 2rem;
    }
    
    .footer-content {
        padding: 3rem 0;
    }
    
    .footer-new {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 3rem;
    }
    
    .hero-slogan {
        font-size: 0.85rem;
        letter-spacing: 2px;
        padding-left: 15px;
        margin-top: 1rem;
    }
    
    .hero-slogan::before {
        width: 8px;
        height: 8px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-content {
        padding: 1.5rem 1rem;
    }
    
    .cta-title {
        font-size: 1.3rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .package-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .success-content {
        padding: 1.5rem;
    }
    
    .footer-content {
        padding: 2rem 0;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        line-height: 45px;
        margin-right: 10px;
    }
    
    .fountr-text {
        font-size: 0.7rem;
    }
    
    .fountr-text::before,
    .fountr-text::after {
        width: 6px;
        left: -12px;
        right: -12px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--dark-color);
}

.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--card-bg);
    color: var(--text-color);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    border-radius: 15px !important;
}

.accordion-button:not(.collapsed) {
    background: var(--hover-bg);
    color: var(--accent-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(230, 57, 70, 0.25);
}

.accordion-body {
    background: var(--card-bg);
    color: var(--text-muted);
    padding: 1.5rem;
    line-height: 1.7;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), 
                url('../img/bdaestheticlegacy_image_01.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 107, 107, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(255, 107, 107, 0.1) 100%);
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.5);
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.01em;
}

/* About Content Section */
.about-content-section {
    background: var(--bg-primary);
}

.about-text .section-title {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-text .lead {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy-section {
    background: var(--bg-secondary);
}

.philosophy-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.philosophy-icon {
    width: 4rem;
    height: 4rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.philosophy-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.philosophy-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Experience Section */
.experience-section {
    background: var(--bg-primary);
}

.experience-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.experience-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.experience-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Certificates Section */
.certificates-section {
    background: var(--bg-secondary);
}

.certificate-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.certificate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.certificate-icon {
    width: 4rem;
    height: 4rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.certificate-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.certificate-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Packages Detailed Section */
.packages-detailed-section {
    background: var(--bg-primary);
}

.package-card-detailed {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 0;
    height: 100%;
    min-height: 500px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.package-card-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.package-card-detailed.featured {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.package-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.package-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.package-level {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.package-price {
    margin-bottom: 0;
}

.package-price .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.package-price .period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.package-features {
    padding: 1.5rem 2rem;
    flex: 1;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
    font-size: 0.9rem;
}

.package-features li i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.package-footer {
    padding: 1rem 2rem 2rem;
    margin-top: auto;
    flex-shrink: 0;
}

/* Features Section */
.features-section {
    background: var(--bg-secondary);
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feature-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Info Section */
.contact-info-section {
    background: var(--bg-primary);
}

.contact-info-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.contact-info-icon {
    width: 4rem;
    height: 4rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.contact-info-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--bg-secondary);
}

/* Contact Section */
.contact-section {
    background: var(--bg-primary);
}

.contact-info {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.contact-form-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.contact-form .form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: var(--bg-secondary);
    border-color: var(--accent-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form .form-check-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-form .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Map Section */
.map-section {
    background: var(--bg-primary);
}

.map-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-gradient);
    position: relative;
}

.map-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.map-content i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.map-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.map-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.map-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.map-feature i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 4rem;
        background-attachment: scroll; /* Mobilde fixed attachment performans sorunu yaratabilir */
    }
    
    .page-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .page-title::after {
        width: 80px;
        height: 2px;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .philosophy-card,
    .experience-card,
    .certificate-card,
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .map-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .package-card-detailed {
        margin-bottom: 2rem;
    }
}
