/* Genel Stiller */
:root {
    --primary-color: #003366;
    --secondary-color: #0066cc;
    --accent-color: #00ccff;
    --dark-blue: #001a33;
    --light-blue: #e6f3ff;
    --white: #ffffff;
    --border-radius: 12px;
    --box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography */
body {
    font-family: 'Barlow', 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-blue);
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    background: var(--light-blue);
}

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

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
}

/* Layout & Spacing */
section {
    margin: 0;
    padding: 0;
}

.section-title-container {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.section-title-container h2 {
    margin: 0;
    color: var(--white);
    font-weight: 900;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.section-title-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

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


/* Background sections */
section{
    background-color: var(--light-blue);
}

/* Background sections */
section.bg-light{
    background-color: var(--light-blue)!important;
}
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 0.5rem 0;
    background-color: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 60px;
}

.navbar-brand {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    padding: 0.5rem 1rem;
}

.navbar-toggler {
    padding: 0.5rem;
    margin-right: 1rem;
    border: none;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

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

.navbar-nav {
    margin-left: auto;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    padding: 0.7rem 1rem !important;
    transition: color 0.3s ease;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--secondary-color) !important;
    background-color: rgba(26, 115, 232, 0.1);
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        z-index: 1049;
        background-color: var(--white);
        padding: 1rem;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transition: all 0.3s ease-in-out;
    }

    .navbar-collapse:not(.show) {
        display: none;
    }

    .navbar-nav {
        padding: 0.5rem 0;
    }

    .nav-item {
        margin: 0.25rem 0;
    }

    .nav-link {
        padding: 0.8rem 1.2rem !important;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-link::after {
        content: '→';
        opacity: 0;
        transition: all 0.3s ease;
    }

    .nav-link:hover::after {
        opacity: 1;
        transform: translateX(4px);
    }

    /* Animasyonlu menü açılış/kapanış */
    .navbar-collapse {
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Aktif menü öğesi */
    .nav-link.active {
        background-color: var(--primary-color);
        color: var(--white) !important;
    }
}

/* Büyük ekranlar için menü */
@media (min-width: 992px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar-brand {
        font-size: 1.3rem;
        padding: 0 1rem;
    }

    .navbar-nav {
        display: flex;
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.5rem 1rem !important;
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 80%;
    }

    .nav-link.active::after {
        width: 80%;
    }
}

.navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--border-radius);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0 0 0 !important
}

.video-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-section .row {
    width: 100%;
}

 

/* Make hero text more visible */
.hero-section h1,
.hero-section p {
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content {
    padding: 2rem 0;
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.hero-section .lead {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-item i {
    color: #ffd700;
    font-size: 1.1rem;
}

.hero-image {
    position: relative;
    text-align: center;
    margin-top: 2rem;
    padding: 0 1rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: var(--white);
    padding: 1.5rem;
}

.badge.bg-warning {
    background-color: #ffd700 !important;
    color: #000 !important;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.15);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-lg {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .hero-section .row {
        min-height: auto;
    }

    .hero-image {
        margin-top: 3rem;
        padding-left: 0;
        text-align: center;
    }

    .hero-image img {
        max-width: 90%;
        margin: 0 auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px; /* navbar height (60px) + smaller padding */
        min-height: calc(100vh - 60px);
        height: auto;
    }

    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-section .container {
        padding: 0;
        height: 100%;
    }

    .hero-section .row {
        margin: 0;
        height: 100%;
    }

    .hero-section h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-section .lead {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        justify-content: center;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .hero-image {
        margin-top: 2rem;
        padding: 0 1rem;
        max-height: 40vh;
    }

    .hero-image img {
        max-width: 90%;
        margin: 0 auto;
    }

    /* Wave düzenlemesi */
    .hero-wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        line-height: 0;
    }

    .hero-wave svg {
        width: 100%;
        height: auto;
    }
}

/* Responsive styles for hero section and video */
@media (max-width: 991.98px) {
    .hero-section {
        height: calc(100vh - 76px); /* Adjust for mobile navbar height */
    }

    .hero-section .container {
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

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

@media (max-width: 767.98px) {
    .hero-section {
        height: auto;
        min-height: calc(100vh - 76px);
    }

    .video-slider {
        height: 100%; 
    }

    .video-slider video {
        height: 100%; 
    }

    .hero-section .container {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

@media (orientation: landscape) and (max-height: 576px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .hero-section .container {
        padding-top: 100px;
        padding-bottom: 40px;
    }
}

/* Fix for iOS Safari height issues */
@supports (-webkit-touch-callout: none) {
    .hero-section,
    .video-slider,
    .video-slider video {
        height: -webkit-fill-available;
        min-height: -webkit-fill-available;
    }
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--white);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.card-body {
    padding: 2rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
    border-radius: 3px;
    z-index: 1;
}

.timeline-item {
    padding: 1rem;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 2rem;
    z-index: 2;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-content {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0,0,0,0.08);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.timeline-content p {
    margin: 0;
    color: var(--secondary-color);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 28px;
    width: 20px;
    height: 20px;
    background: var(--white);
    transform: rotate(45deg);
    border: 1px solid rgba(0,0,0,0.08);
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
    border-top: none;
    border-left: none;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    border-bottom: none;
    border-right: none;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        padding-right: 1rem;
        padding-left: 70px;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        left: 6px !important;
        font-size: 1rem;
    }

    .timeline-content {
        padding: 1.25rem;
    }

    .timeline-content h4 {
        font-size: 1.1rem;
    }

    .timeline-content::before {
        left: -10px !important;
        border-bottom: none !important;
        border-right: none !important;
    }
} 
/* Statistics Section */
.statistics-section {
    background: var(--light-blue); 
}

.stat-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    display: inline-block;
}

.stat-plus, .stat-percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-block;
    margin-left: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--primary-color);
    margin-top: 5px;
    font-weight: 500;
}

@media (max-width: 768px) {
 
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
}

/* Stats */
.stat-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(26, 115, 232, 0.1);
    font-family: serif;
}

/* Forms */
.form-control {
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 2px solid #e0e0e0;
    transition: var(--transition);
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,102,204,0.4);
}

.btn-outline-light {
    border-width: 2px;
}

#oncesi-sonrasi{
    background: var(--primary-color)
}


/* Before-After Gallery */
.before-after-item { 
    overflow: hidden;
    position: relative;
    padding:10px;
    background:var(--white)
}

.before-after-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.before-after-item:hover {
    transform: translateY(-5px);
}

.before-after-item img {
    transition: transform 0.5s ease;
}

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

.image-caption {
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 51, 102, 0.9);
    color: var(--white);
    padding: 15px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.before-after-item:hover .image-caption {
    opacity: 1;
    transform: translateY(0);
}

#oncesi-sonrasi .btn:hover {
    background: #cc0000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,0,0,0.4) !important;
}

#oncesi-sonrasi .section-title-container {
    position: relative;
    overflow: hidden;
}

#oncesi-sonrasi .section-title-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

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

.overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem 1rem 1rem;
}

/* Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--border-radius) !important;
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 500;
    border-radius: var(--border-radius) !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

/* Footer */
footer {
    background: var(--dark-blue);
    padding: 4rem 0;
    padding-bottom: calc(4rem + 85px) !important; /* Sabit butonlar için ekstra padding */
}

/* Responsive Design */
@media (max-width: 768px) {
 
    .hero-section {
        padding: 6rem 0 4rem;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
}

/* Accessibility */
:focus {
    outline: 3px solid rgba(26, 115, 232, 0.5);
    outline-offset: 2px;
}

/* Motion Preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Mobil Öncelikli Tasarım */
@media (max-width: 768px) {
    /* Genel Düzenlemeler */
    body {
        font-size: 15px;
    }
 

    .container {
        padding: 0 1rem;
    }

    /* Hero Section */
    .hero-section {
        padding: 5rem 0 2rem;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-features {
        justify-content: center;
        gap: 0.5rem;
    }

    .feature-item {
        width: calc(50% - 0.5rem);
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

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

    .btn-lg {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    /* İstatistikler */
    .stat-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Timeline */
    .timeline {
        padding: 1rem 0;
    }

    .timeline::after {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 1rem;
        margin-bottom: 1.5rem;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        left: 0;
        padding-left: 50px;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        left: 0 !important;
        font-size: 1rem;
    }

    .timeline-content {
        padding: 1.25rem;
    }

    .timeline-content h4 {
        font-size: 1.1rem;
    }

    /* Kartlar */
    .card {
        margin-bottom: 1rem;
    }

    .card-body {
        padding: 1.25rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    /* Form */
    .form-control {
        padding: 0.75rem;
        font-size: 0.95rem;
    }

    /* Navbar */
    .navbar {
        padding: 0.5rem 0;
    }

    .navbar-brand {
        font-size: 1.1rem;
        padding-left: 1rem;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 6px;
        margin: 0.25rem 0;
    }

    /* Footer */
    footer {
        padding: 2rem 0;
        text-align: center;
    }

    footer .text-end {
        text-align: center !important;
        margin-top: 1rem;
    }

    /* Boşluklar ve Hizalama */
    .mb-4 {
        margin-bottom: 1.5rem !important;
    }

    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    /* Görsel Optimizasyonları */
    .hero-image {
        margin: 2rem auto 0;
        padding: 0 1rem;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    /* Erişilebilirlik */
    .btn, .form-control, .nav-link {
        min-height: 44px; /* Touch target size */
    }
}

/* Mobil UX İyileştirmeleri */
html, body {
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
}

/* Hero Section Mobil Optimizasyonu */
@media (max-width: 768px) {
    .hero-section {
        position: relative;
        min-height: auto;
        padding: calc(60px + 2rem) 0 0;
    }

    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-image {
        margin: 2rem auto 60px;
        padding: 0 1rem;
        max-height: none;
        position: relative;
        z-index: 1;
    }

    .hero-image img {
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-wave {
        bottom: 0;
    }

    .hero-wave svg {
        height: 40px;
        margin-bottom: -1px;
    }

    .hero-section .container {
        position: relative;
        z-index: 1;
    }
}

/* Navbar Mobil Optimizasyonu */
@media (max-width: 768px) {
    .navbar {
        height: 60px;
    }

    .navbar-brand {
        font-size: 1.1rem;
    }

    .navbar-toggler {
        width: 44px;
        height: 44px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-collapse {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 1rem;
    }

    .nav-link {
        height: 50px;
        display: flex;
        align-items: center;
        font-size: 1rem;
    }
}

/* Touch Hedef Boyutları */
@media (max-width: 768px) {
    .btn,
    .form-control,
    .nav-link,
    .navbar-toggler,
    input,
    select,
    textarea {
        min-height: 44px;
        min-width: 44px;
    }

    input[type="checkbox"],
    input[type="radio"] {
        min-height: 24px;
        min-width: 24px;
    }
}

/* Navbar Logo Styles */
.navbar-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 1rem;
}

.navbar-brand span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-left: 0.5rem;
}

/* Mobil Navbar Düzenlemeleri */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
        height: 60px;
    }

    .navbar-logo {
        height: 32px;
    }

    .navbar-brand {
        padding-left: 1rem;
    }

    .navbar-toggler {
        margin-right: 1rem;
        padding: 0;
        width: 40px;
        height: 40px;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-collapse {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .navbar-nav {
        padding: 0.5rem 0;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 1rem;
        border-radius: 8px;
    }
}

/* Tablet ve Orta Boy Ekranlar */
@media (min-width: 769px) and (max-width: 991px) {
    .navbar-logo {
        height: 36px;
    }

    .navbar-brand span {
        font-size: 1rem;
    }
}

/* Hero Wave Düzenlemesi */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
}

.hero-wave path {
    fill: #ffffff;
}

@media (max-width: 768px) {
    .hero-section {
        position: relative;
        padding-bottom: 60px;
    }

    .hero-wave {
        bottom: 0;
    }

    .hero-wave svg {
        height: 40px;
        margin-bottom: -1px;
    }

    .hero-content {
        padding-bottom: 1rem;
    }

    .hero-image {
        margin-bottom: 2rem;
    }
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* navbar height + extra padding */
}

@media (max-width: 768px) {
    section {
        scroll-margin-top: 60px; /* mobile navbar height */
    
    }
    
    .hero-section {
        scroll-margin-top: 60px;
        padding-top: calc(60px + 2rem);
    }
}

/* Doktor Fotoğrafı Stilleri */
.doctor-image-wrapper {
    position: relative;
    padding: 0;
    margin-bottom: 2rem;
    max-width: 450px;
    margin: 0 auto;
}

.doctor-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 0;
}

@media (max-width: 768px) {
    .doctor-image-wrapper {
        max-width: 300px;
        margin: 0 auto 2rem;
    }
    
    .doctor-image {
        width: 100%;
        height: auto;
    }
}

/* Hakkımda Section */
#hakkimda { 
    background: var(--light-blue);
}

#hakkimda .container {
    max-width: 1140px;
}

 
.career-list {
    margin-top: 2rem;
}

.career-list li {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.career-list li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Hakkımda Section Styles */
#hakkimda {
    position: relative;
    color: var(--white); 
}
 

#hakkimda .container {
    position: relative;
    z-index: 2;
}
 

.doctor-image-wrapper {
    margin-bottom: 2rem;
}

.doctor-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#hakkimda .lead {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.career-list li {
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.career-list .fa-check-circle {
    color: var(--white);
    margin-top: 0.25rem;
}

@media (max-width: 991px) {
 
    
    .doctor-image-wrapper {
        margin-bottom: 2rem;
    }
    #tedavi-sureci{
        padding-bottom: 3rem;
    }
}

@media (max-width: 576px) {
 
    #hakkimda .lead {
        font-size: 1rem;
    }
    
    .career-list li {
        font-size: 0.95rem;
    }
}

/* Sertifika Logoları */
.certifications-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.certifications-wrapper h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.certifications-wrapper h4:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.certifications {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.certification-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.8;
}

.certification-logo:hover {
    transform: translateY(-5px);
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .certifications-wrapper {
        padding: 2rem 1rem;
        margin: 1rem 0;
    }
    
    .certifications-wrapper h4 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .certifications {
        gap: 2rem;
    }
    
    .certification-logo {
        height: 60px;
    }
}

/* WhatsApp Button */
.whatsapp-btn {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: var(--white) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #20bd5a !important;
    border-color: #20bd5a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .cta-buttons {
        gap: 0.75rem;
    }
    
    .whatsapp-btn i {
        font-size: 1.1rem;
    }
}

/* Sabit Erişim Butonları */
.fixed-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.fixed-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 12px;
    width: 50px;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.fixed-button i {
    font-size: 20px;
    width: 26px;
    text-align: center;
}

.fixed-button span {
    position: absolute;
    right: 50px;
    white-space: nowrap;
    background: inherit;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.fixed-button:hover span {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-button {
    background-color: rgba(37, 211, 102, 0.95);
}

.whatsapp-button:hover {
    background-color: rgba(32, 189, 90, 0.98);
    color: var(--white);
    text-decoration: none;
}

.call-button {
    background-color: rgba(30, 136, 229, 0.95);
}

.call-button:hover {
    background-color: rgba(21, 87, 176, 0.98);
    color: var(--white);
    text-decoration: none;
}

.maps-button {
    background-color: rgba(234, 67, 53, 0.95);
}

.maps-button:hover {
    background-color: rgba(211, 47, 47, 0.98);
    color: var(--white);
    text-decoration: none;
}

@media (max-width: 768px) {
    .fixed-buttons {
        bottom: 0;
        right: 0;
        left: 0;
        flex-direction: row;
        padding: 10px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        backdrop-filter: blur(10px);
    }

    .fixed-button {
        flex: 1;
        width: auto;
        justify-content: center;
        padding: 10px;
        font-size: 12px;
        box-shadow: none;
        margin: 0 4px;
        border-radius: 12px;
    }

    .fixed-button i {
        font-size: 18px;
        width: auto;
        margin-right: 6px;
    }

    .fixed-button span {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        background: none;
        box-shadow: none;
        font-size: 12px;
    }
}

/* İletişim Bölümü */
.contact-info-wrapper {
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.contact-card p {
    margin: 0; 
    font-weight: bold;
}

.contact-card a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.certifications-wrapper {
    padding: 3rem 0;
    background: var(--light-blue);
    border-radius: var(--border-radius);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-form .form-control {
    padding: 0.875rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.contact-form .btn-lg {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.form-check-label.small {
    font-size: 0.875rem;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .contact-info-wrapper {
        margin-bottom: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .contact-card i {
        font-size: 1.75rem;
    }

    .certifications-wrapper {
        padding: 2rem 1rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-form .btn-lg {
        width: 100%;
        padding: 0.875rem;
    }
}

.certification-item {
    text-align: center;
    transition: all 0.3s ease;
}

.certification-item p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.certification-item:hover p {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .certification-item p {
        font-size: 0.8rem;
        opacity: 1;
        transform: none;
    }
}

.social-link { 
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 70px; /* Mobil butonlar için ekstra margin */
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--white) !important;
}

.social-link i {
    font-size: 1.2rem;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    footer {
        padding: 2rem 0;
    }
    
    footer .row {
        text-align: center;
    }
    
    footer .text-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .social-link {
        padding: 0.75rem 1.5rem;
        margin-bottom: 70px; /* Mobil butonlar için ekstra margin */
    }
    
    footer .container {
        padding-bottom: 0;
    }
}

.video-slider {
    width: 100%; 
    overflow: hidden;
    position: relative;
}

.video-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop video visibility */
.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

/* Mobile video switching */
@media (max-width: 768px) {
    .desktop-video {
        display: none;
    }
    
    .mobile-video {
        display: block;
    }
}

/* Section Title Container */
.section-title-container {
    background-color: #F92302;
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.section-title-container h2 {
    margin: 0;
    color: #fff;
    font-weight: 900;
    font-size: 18px; 
}
@media (max-width: 768px) {
    .section-title-container {
        height: 40px;
    }
}
/* Override specific section title colors */
#hakkimda .section-title-container h2 {
    color: #000;
}

/* Treatment Section Styles */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.treatment-item {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.treatment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.treatment-icon {
    background: #FFDD44;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.treatment-icon i {
    font-size: 24px;
    color: #000;
}

.treatment-content {
    flex: 1;
}

.treatment-content h3 {
    color: #000;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.treatment-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .treatment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .treatment-item {
        padding: 1.5rem;
    }

    .treatment-icon {
        width: 50px;
        height: 50px;
    }

    .treatment-icon i {
        font-size: 20px;
    }

    .treatment-content h3 {
        font-size: 1.1rem;
    }
}

/* Erkek Burun Section */
#erkek-burun {
    padding: 0;
}

#erkek-burun .section-title-container {
    margin-bottom: 0;
}

#erkek-burun .content-box {
    padding: 30px;
}

#erkek-burun .content-box p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

#erkek-burun .doctor-image-wrapper {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: var(--white);
    padding: 0;
}

#erkek-burun .doctor-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

#erkek-burun .diagram-container {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#erkek-burun .diagram-container img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.process-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

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

.process-card h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.process-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Burun Estetiği Styles */
#burun-estetigi {
    background: var(--light-blue);
}

.feature-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.advantage-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.advantage-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.advantage-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.info-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-list li i {
    color: var(--secondary-color);
    margin-right: 1rem;
}

.timeline-container {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1rem;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -40px;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
    transform: translateY(-50%);
}

.section-subtitle {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 1rem;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-content::before {
        left: -30px !important;
    }
}

/* Burun Estetiği Cards */
#burun-estetigi-cards {
    background: var(--light-blue);
}

.info-box {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.info-box:hover .info-icon {
    background: var(--primary-color);
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.info-box:hover .info-icon i {
    color: var(--white);
}

.info-box h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.info-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.info-box p {
    color: var(--dark-blue);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .info-box {
        margin-bottom: 1.5rem;
    }
}

/* Instagram Feed Styles */
#instagram-feed {
    background: var(--light-blue);
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

.instagram-link i {
    font-size: 1.5rem;
    margin-right: 0.8rem;
}

.instagram-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.instagram-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.instagram-img-wrap {
    position: relative;
    padding-bottom: 100%;
    background: var(--primary-color);
}

.instagram-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-stats {
    display: flex;
    gap: 2rem;
    color: white;
    font-size: 1.2rem;
}

.instagram-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.instagram-stats i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .instagram-link {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .instagram-link i {
        font-size: 1.2rem;
    }
}

/* FAQ Section Styles */
.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-list li {
    margin-bottom: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.toggle-head {
    padding: 1.25rem;
    cursor: pointer;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.toggle-title {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    padding-right: 2rem;
    position: relative;
}

.toggle-title::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.toggle-head.active .toggle-title::after {
    content: '-';
}

.toggle-content {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease-in-out;
    background: var(--white);
}

.toggle-content.active {
    height: auto;
}

.toggle-inner {
    padding: 2.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.toggle-content.active .toggle-inner {
    opacity: 1;
    transform: translateY(0);
}

.toggle-content p {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.toggle-content p:last-child {
    margin-bottom: 0;
}

.toggle-content ul {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.toggle-content ul li {
    margin-bottom: 0.5rem;
    background: none;
    box-shadow: none;
    color: var(--dark-blue);
}

.toggle-content ul li:last-child {
    margin-bottom: 0;
}

.toggle-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.toggle-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .toggle-head {
        padding: 1rem;
    }
    
    .toggle-title {
        font-size: 1rem;
    }
    
    .toggle-content.active {
        padding: 1.25rem;
    }
}