/* Custom CSS for Ebru Aydın Website */

/* Global Styles */
:root {
    --primary-color: #e91e63;
    --secondary-color: #9c27b0;
    --success-color: #4caf50;
    --info-color: #00bcd4;
    --warning-color: #ff9800;
    --danger-color: #f44336;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --pink-light: #fce4ec;
    --purple-light: #f3e5f5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--primary-color) !important;
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 300;
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.1rem;
    border-radius: 12px;
    overflow: hidden;
}

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

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background: transparent;
    transform: translateY(-1px);
    box-shadow: none;
}

.navbar-nav .nav-link.active {
    color: #ffffff !important;
    background: transparent;
    box-shadow: none;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
    opacity: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
    opacity: 1;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Scrolled navbar styles */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .navbar-brand {
    color: var(--primary-color) !important;
    text-shadow: none;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: #495057 !important;
    text-shadow: none;
    font-weight: 300;
}

.navbar.scrolled .navbar-nav .nav-link::before {
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.08), transparent);
}

.navbar.scrolled .navbar-nav .nav-link::after {
    background: var(--primary-color);
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: transparent;
    transform: translateY(-1px);
    box-shadow: none;
}

.navbar.scrolled .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: transparent;
    box-shadow: none;
}

.navbar.scrolled .navbar-toggler {
    background: rgba(233, 30, 99, 0.1);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2873, 80, 87, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8) 0%, rgba(156, 39, 176, 0.8) 100%), url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    padding-top: 0;
    position: relative;
    overflow: visible;
}

/* Hero section için dinamik arka plan desteği */
.hero-section[style*="background-image"] {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8) 0%, rgba(156, 39, 176, 0.8) 100%), var(--hero-bg-image, url('../images/hero-background.jpg')) !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.hero-section .lead {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    font-weight: 400;
}

.hero-section .btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
}

.hero-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
}

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

/* Cards */
.card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: none !important;
}

.card:hover {
    transform: none;
    box-shadow: none !important;
}

.card-body {
    padding: 2rem;
}

/* Icons */
.fas, .fab {
    transition: all 0.3s ease;
}

.card:hover .fas,
.card:hover .fab {
    transform: scale(1.1);
}

/* Trainer Cards */
.trainer-card img {
    transition: all 0.3s ease;
    border: 4px solid #fff;
    box-shadow: none;
}

.trainer-card:hover img {
    transform: scale(1.05);
}

/* Contact Form */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-primary {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

/* Contact Info */
.contact-info .d-flex {
    transition: all 0.3s ease;
}

.contact-info .d-flex:hover {
    transform: translateX(5px);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    position: relative;
    border-top: 1px solid #dee2e6;
}

.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.footer-brand h4 {
    color: #343a40;
    font-weight: 700;
    margin: 0;
    font-size: 1.4rem;
}

.footer-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-title {
    color: #343a40;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-links li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.2);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
    color: white;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-contact .contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-contact .contact-item span {
    color: #6c757d;
    line-height: 1.5;
}

.footer-bottom {
    background: #f8f9fa;
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid #dee2e6;
}

.copyright,
.developer {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.developer {
    text-align: right;
}

.developer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-brand {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .developer {
        text-align: center;
        margin-top: 1rem;
    }
    
    /* Mobile navbar styles */
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.2rem 0;
        border-radius: 12px;
        text-align: center;
    }
    
    .navbar-nav .nav-link:hover {
        background: transparent;
        transform: scale(1.02);
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-link::before {
        display: none;
    }
    
    .navbar-collapse {
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar.scrolled .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(233, 30, 99, 0.1);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

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

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

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #0056b3;
    color: white;
    transform: translateY(-3px);
}

/* Image Hover Effects */
.img-hover {
    transition: all 0.3s ease;
}

.img-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Text Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Focus Styles */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Appointment Booking Styles */
.appointment-booking {
    max-width: 800px;
    margin: 0 auto;
}

.appointment-booking h5 {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.appointment-booking .form-label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.appointment-booking .card {
    border-radius: 25px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
    padding: 1.5rem;
}

.appointment-booking .card:hover {
    transform: none;
    box-shadow: none;
}

.appointment-booking .form-control,
.appointment-booking .form-select {
    border-radius: 12px;
    height: 48px;
}
.appointment-booking .form-select:disabled {
    background-color: #f5f5f5;
    opacity: 0.8;
}

.appointment-booking .form-control:hover,
.appointment-booking .form-select:hover {
    border-color: rgba(233, 30, 99, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.appointment-booking .form-control:focus,
.appointment-booking .form-select:focus {
    border-color: #e91e63;
    box-shadow: 0 0 0 0.3rem rgba(233, 30, 99, 0.15);
    background: white;
    transform: scale(1.02);
}

.appointment-booking .btn {
    border-radius: 20px;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    border: none;
    font-size: 16px;
    letter-spacing: 0.5px;
    min-height: 50px;
}

.appointment-booking .btn:hover {
    transform: translateY(-3px);
    box-shadow: none;
    background: linear-gradient(135deg, #d81b60 0%, #8e24aa 100%);
}

.appointment-booking .btn:active {
    transform: translateY(-1px);
    box-shadow: none;
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
    border-radius: 20px;
    box-shadow: none;
    border: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px;
    width: 350px !important;
    z-index: 2000 !important; /* above hero elements */
}

.flatpickr-months {
    margin-bottom: 15px;
}

.flatpickr-month {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    color: white;
    border-radius: 15px;
    padding: 10px 0;
    margin: -20px -20px 15px -20px;
}

.flatpickr-current-month {
    font-size: 18px;
    font-weight: 600;
    padding: 0 20px;
}

.flatpickr-monthDropdown-months {
    background: transparent;
    color: white;
    border: none;
    font-weight: 600;
}

.flatpickr-monthDropdown-months option {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
}

.flatpickr-weekdays {
    margin-bottom: 10px;
}

.flatpickr-weekday {
    color: #e91e63;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flatpickr-days {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
}

.flatpickr-day {
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
    margin: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.flatpickr-day:hover {
    background: rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.3);
    transform: scale(1.1);
}

.flatpickr-day.selected {
    background: linear-gradient(135deg, #e91e63 0%, #9c27b0 100%);
    border-color: #e91e63;
    color: white;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
    transform: scale(1.1);
}

.flatpickr-day.selected:hover {
    background: linear-gradient(135deg, #d81b60 0%, #8e24aa 100%);
    border-color: #d81b60;
    transform: scale(1.15);
}

.flatpickr-day.today {
    border-color: #e91e63;
    color: #e91e63;
    font-weight: 700;
    background: rgba(233, 30, 99, 0.1);
}

.flatpickr-day.today:hover {
    background: rgba(233, 30, 99, 0.2);
    transform: scale(1.05);
}

.flatpickr-day.disabled {
    color: #ccc;
    background: transparent;
    cursor: not-allowed;
}

.flatpickr-day.disabled:hover {
    background: transparent;
    transform: none;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #ddd;
}

.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
    background: rgba(233, 30, 99, 0.05);
    color: #999;
}

/* Navigation arrows */
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: white;
    fill: white;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Week numbers */
.flatpickr-weekdaycontainer {
    border-bottom: 2px solid rgba(233, 30, 99, 0.1);
    margin-bottom: 10px;
}

/* Animation for calendar appearance */
.flatpickr-calendar.open {
    animation: calendarSlideIn 0.3s ease-out;
}

@keyframes calendarSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .flatpickr-calendar {
        width: 280px;
        padding: 15px;
    }
    
    .flatpickr-day {
        height: 35px;
        line-height: 35px;
        font-size: 14px;
    }
    
    /* Mobile form layout */
    .appointment-booking .col-md-4 {
        margin-bottom: 15px;
    }
    
    .appointment-booking .form-control,
    .appointment-booking .form-select {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .appointment-booking h5 {
        font-size: 1.3rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .back-to-top,
    footer {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
} 

/* About Section Enhancements */
.section-subtitle {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.about-badges .badge-soft {
    background: rgba(233, 30, 99, 0.10);
    color: var(--primary-color);
    border: 1px solid rgba(233, 30, 99, 0.25);
    border-radius: 30px;
    padding: 6px 12px;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.feature-list li i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(233, 30, 99, 0.12);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.about-stats .card {
    border: 1px solid rgba(233, 30, 99, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    filter: brightness(0.95);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.3);
}

@media (max-width: 768px) {
    .about-badges .badge-soft {
        margin-bottom: 8px;
        display: inline-block;
    }
} 

.about-section {
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #fff 60%, rgba(233, 30, 99, 0.04) 100%);
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 400px at -10% 10%, rgba(233, 30, 99, 0.06), transparent 60%),
                radial-gradient(1000px 400px at 110% 10%, rgba(156, 39, 176, 0.06), transparent 60%);
    pointer-events: none;
}

.about-section .section-title {
    margin-bottom: 1rem;
}

.about-section .about-image img {
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.about-section .about-image {
    position: relative;
}

.about-section .about-image::after {
    content: '';
    position: absolute;
    z-index: -1;
    left: -20px;
    bottom: -20px;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, rgba(233,30,99,0.15), rgba(156,39,176,0.15));
    filter: blur(20px);
    border-radius: 20px;
} 

.soft-card {
    background: #fff;
    border: 1px solid rgba(233, 30, 99, 0.12);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.soft-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(233,30,99,0.12) 0%, rgba(156,39,176,0.12) 100%);
}

.icon-circle i { font-size: 18px; }

.about-stats h4 { font-weight: 800; letter-spacing: -0.5px; }

/* Counter smoothing */
.counter { transition: color 0.2s ease; }
.soft-card:hover .counter { color: var(--primary-color); } 

/* About title overrides */
.about-section .section-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    font-size: clamp(1.75rem, 1.2rem + 1.2vw, 2.25rem);
}

.about-section .section-title::before {
    content: '';
    width: 10px;
    height: 28px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 6px 16px rgba(233, 30, 99, 0.25);
}

.about-section .section-title::after { display: none; }

@media (max-width: 576px) {
    .about-section .section-title {
        gap: 10px;
        font-size: 1.6rem;
    }
    .about-section .section-title::before {
        height: 24px;
        width: 8px;
        border-radius: 5px;
    }
} 

/* About media stack */
.media-stack {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
}

.media-stack .media-main,
.media-stack .media-secondary {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.media-stack .media-main {
    transform: rotate(-1.5deg);
}

.media-stack .media-secondary {
    position: absolute;
    right: -30px;
    bottom: -30px;
    width: 55%;
    transform: rotate(2deg);
    border: 6px solid #fff;
}

.media-badge {
    position: absolute;
    top: -14px;
    left: -14px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(233,30,99,0.35);
}

@media (max-width: 992px) {
    .media-stack {
        margin: 0 auto;
    }
    .media-stack .media-secondary {
        right: -16px;
        bottom: -16px;
        width: 60%;
    }
} 

/* Disable transform on hero to avoid scroll shift */
.hero-section { transform: none !important; }

/* Services List - Enhanced Design */
.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
  .services-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .services-list { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .services-list { grid-template-columns: repeat(4, 1fr); }
}

.service-card-vertical {
    background: white;
    border-radius: 16px;
    padding: 1.8rem 1.6rem 1.4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-hidden {
    display: none;
}

.service-card-vertical.show {
    display: flex;
    animation: slideDown 0.5s ease-out;
}

.service-card-vertical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.service-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #6c757d;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 6px 18px rgba(233, 30, 99, 0.35);
    margin-bottom: 1rem;
}

.service-icon.lg {
    width: 72px;
    height: 72px;
    font-size: 1.7rem;
}

.service-title {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.15rem;
}

.service-description {
    color: #6c757d;
    margin: 0.6rem 0 1rem;
    line-height: 1.55;
    font-size: 0.95rem;
}

.service-meta {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.service-duration,
.service-price {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #6c757d;
    background: #f8f9fa;
    padding: 0.35rem 0.7rem;
    border-radius: 18px;
    border: 1px solid #e9ecef;
}

.service-duration i,
.service-price i {
    margin-right: 0.35rem;
    font-size: 0.8rem;
}



/* Empty State */
.empty-state {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.empty-state .icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .service-meta {
        justify-content: center;
    }
}

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

/* Contact Section Styles */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.contact-content {
    flex: 1;
}

.contact-content h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-content p {
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.social-media-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
}

.social-media-section h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    color: white;
}

.contact-visual {
    position: relative;
}

.contact-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8) 0%, rgba(156, 39, 176, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-item:hover + .contact-visual .contact-overlay,
.contact-visual:hover .contact-overlay {
    opacity: 1;
}

.contact-badge {
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.contact-map-item {
    flex-direction: column;
    align-items: stretch;
}

.contact-map-item .contact-icon {
    align-self: flex-start;
    margin-bottom: 1rem;
}

.contact-map-item .contact-content {
    width: 100%;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 250px;
    margin-top: 0.5rem;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form Styles */
.contact-form-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    flex: 1;
}

.contact-form-container h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(233, 30, 99, 0.15);
    background: white;
}

.contact-form .form-control:hover,
.contact-form .form-select:hover {
    border-color: var(--primary-color);
    background: white;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

/* Math Verification Styles */
.verification-section {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.math-question {
    text-align: center;
}

.math-question span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.math-question input {
    max-width: 150px;
    margin: 0 auto;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .contact-info-list {
        height: auto;
    }
    
    .contact-form-wrapper {
        height: auto;
        margin-top: 2rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-image img {
        height: 300px;
    }
    
    .map-wrapper {
        height: 200px;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}