/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0EA5E9;
    --secondary-color: #3B82F6;
    --accent-color: #06B6D4;
    --gradient-start: #0EA5E9;
    --gradient-end: #06B6D4;
    --dark-color: #0F172A;
    --light-color: #F0F9FF;
    --border-color: #BAE6FD;
    --text-color: #475569;
    --heading-color: #0F172A;
    --shadow: 0 4px 20px rgba(14, 165, 233, 0.15);
    --shadow-lg: 0 15px 50px rgba(14, 165, 233, 0.25);
    --shadow-colored: 0 10px 40px rgba(6, 182, 212, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--light-color) 100%);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* DISABLED - aura-inspired.css handles scroll behavior with dark theme
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

body:not(.home-page) .header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}
*/

/* Ana sayfada şeffaf header için beyaz yazılar */
.home-page .header:not(.scrolled) .nav-menu a {
    color: white;
}

.home-page .header:not(.scrolled) .nav-menu a:hover,
.home-page .header:not(.scrolled) .nav-menu a.active {
    color: white;
    border-bottom-color: white;
}

.home-page .header:not(.scrolled) .nav-brand a {
    color: white;
}

.home-page .header:not(.scrolled) .nav-toggle span {
    background: white;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-brand i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-color);
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Keep btn-reserve white even when active */
.nav-menu a.btn-reserve.active,
.nav-menu a.btn-reserve:hover {
    color: white !important;
    border-bottom-color: transparent !important;
}

/* Social media icon in menu */
.nav-menu a.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
    color: white !important;
    border: none !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(225, 48, 108, 0.3);
}

.nav-menu a.social-icon-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
    background: linear-gradient(135deg, #C13584, #833AB4, #5B51D8);
}

.nav-menu a.social-icon-link i {
    margin: 0;
}

.btn-reserve {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end)) !important;
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 30px !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-reserve:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.main-content {
    margin-top: 70px;
}

.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    background-image: url('https://images.unsplash.com/photo-1540039155733-5bb30b53aa14?w=1920');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1%, transparent 1%);
    background-size: 50px 50px;
    animation: floatBg 20s linear infinite;
    pointer-events: none;
}

@keyframes floatBg {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.88) 0%, rgba(6, 182, 212, 0.78) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
    letter-spacing: -1px;
}

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

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 2rem;
    opacity: 0.8;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}

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

.btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-success {
    background: #25D366;
    color: white;
}

.btn-success:hover {
    background: #1da851;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* ===== SECTIONS ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-top: 20px;
}

/* ===== FEATURES ===== */
.features {
    background: linear-gradient(135deg, #0A1929 0%, #1E40AF 50%, #3B82F6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.features::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.features .section-header {
    position: relative;
    z-index: 1;
}

.features .section-header h2 {
    background: linear-gradient(135deg, #60A5FA, #93C5FD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(96, 165, 250, 0.4);
    background: rgba(255, 255, 255, 1);
}

.feature-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.feature-card p {
    color: var(--text-color);
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-colored);
}

.service-card.featured {
    position: relative;
    border: 3px solid var(--primary-color);
}

.service-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
}

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

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.service-duration {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-content > p:not(.service-duration):not(.service-price) {
    margin-bottom: 15px;
    min-height: 80px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.service-price {
    font-size: 2.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    margin-top: auto;
    position: relative;
    text-align: center;
}

.service-price::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 2px;
}

.service-content > .btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

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

.mt-4 {
    margin-top: 40px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(135deg, #0A1929 0%, #1E40AF 50%, #3B82F6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.testimonials::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, var(--light-color) 0%, #E0F2FE 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -250px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(14, 165, 233, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--heading-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}

/* ===== ALERTS ===== */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

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

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.footer-credit {
    margin-top: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-credit strong {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-credit i {
    color: var(--accent-color);
    margin-right: 5px;
}

.footer-credit a:hover {
    transform: scale(1.2);
    display: inline-block;
}

.footer-credit a:hover i {
    animation: instagram-pulse 0.6s ease-in-out;
}

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

/* ===== GALLERY ===== */
.gallery-filter {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    box-shadow: var(--shadow-colored);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}

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

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

.view-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    margin: 5% auto;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.lightbox-caption {
    text-align: center;
    color: white;
    padding: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 3px 0;
    }

    .nav-menu li a {
        width: 100%;
    }

    .nav-toggle {
        display: flex;
        z-index: 1000;
    }


    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header-name {
        font-size: 1.8rem;
        margin: 15px 0;
        letter-spacing: 1px;
    }
}

/* ===== WEATHER WIDGET ===== */
.weather-section {
    background: linear-gradient(135deg, var(--light-color) 0%, #FFFFFF 100%);
    padding: 40px 0;
}

.weather-widget {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.weather-loading {
    padding: 60px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.weather-current {
    padding: 40px;
}

.weather-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.weather-location i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.weather-location h3 {
    font-size: 1.8rem;
    margin: 0;
}

.weather-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.weather-icon img {
    width: 150px;
    height: 150px;
}

.weather-temp {
    text-align: center;
}

.temp-value {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.temp-desc {
    font-size: 1.3rem;
    color: var(--text-color);
    text-transform: capitalize;
    display: block;
    margin-top: 10px;
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.weather-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 15px;
}

.weather-detail i {
    font-size: 2rem;
    color: var(--primary-color);
}

.weather-detail strong {
    display: block;
    font-size: 1.3rem;
    color: var(--heading-color);
}

.weather-detail small {
    display: block;
    color: var(--text-color);
    opacity: 0.8;
}

.flight-status {
    margin-top: 30px;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-good {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.status-bad {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
}

.flight-status i {
    font-size: 1.5rem;
}

/* ===== FLIGHT SCHEDULE ===== */
.flight-schedule-section {
    padding: 80px 0;
}

.flights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

.flight-card {
    background: white;
    border-radius: 25px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
}

.flight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-colored);
}

.flight-date {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 30px 20px;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.date-day {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.date-month {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 5px;
    opacity: 0.9;
}

.flight-details {
    flex: 1;
    padding: 25px;
}

.flight-details h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.flight-info {
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.info-item i {
    color: var(--primary-color);
    width: 20px;
}

.available-slots {
    font-weight: 700;
    color: var(--accent-color);
}

.flight-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--light-color);
}

.flight-price {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.no-flights {
    text-align: center;
    padding: 80px 20px;
    background: var(--light-color);
    border-radius: 25px;
}

.no-flights i {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 20px;
}

.no-flights h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* ===== WEATHER REQUIREMENTS ===== */
.weather-info-section {
    background: var(--light-color);
    padding: 60px 0;
}

.weather-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.requirement-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.requirement-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.requirement-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.requirement-card strong {
    color: var(--primary-color);
}

/* ===== QUICK RESERVATION ===== */
.quick-reservation-section {
    padding: 60px 0;
}

.reservation-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.step.active {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-color);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.step.active .step-number {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-color: var(--gradient-start);
    color: white;
}

.step-title {
    font-weight: 600;
    color: var(--text-color);
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--border-color);
}

.quick-reservation-content {
    max-width: 700px;
    margin: 0 auto;
}

.quick-reservation-form {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

.selected-flight-info {
    background: linear-gradient(135deg, var(--light-color), #E0F2FE);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
}

.selected-flight-info h3 {
    margin-bottom: 15px;
    color: var(--heading-color);
}

.flight-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.summary-item {
    font-size: 0.95rem;
}

.summary-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 3px;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.btn-block {
    width: 100%;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.success-message {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--light-color), #E0F2FE);
    border-radius: 25px;
}

.success-message i {
    font-size: 5rem;
    color: #10B981;
    margin-bottom: 20px;
}

.success-message h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-message p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
    .weather-main {
        flex-direction: column;
        gap: 20px;
    }

    .weather-icon img {
        width: 120px;
        height: 120px;
    }

    .temp-value {
        font-size: 3rem;
    }

    .flights-grid {
        grid-template-columns: 1fr;
    }

    .flight-card {
        flex-direction: column;
    }

    .flight-date {
        min-width: auto;
        padding: 20px;
    }

    .flight-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .reservation-steps {
        font-size: 0.9rem;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .quick-reservation-form {
        padding: 25px;
    }
}

/* Fix for flight card text overflow */
.flight-details h3 {
    font-size: 1.2rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.flight-card {
    min-height: 280px;
}

.info-item span {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 480px) {
    .flight-details h3 {
        font-size: 1.1rem;
    }

    .flights-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FLOATING PILOT IMAGE ===== */
.floating-pilot {
    position: fixed;
    bottom: 0;
    left: 30px;
    width: 300px;
    height: auto;
    z-index: 900;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.floating-pilot img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Pilot Help Button - Konuşma Balonu Stili */
.pilot-help-button {
    position: absolute;
    top: 50px;
    left: 230px;
    background: white;
    color: #0F172A;
    padding: 10px 18px;
    border-radius: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    pointer-events: all;
    white-space: nowrap;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
    max-width: 250px;
}

/* Konuşma balonu ok işareti */
.pilot-help-button::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid white;
}

.pilot-help-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 128, 255, 0.3);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.pilot-help-button:hover::before {
    border-right-color: #25D366;
}

.pilot-help-button i {
    font-size: 1rem;
    color: #25D366;
}

.pilot-help-button:hover i {
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll olunca küçült */
.floating-pilot.scrolled {
    width: 120px;
    bottom: 0;
    left: 20px;
}

.floating-pilot.scrolled .pilot-help-button {
    left: 110px;
    padding: 6px 10px;
    font-size: 0.7rem;
    border-radius: 12px;
    top: 10px;
}

.floating-pilot.scrolled .pilot-help-button i {
    font-size: 0.8rem;
}

.floating-pilot.scrolled .pilot-help-button span {
    display: none;
}

.floating-pilot.scrolled .pilot-help-button::before {
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid white;
    left: -6px;
}

/* Mobilde mini pilot */
@media (max-width: 768px) {
    .floating-pilot {
        width: 120px;
        bottom: 0;
        left: 10px;
    }

    .floating-pilot.scrolled {
        width: 80px;
        bottom: 0;
        left: 10px;
    }

    /* Mobil konuşma balonu */
    .pilot-help-button {
        top: 10px;
        left: 100px;
        padding: 8px 14px;
        font-size: 0.75rem;
        gap: 6px;
        border-radius: 15px;
        max-width: 180px;
    }

    .pilot-help-button i {
        font-size: 0.9rem;
    }

    .pilot-help-button::before {
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-right: 8px solid white;
        left: -8px;
    }

    /* Scroll sonrası mobilde */
    .floating-pilot.scrolled .pilot-help-button {
        left: 70px;
        padding: 6px 10px;
        font-size: 0.7rem;
        top: 5px;
    }

    .floating-pilot.scrolled .pilot-help-button i {
        font-size: 0.8rem;
    }

    .floating-pilot.scrolled .pilot-help-button::before {
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-right: 6px solid white;
        left: -6px;
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.6);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px; /* WhatsApp butonunun üstüne */
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.founder-content {
    max-width: 1100px;
    margin: 0 auto;
}

/* Founder Intro */
.founder-intro {
    margin-bottom: 60px;
}

/* Founder Image Section */
.founder-image-section {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.founder-image-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.15);
    transition: all 0.3s ease;
}

.founder-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(14, 165, 233, 0.25);
}

.founder-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.founder-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.founder-image-card:hover .founder-image-wrapper img {
    transform: scale(1.05);
}

.founder-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(14, 165, 233, 0.4);
}

.founder-badge i {
    font-size: 1rem;
}

.founder-info {
    text-align: center;
    padding: 15px 10px;
}

.founder-info h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.founder-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

.founder-info i {
    color: var(--primary-color);
    font-size: 1rem;
}

.founder-quote {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
    padding: 40px 50px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
}

.founder-quote i {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 30px;
    left: 30px;
}

.founder-quote p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--heading-color);
    font-style: italic;
    margin: 0;
    padding-left: 30px;
}

/* Stats */
.founder-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(14, 165, 233, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
}

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

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

/* Experience Cards */
.founder-experience {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.experience-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.12);
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.18);
}

.card-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

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

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Locations Grid */
.locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 25px;
    font-size: 0.95rem;
    color: var(--heading-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.location-badge:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.location-badge i {
    font-size: 0.85rem;
}

/* Qualifications List */
.qualifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qualifications-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
    font-size: 1rem;
    color: var(--text-color);
}

.qualifications-list li:last-child {
    border-bottom: none;
}

.qualifications-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Philosophy Section */
.founder-philosophy {
    background: white;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.12);
    margin-bottom: 40px;
}

.philosophy-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.philosophy-header i {
    font-size: 3rem;
    color: var(--primary-color);
}

.philosophy-header h3 {
    font-size: 1.8rem;
    color: var(--heading-color);
    font-weight: 600;
    margin: 0;
}

.philosophy-content {
    display: grid;
    gap: 30px;
}

.philosophy-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, rgba(6, 182, 212, 0.02) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
    transform: translateX(5px);
}

.philosophy-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

.philosophy-icon i {
    font-size: 1.5rem;
    color: white;
}

.philosophy-text h4 {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.philosophy-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

/* Founder CTA */
.founder-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(14, 165, 233, 0.3);
}

.founder-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-signature {
    text-align: center;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.cta-signature strong {
    display: block !important;
    font-size: 2rem;
    color: white !important;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-signature span {
    display: block !important;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95) !important;
    font-style: italic;
}

.cta-content i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    display: block;
}

.cta-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: white;
    font-style: italic;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .founder-experience {
        grid-template-columns: 1fr;
    }

    .founder-image-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .founder-image-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

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

    .founder-image-section {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .founder-image-card {
        padding: 15px;
    }

    .founder-image-wrapper img {
        height: 350px;
    }

    .founder-quote {
        padding: 30px 25px;
    }

    .founder-quote p {
        font-size: 1.1rem;
        padding-left: 20px;
    }

    .founder-stats {
        grid-template-columns: 1fr;
    }

    .experience-card {
        flex-direction: column;
        padding: 25px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .locations-grid {
        gap: 8px;
    }

    .location-badge {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .founder-philosophy {
        padding: 30px 20px;
    }

    .philosophy-item {
        flex-direction: column;
        padding: 20px;
    }

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

    .founder-cta {
        padding: 35px 25px;
    }

    .cta-signature {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .cta-signature strong {
        font-size: 1.6rem !important;
    }

    .cta-signature span {
        font-size: 1rem !important;
    }

    .cta-text {
        font-size: 1.1rem;
    }
}
