/* CSS Variables - Professional Color Palette */
:root {
    /* Primary Colors - Logo Based */
    --primary-navy: #2D3748;      /* Logo's deep navy */
    --primary-purple: #4C1D95;    /* Logo's rich purple */
    --accent-purple: #7C3AED;     /* Logo's vibrant purple */
    
    /* Accent Colors - Logo's Orange Details */
    --accent-orange: #FF6B35;     /* Logo's orange accent */
    --accent-orange-light: #FF8A65; /* Light orange variant */
    --accent-orange-dark: #E55A2B;  /* Dark orange variant */
    
    /* Supporting Colors */
    --text-primary: #1A202C;      /* Dark text */
    --text-secondary: #4A5568;    /* Secondary text */
    --text-light: #718096;        /* Light text */
    --white: #FFFFFF;
    --white-transparent: rgba(255, 255, 255, 0.95);
    --shadow-primary: rgba(45, 55, 72, 0.1);
    --shadow-purple: rgba(76, 29, 149, 0.1);
    --shadow-orange: rgba(255, 107, 53, 0.1);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #2D3748 0%, #4C1D95 20%, #4C1D95 50%, #7C3AED 80%, #2D3748 100%);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Wavy Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        /* Hero-style color waves - multiple layers */
        radial-gradient(
            ellipse 1000px 500px at 20% 30%,
            rgba(45, 55, 72, 0.8) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 800px 400px at 80% 70%,
            rgba(76, 29, 149, 0.6) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 900px 450px at 40% 80%,
            rgba(76, 29, 149, 0.7) 0%,
            transparent 60%
        ),
        /* Additional hero-style wave layers */
        radial-gradient(
            ellipse 600px 300px at 60% 20%,
            rgba(124, 58, 237, 0.5) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 500px 250px at 10% 60%,
            rgba(45, 55, 72, 0.6) 0%,
            transparent 75%
        ),
        radial-gradient(
            ellipse 1100px 550px at 90% 40%,
            rgba(76, 29, 149, 0.4) 0%,
            transparent 80%
        );
    background-size: 1400px 1400px, 1200px 1200px, 1300px 1300px, 1000px 1000px, 800px 800px, 1600px 1600px;
    z-index: -2;
    opacity: 1.0;
    animation: wavy-move 35s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Wavy Lines Pattern */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(100, 149, 237, 0.20) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(176, 196, 222, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 40% 80%, rgba(135, 206, 235, 0.12) 0%, transparent 60%),
        /* Additional wave patterns */
        radial-gradient(ellipse at 60% 20%, rgba(100, 149, 237, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse at 10% 60%, rgba(176, 196, 222, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse at 90% 40%, rgba(135, 206, 235, 0.06) 0%, transparent 70%);
    z-index: -1;
    opacity: 1.0;
    animation: wavy-move 25s cubic-bezier(0.4, 0, 0.2, 1) infinite reverse;
}

/* Additional Wavy Lines Animation */
@keyframes wavy-move {
    0% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
    }
    20% {
        transform: translateX(-5px) translateY(-3px) rotate(0.5deg) scale(1.02);
    }
    40% {
        transform: translateX(3px) translateY(-6px) rotate(-0.3deg) scale(0.98);
    }
    60% {
        transform: translateX(-2px) translateY(2px) rotate(0.2deg) scale(1.01);
    }
    80% {
        transform: translateX(4px) translateY(-1px) rotate(-0.1deg) scale(0.99);
    }
    100% {
        transform: translateX(0) translateY(0) rotate(0deg) scale(1);
    }
}

/* Floating wavy lines */
.background-shapes::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(100, 149, 237, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(176, 196, 222, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(135, 206, 235, 0.10) 0%, transparent 60%),
        /* Additional floating waves */
        radial-gradient(circle at 15% 85%, rgba(100, 149, 237, 0.08) 0%, transparent 70%),
        radial-gradient(circle at 85% 15%, rgba(176, 196, 222, 0.06) 0%, transparent 70%),
        radial-gradient(circle at 35% 65%, rgba(135, 206, 235, 0.05) 0%, transparent 70%);
    z-index: -3;
    opacity: 1.0;
    animation: wavy-move 30s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Background Shapes */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -4;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #87CEEB, #B0E0E6);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #F5F5DC, #E6E6FA);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ADD8E6, #E0F6FF);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #F0F8FF, #E6F3FF);
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #B0E0E6, #F5F5DC);
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(90deg) scale(1.05);
    }
    50% {
        transform: translateY(-25px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translateY(-10px) rotate(270deg) scale(1.02);
    }
}

/* Header */
.header {
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(52, 73, 94, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Header when scrolled */
.header.scrolled {
    background: rgba(44, 62, 80, 0.98);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(52, 73, 94, 0.4);
}

/* Dropdown when header is scrolled */
.header.scrolled .dropdown-menu {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(135, 206, 250, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

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

.kite-icon {
    font-size: 2rem;
    animation: kite-float 3s ease-in-out infinite;
}

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

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
}

/* Navigation */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3498DB;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(135, 206, 250, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: rgba(135, 206, 250, 0.1);
    color: #3498DB;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #3498DB, #2980B9);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.header-contact-dropdown {
    position: relative;
    display: inline-block;
}

.contact-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 206, 250, 0.2);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    width: 280px;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.contact-dropdown-content.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-contact-link {
    display: block;
    color: #2563EB;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-contact-link:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateX(5px);
}

.dropdown-phones {
    border-top: 1px solid rgba(135, 206, 250, 0.2);
    padding-top: 12px;
    margin-top: 12px;
}

.dropdown-phone {
    display: block;
    color: #5B21B6;
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.dropdown-phone:hover {
    background: rgba(91, 33, 182, 0.1);
    transform: translateX(5px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(45, 55, 72, 0.3);
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {
    0%, 100% { text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
    50% { text-shadow: 0 2px 8px rgba(52, 152, 219, 0.3); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3498DB, #2980B9);
    margin: 0 auto;
    border-radius: 2px;
    animation: underline-pulse 2s ease-in-out infinite;
}

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

/* Question Section */
.question-section {
    padding: 60px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.question-text {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 500;
    animation: question-fade 2s ease-in-out infinite;
}

@keyframes question-fade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(45, 55, 72, 0.15);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(45, 55, 72, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
}

.card-icon {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(45deg, #2D3748 0%, #4C1D95 25%, #4C1D95 60%, #7C3AED 85%, #2D3748 100%);
    backdrop-filter: blur(5px);
}

.curved-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: -1;
}

.mission-vision .container {
    position: relative;
    z-index: 2;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.left-section {
    text-align: left;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.illustration {
    margin-bottom: 40px;
    animation: illustration-float 4s ease-in-out infinite;
}

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

.quote-section {
    text-align: center;
    margin-bottom: 30px;
}

.quote {
    margin-bottom: 20px;
}

.quote-line {
    font-size: 1.4rem;
    color: #2C3E50;
    font-weight: 500;
    margin-bottom: 10px;
}

.quote-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4A90E2, #2D3748);
    margin: 10px auto;
    border-radius: 2px;
    animation: underline-grow 2s ease-in-out infinite;
}

@keyframes underline-grow {
    0%, 100% { width: 60px; }
    50% { width: 80px; }
}

.quote-author {
    font-size: 1rem;
    color: #7F8C8D;
    font-style: italic;
}

.right-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mission-block,
.vision-block {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
}

.mission-block {
    animation: slideInRight 1s ease-out;
}

.vision-block {
    animation: slideInRight 1s ease-out 0.3s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4A90E2, #2D3748);
    border-radius: 2px;
}

.content-box {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(245, 245, 220, 0.05));
    border-radius: 10px;
    z-index: -1;
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.content-text {
    color: var(--white);
    line-height: 1.6;
        font-size: 1rem;
}

/* Student Coaching Section */
.student-coaching {
    padding: 100px 0;
    background: linear-gradient(225deg, #2D3748 0%, #4C1D95 30%, #4C1D95 55%, #7C3AED 75%, #2D3748 100%);
    backdrop-filter: blur(5px);
}

.coaching-header {
    text-align: center;
    margin-bottom: 60px;
}

.coaching-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.coaching-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-navy));
    border-radius: 2px;
}

.coaching-description {
    font-size: 1.2rem;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.coaching-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px auto 0 auto;
    max-width: 1400px;
    padding: 0 20px;
    justify-content: center;
}

.coaching-block {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.coaching-block:hover::before {
    left: 100%;
}

.coaching-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coaching-icon {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.coaching-block:hover .coaching-icon {
    transform: scale(1.1);
}

.coaching-block:hover .coaching-icon svg {
    filter: drop-shadow(0 4px 8px rgba(52, 152, 219, 0.3));
}

.coaching-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.coaching-block:hover .coaching-item-title {
    color: #3498DB;
}

.coaching-item-text {
    color: #5D6D7E;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.coaching-link {
    color: #3498DB;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.coaching-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498DB;
    transition: width 0.3s ease;
}

.coaching-block:hover .coaching-link::after {
    width: 100%;
}

.coaching-block:hover .coaching-link {
    color: #2980B9;
}

.coaching-icon svg {
    transition: all 0.3s ease;
}

.coaching-block:hover .coaching-icon svg circle:first-child {
    fill: rgba(52, 152, 219, 0.2);
}

.coaching-block:hover .coaching-icon svg path,
.coaching-block:hover .coaching-icon svg rect {
    stroke: #3498DB;
    stroke-width: 2.5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .coaching-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        justify-content: center;
        padding: 0 15px;
    }
    
    .coaching-block {
        padding: 25px;
    }
    
    .coaching-title {
        font-size: 2.2rem;
    }
    
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    /* Mission Vision Mobile Styles */
    .mission-vision {
        padding: 60px 0;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .quote-section {
        order: 1;
        margin-bottom: 20px;
    }
    
    .illustration {
        order: 2;
        margin: 20px 0;
    }
    
    .right-section {
        order: 3;
        gap: 30px;
    }
    
    .people-image {
        width: 100% !important;
        max-width: 300px !important;
        height: auto !important;
    }
    
    .quote-line {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .quote-author {
        font-size: 0.9rem;
        margin-top: 15px;
    }
    
    .mission-block,
    .vision-block {
        padding: 20px;
        margin: 0 10px;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .content-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Services Mobile Styles */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding: 0 10px;
        max-width: 600px;
    }
    
    /* Fine Arts Mobile Styles */
    .fine-arts-section {
        padding: 30px 0 60px 0;
    }
    
    .fine-arts-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .fine-arts-title {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .fine-arts-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .fine-arts-subtitle {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 20px;
    }
    
    .fine-arts-visual-content {
        flex: 1;
        align-items: center;
        padding-bottom: 0;
        margin-top: 20px;
    }
    
    .fine-arts-image {
        max-width: 75%;
        border-radius: 15px;
        background: transparent;
        box-shadow: none;
    }

    /* Art Portfolio Mobile Styles */
    .art-portfolio-section {
        padding: 30px 0 60px 0;
    }
    
    .art-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .art-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .art-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .art-cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .art-visual-content {
        flex: 1;
    }
    
    .art-image {
        max-width: 70%;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    /* International Portfolio Mobile Styles */
    .international-portfolio-section {
        padding: 30px 0 60px 0;
    }
    
    .international-portfolio-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .international-portfolio-text-content {
        order: 1;
        margin-bottom: 10px;
    }
    
    .international-portfolio-title {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .international-portfolio-description {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .international-portfolio-visual-content {
        flex: 1;
        align-items: flex-start;
        padding-bottom: 0;
        margin-top: 0;
        order: 2;
    }
    
    .international-portfolio-image {
        max-width: 55%;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    /* Mountain Contact Mobile Styles */
    .mountain-contact-section {
        padding: 60px 0 80px 0;
        background-attachment: scroll;
        min-height: 500px;
    }
    
    .mountain-contact-title {
        font-size: 3rem;
        margin-bottom: 40px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .contact-coaches-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .coach-contact-card {
        padding: 30px 15px;
    }
    
    .quick-call-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    /* Header Mobile Styles */
    .header .container {
        padding: 10px 15px;
        overflow-x: hidden;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .nav-list {
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .nav-list::-webkit-scrollbar {
        display: none;
    }
    
    .nav-link {
        font-size: 0.75rem;
        white-space: nowrap;
        padding: 5px 8px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu {
        min-width: 150px;
        font-size: 0.7rem;
    }
    
    .dropdown-menu li a {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .cta-button {
        padding: 8px 12px;
        font-size: 0.7rem;
        border-radius: 4px;
    }
    
    .student-coaching {
        padding: 60px 0;
    }
    
    .coaching-header {
        margin-bottom: 40px;
    }
    
    .coaching-title {
        font-size: 2rem;
    }
    
    .coaching-description {
        font-size: 1.1rem;
    }
    
    .coaching-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        justify-content: center;
        padding: 0 10px;
    }
    
    .service-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }
    
    .coaching-block {
        padding: 20px;
    }
    
    .coaching-item-title {
        font-size: 1.1rem;
    }
    
    .coaching-item-text {
        font-size: 0.9rem;
    }
    
    .coaching-link {
        font-size: 0.9rem;
    }
    
    .coaching-icon svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    /* Mission Vision Small Mobile */
    .mission-vision {
        padding: 40px 0;
    }
    
    .mission-vision-grid {
        gap: 25px;
        padding: 0 15px;
    }
    
    .quote-line {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 6px;
    }
    
    .quote-author {
        font-size: 0.8rem;
        margin-top: 12px;
    }
    
    .people-image {
        max-width: 250px !important;
    }
    
    .mission-block,
    .vision-block {
        padding: 15px;
        margin: 0 5px;
    }
    
    .section-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .content-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
    }
    
    .student-coaching {
        padding: 40px 0;
    }
    
    .coaching-header {
        margin-bottom: 30px;
    }
    
    .coaching-title {
        font-size: 1.8rem;
    }
    
    .coaching-description {
        font-size: 1rem;
    }
    
    .coaching-grid {
        gap: 15px;
        justify-content: center;
        padding: 0 5px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
    }
    
    .coaching-block {
        padding: 15px;
    }
    
    .coaching-item-title {
        font-size: 1rem;
    }
    
    .coaching-item-text {
        font-size: 0.85rem;
    }
    
    .coaching-link {
        font-size: 0.85rem;
    }
    
    .coaching-icon {
        margin-bottom: 15px;
    }
    
    .coaching-icon svg {
        width: 45px;
        height: 45px;
    }
}

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

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

.hero-content,
.service-card:nth-child(1) {
    animation: fadeInUp 1s ease-out;
}

.service-card:nth-child(2) {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.service-card:nth-child(3) {
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Rest of the existing styles remain the same but with updated colors */

/* Birkman Coaching Section */
.birkman-coaching {
    padding: 80px 0;
    background: linear-gradient(60deg, #2D3748 0%, #4C1D95 20%, #4C1D95 50%, #7C3AED 80%, #2D3748 100%);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

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

.birkman-title-section {
    margin-bottom: 60px;
}

.birkman-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(45, 55, 72, 0.3);
}

.birkman-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--white);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.birkman-simple-layout {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin: 0 auto 60px auto;
    max-width: 1000px;
    padding: 0 20px;
}

.birkman-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 206, 250, 0.2);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.birkman-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
}

.birkman-card .card-icon {
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.birkman-card:hover .card-icon {
    transform: scale(1.1);
}

.birkman-card .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-subtitle {
    font-size: 1rem;
    color: var(--white);
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.birkman-description {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 206, 250, 0.2);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.birkman-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
    font-weight: 400;
    margin: 0;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 40px;
    padding: 40px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.company-logos::-webkit-scrollbar {
    display: none;
}

.logo-item {
    transition: all 0.3s ease;
    filter: none;
    flex-shrink: 0;
    min-width: 80px;
}

.logo-item:hover {
    transform: scale(1.15);
    filter: brightness(1.1);
}

/* Art Coaching Section */
.art-coaching {
    padding: 80px 0;
    background: linear-gradient(120deg, #2D3748 0%, #4C1D95 20%, #4C1D95 50%, #7C3AED 80%, #2D3748 100%);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

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

.art-header {
    text-align: center;
    margin-bottom: 60px;
}

.art-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(45, 55, 72, 0.3);
}

.art-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--white);
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 30px;
}

.art-cta-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.art-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.art-program-details {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 206, 250, 0.2);
    border-radius: 15px;
    padding: 50px 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.program-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
    text-align: center;
}

.program-content {
    display: grid;
    gap: 40px;
}

.program-section {
    border-left: 4px solid #3498DB;
    padding-left: 25px;
}

.program-section .section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

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

.program-list li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5D6D7E;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.program-list li::before {
    content: '•';
    color: #3498DB;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.art-services {
    margin-top: 60px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center;
}

.art-service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 206, 250, 0.3);
    border-radius: 15px;
    padding: 15px 10px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.art-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
}

.service-icon {
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.art-service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2C3E50;
    margin: 0;
    line-height: 1.2;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(270deg, #2D3748 0%, #4C1D95 20%, #4C1D95 50%, #7C3AED 80%, #2D3748 100%);
    backdrop-filter: blur(5px);
    position: relative;
}

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

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.contact-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    font-family: 'Inter', sans-serif;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(45, 55, 72, 0.15);
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.category-badge {
    background: rgba(255, 107, 53, 0.1);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.quote-mark {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    flex-grow: 1;
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    margin-top: auto;
}

/* ICF Coaches Section */
.icf-coaches-section {
        padding: 60px 0;
    background: linear-gradient(180deg, #2D3748 0%, #4C1D95 25%, #4C1D95 60%, #7C3AED 80%, #2D3748 100%);
    backdrop-filter: blur(5px);
    position: relative;
}

.icf-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.icf-text-section {
    padding-right: 30px;
}

.icf-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
        margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(45, 55, 72, 0.3);
}

.icf-description {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--white);
    text-align: justify;
}

.icf-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icf-illustration svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.icf-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    margin-top: 50px;
}

.icf-feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 206, 250, 0.2);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
}

.icf-feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.4;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
        margin-bottom: 25px;
    text-align: justify;
}

.feature-subtext {
        font-size: 1.1rem;
    font-weight: 500;
    color: var(--accent-orange);
    margin-top: 20px;
    font-style: italic;
}

.icf-cta-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
        font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    margin-top: 20px;
}

.icf-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

/* Partnership Section */
.partnership-section {
    padding: 50px 0;
    background: linear-gradient(315deg, #2D3748 0%, #4C1D95 15%, #4C1D95 45%, #7C3AED 70%, #2D3748 100%);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.partnership-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.partnership-logos .logo-item {
    flex: 0 1 auto;
    text-align: center;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 2px 10px rgba(45, 55, 72, 0.1);
}

.partnership-logos .logo-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
}

.partnership-logos .logo-item .logo-image {
    width: 180px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.partnership-logos .logo-item:hover .logo-image {
    transform: scale(1.1);
}

/* About Us Section */
.about-us-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #2D3748 0%, #4C1D95 20%, #4C1D95 50%, #7C3AED 80%, #2D3748 100%);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.about-us-title {
        font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(45, 55, 72, 0.2);
}

.team-grid {
    display: grid;
        grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-member {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
        gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(52, 152, 219, 0.3);
}

.member-photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(52, 152, 219, 0.3);
}

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

.team-member:hover .member-image {
    transform: scale(1.05);
}

.member-info {
    flex: 1;
    min-width: 0;
}

.member-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.member-bio {
    color: #5D6D7E;
    line-height: 1.6;
        font-size: 1rem;
    }

.member-bio p {
    margin-bottom: 15px;
}

.credentials {
    margin-top: 20px;
    padding: 20px;
    background: rgba(52, 152, 219, 0.05);
    border-radius: 10px;
    border-left: 4px solid #3498DB;
}

.credentials p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #5D6D7E;
}

.credentials strong {
    color: #2C3E50;
    font-weight: 600;
}

/* Art Portfolio Section */
.art-portfolio-section {
    padding: 40px 0 100px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 20%, #E2E8F0 50%, #CBD5E1 80%, #94A3B8 100%);
    position: relative;
    overflow: hidden;
}

.art-portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse 1200px 600px at 10% 30%, rgba(148, 163, 184, 0.10) 0%, rgba(148, 163, 184, 0.05) 40%, transparent 80%),
        radial-gradient(ellipse 1400px 700px at 90% 70%, rgba(100, 116, 139, 0.08) 0%, rgba(100, 116, 139, 0.04) 40%, transparent 80%),
        radial-gradient(ellipse 1000px 500px at 50% 50%, rgba(226, 232, 240, 0.08) 0%, rgba(226, 232, 240, 0.04) 40%, transparent 80%);
    background-size: 1800px 1800px, 2000px 2000px, 1500px 1500px;
    animation: gentleWaveFloat 45s ease-in-out infinite;
    z-index: 1;
}

.art-portfolio-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(148, 163, 184, 0.06) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(100, 116, 139, 0.05) 50%, transparent 70%),
        radial-gradient(circle at 30% 70%, rgba(226, 232, 240, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(203, 213, 225, 0.06) 0%, transparent 60%);
    background-size: 800px 800px, 900px 900px, 600px 600px, 700px 700px;
    animation: gentleWaveMove 55s ease-in-out infinite;
    z-index: 2;
}

@keyframes gentleWaveFloat {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1); 
        opacity: 0.8;
    }
    25% { 
        transform: translateX(8px) translateY(-5px) scale(1.02); 
        opacity: 0.9;
    }
    50% { 
        transform: translateX(-5px) translateY(-8px) scale(0.98); 
        opacity: 1;
    }
    75% { 
        transform: translateX(-8px) translateY(5px) scale(1.01); 
        opacity: 0.85;
    }
}

@keyframes gentleWaveMove {
    0% { 
        transform: translateX(-20px) translateY(0) rotate(0deg); 
        opacity: 0.7;
    }
    25% { 
        transform: translateX(10px) translateY(-8px) rotate(45deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translateX(20px) translateY(5px) rotate(90deg); 
        opacity: 0.9;
    }
    75% { 
        transform: translateX(-10px) translateY(-5px) rotate(135deg); 
        opacity: 0.75;
    }
    100% { 
        transform: translateX(-20px) translateY(0) rotate(180deg); 
        opacity: 0.7;
    }
}

.art-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.art-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.art-text-content {
    flex: 1;
    color: var(--white);
}

.art-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(45, 55, 72, 0.3);
    letter-spacing: 2px;
}

.art-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--white);
    font-weight: 300;
    text-shadow: 0 1px 4px rgba(45, 55, 72, 0.3);
}

.art-cta-button {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--white);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.art-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, var(--accent-orange-dark), var(--accent-orange));
}

.icf-contact-info {
    text-align: center;
    margin-bottom: 40px;
}

.contact-details {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.contact-detail-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-detail-link:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.phone-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.phone-item {
    color: var(--accent-orange);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 15px;
    background: rgba(255, 107, 53, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.phone-item:hover {
    background: rgba(91, 33, 182, 0.2);
    transform: translateY(-2px);
}

.phone-item:hover::after {
    content: "📞 Hızlı Ara";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #5B21B6;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(91, 33, 182, 0.3);
    animation: fadeInUp 0.3s ease;
}

/* Phone item link styles */
.phone-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.phone-item-link:hover {
    transform: translateY(-2px);
}

.phone-item-link:hover .phone-item {
    background: rgba(91, 33, 182, 0.25);
    box-shadow: 0 6px 20px rgba(91, 33, 182, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.art-visual-content {
    flex: 0.7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.art-image {
    max-width: 75%;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 8px 25px rgba(107, 70, 193, 0.15));
}

/* Fine Arts Section */
.fine-arts-section {
    padding: 40px 0 100px 0;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 20%, #BAE6FD 50%, #93C5FD 80%, #3B82F6 100%);
    position: relative;
    overflow: hidden;
}

.fine-arts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse 1200px 600px at 10% 30%, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 40%, transparent 80%),
        radial-gradient(ellipse 1400px 700px at 90% 70%, rgba(30, 64, 175, 0.12) 0%, rgba(30, 64, 175, 0.06) 40%, transparent 80%),
        radial-gradient(ellipse 1000px 500px at 50% 50%, rgba(186, 230, 253, 0.12) 0%, rgba(186, 230, 253, 0.06) 40%, transparent 80%);
    background-size: 1800px 1800px, 2000px 2000px, 1500px 1500px;
    animation: gentleWaveFloat 45s ease-in-out infinite;
    z-index: 1;
}

.fine-arts-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.10) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(30, 64, 175, 0.08) 50%, transparent 70%),
        radial-gradient(circle at 30% 70%, rgba(186, 230, 253, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(147, 197, 253, 0.08) 0%, transparent 60%);
    background-size: 800px 800px, 900px 900px, 600px 600px, 700px 700px;
    animation: gentleWaveMove 55s ease-in-out infinite;
    z-index: 2;
}

.fine-arts-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.fine-arts-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.fine-arts-text-content {
    flex: 1;
    color: var(--white);
}

.fine-arts-title {
    font-size: 3.2rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(45, 55, 72, 0.3);
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.fine-arts-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--white);
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(45, 55, 72, 0.3);
}

.fine-arts-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 1px 3px rgba(45, 55, 72, 0.3);
}

.fine-arts-list {
    display: flex;
    flex-direction: column;
        gap: 20px;
    }
    
.fine-arts-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(196, 181, 253, 0.3);
    transition: all 0.3s ease;
}

.fine-arts-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.85);
}

.checkmark {
    color: var(--accent-orange);
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 2px;
    flex-shrink: 0;
}

.fine-arts-item span:last-child {
    color: var(--white);
    line-height: 1.6;
    font-size: 1rem;
}

.fine-arts-visual-content {
    flex: 0.7;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 60px;
    margin-top: 40px;
}

.fine-arts-image {
    max-width: 85%;
    height: auto;
    border-radius: 20px;
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 8px 25px rgba(107, 70, 193, 0.15));
}

/* International Portfolio Section */
.international-portfolio-section {
    padding: 40px 0 100px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 20%, #E2E8F0 50%, #CBD5E1 80%, #94A3B8 100%);
    position: relative;
    overflow: hidden;
}

.international-portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse 1200px 600px at 10% 30%, rgba(148, 163, 184, 0.10) 0%, rgba(148, 163, 184, 0.05) 40%, transparent 80%),
        radial-gradient(ellipse 1400px 700px at 90% 70%, rgba(100, 116, 139, 0.08) 0%, rgba(100, 116, 139, 0.04) 40%, transparent 80%),
        radial-gradient(ellipse 1000px 500px at 50% 50%, rgba(226, 232, 240, 0.08) 0%, rgba(226, 232, 240, 0.04) 40%, transparent 80%);
    background-size: 1800px 1800px, 2000px 2000px, 1500px 1500px;
    animation: gentleWaveFloat 45s ease-in-out infinite;
    z-index: 1;
}

.international-portfolio-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(148, 163, 184, 0.06) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(100, 116, 139, 0.05) 50%, transparent 70%),
        radial-gradient(circle at 30% 70%, rgba(226, 232, 240, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(203, 213, 225, 0.06) 0%, transparent 60%);
    background-size: 800px 800px, 900px 900px, 600px 600px, 700px 700px;
    animation: gentleWaveMove 55s ease-in-out infinite;
    z-index: 2;
}

.international-portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

.international-portfolio-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.international-portfolio-text-content {
    flex: 1;
    color: var(--white);
    text-align: center;
}

.international-portfolio-title {
    font-size: 3.2rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(45, 55, 72, 0.3);
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.international-portfolio-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 300;
    text-shadow: 0 1px 4px rgba(45, 55, 72, 0.3);
}

.international-portfolio-visual-content {
    flex: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    margin-top: 0;
}

.international-portfolio-image {
    max-width: 60%;
    height: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    filter: drop-shadow(0 8px 25px rgba(107, 70, 193, 0.15));
}

/* Mountain Contact Section */
.mountain-contact-section {
    position: relative;
    padding: 80px 0 100px 0;
    background: url('bg-mountain.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.mountain-contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 30, 60, 0.7);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.mountain-contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.mountain-contact-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 60px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-value-link {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px 12px;
    display: inline-block;
}

.contact-value-link:hover {
    color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
}

.contact-coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.coach-contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.coach-contact-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.coach-contact-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.coach-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.quick-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--white);
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.quick-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, var(--accent-orange-light), var(--accent-orange));
    border-color: rgba(255, 255, 255, 0.4);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    position: relative;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.contact-description {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding-right: 40px;
}

.info-points {
    margin-bottom: 30px;
}

.info-point {
    margin-bottom: 25px;
}

.point-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.point-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.contact-note {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    font-family: 'Inter', sans-serif;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 206, 250, 0.2);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

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

.submit-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--white);
    border: none;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* Popup Modal Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(45, 55, 72, 0.3);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-header {
    background: linear-gradient(135deg, var(--accent-orange), var(--primary-navy));
    padding: 20px 25px;
    border-radius: 14px 14px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.popup-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.popup-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.popup-body {
    padding: 30px 25px;
    color: var(--white);
    line-height: 1.8;
    font-size: 1.1rem;
}

.popup-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.popup-body ul {
    margin: 20px 0;
    padding-left: 20px;
}

.popup-body li {
    margin-bottom: 10px;
    position: relative;
}

.popup-body li::before {
    content: '•';
    color: var(--accent-orange);
    font-weight: bold;
    position: absolute;
    left: -15px;
}

/* Responsive Design for all sections */
@media (max-width: 1200px) {
    .birkman-simple-layout {
        gap: 25px;
        max-width: 900px;
    }
    
    .birkman-card {
        padding: 35px 20px;
        min-height: 280px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-subtitle {
        font-size: 0.95rem;
    }
    
    .company-logos {
        gap: 20px;
    }
    
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .art-program-details {
        padding: 40px 30px;
    }
    
    .program-title {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-title {
        font-size: 4rem;
    }
    
    .testimonial-card {
        min-height: 260px;
        padding: 20px 15px;
    }
    
    .icf-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .icf-text-section {
        padding-right: 0;
        text-align: center;
    }
    
    .icf-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-member {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .member-photo {
        margin: 0 auto 20px auto;
    }
    
    .about-us-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 20px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .birkman-coaching {
        padding: 60px 0;
    }
    
    .birkman-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .birkman-subtitle {
        font-size: 1.1rem;
    }
    
    .birkman-simple-layout {
        flex-direction: column;
        gap: 20px;
        max-width: 500px;
    }
    
    .birkman-card {
        padding: 30px 20px;
        min-height: 200px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-subtitle {
        font-size: 0.9rem;
    }
    
    .birkman-description {
        padding: 30px 20px;
    }
    
    .birkman-description p {
        font-size: 1rem;
    }
    
    .company-logos {
        gap: 20px;
        padding: 30px 0;
    }
    
    .logo-item {
        min-width: 70px;
    }
    
    .logo-item svg {
        width: 70px;
        height: 45px;
    }
    
    .art-coaching {
        padding: 60px 0;
    }
    
    .art-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .art-description {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .art-cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .art-program-details {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .program-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .program-content {
        gap: 30px;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .program-list li {
        font-size: 1rem;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .art-service-card {
        padding: 12px 8px;
        min-height: 90px;
    }
    
    .service-icon {
        margin-bottom: 6px;
    }
    
    .service-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .service-title {
        font-size: 0.8rem;
    }
    
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 3.5rem;
        margin-bottom: 25px;
    }
    
    .contact-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 20px 15px;
        min-height: 240px;
    }
    
    .category-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .quote-mark {
        font-size: 2.5rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonial-author {
        font-size: 0.9rem;
    }
    
    .icf-coaches-section {
        padding: 60px 0;
    }
    
    .icf-title {
        font-size: 2.5rem;
    }
    
    .icf-description {
        font-size: 1.1rem;
    }
    
    .icf-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .icf-feature-card {
        padding: 30px 20px;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    .partnership-logos {
        gap: 25px;
    }
    
    .partnership-logos .logo-item {
        padding: 12px 15px;
    }
    
    .about-us-section {
        padding: 60px 0;
    }
    
    .about-us-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .team-grid {
        gap: 30px;
    }
    
    .team-member {
        padding: 20px;
        margin: 0 10px;
    }
    
    .member-name {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .member-bio {
        font-size: 0.95rem;
    }
    
    .credentials {
        padding: 15px;
        font-size: 0.85rem;
    }
    
    .member-photo {
        width: 100px;
        height: 100px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-description {
        font-size: 1.1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-container {
        gap: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .popup-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .popup-header {
        padding: 15px 20px;
    }
    
    .popup-title {
        font-size: 1.3rem;
    }
    
    .popup-body {
        padding: 25px 20px;
        font-size: 1rem;
    }
    
    .popup-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .birkman-coaching {
        padding: 40px 0;
    }
    
    .birkman-title {
        font-size: 2rem;
    }
    
    .birkman-subtitle {
        font-size: 1rem;
    }
    
    .birkman-simple-layout {
        gap: 15px;
        max-width: 400px;
    }
    
    .birkman-card {
        padding: 25px 15px;
        min-height: 180px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-subtitle {
        font-size: 0.85rem;
    }
    
    .birkman-description {
        padding: 25px 15px;
    }
    
    .birkman-description p {
        font-size: 0.9rem;
    }
    
    .company-logos {
        gap: 15px;
        padding: 25px 0;
    }
    
    .logo-item {
        min-width: 60px;
    }
    
    .logo-item svg {
        width: 60px;
        height: 40px;
    }
    
    .art-coaching {
        padding: 40px 0;
    }
    
    .art-title {
        font-size: 2rem;
    }
    
    .art-description {
        font-size: 1rem;
    }
    
    .art-cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .art-program-details {
        padding: 25px 15px;
    }
    
    .program-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .program-list li {
        font-size: 0.9rem;
        padding-left: 20px;
    }
    
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 0 5px;
        max-width: 500px;
    }
    
    .art-service-card {
        padding: 10px 5px;
        min-height: 80px;
    }
    
    .service-icon {
        margin-bottom: 4px;
    }
    
    .service-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .service-title {
        font-size: 0.75rem;
        line-height: 1.1;
    }
    
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-title {
        font-size: 3rem;
    }
    
    .contact-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 15px 12px;
        min-height: 220px;
    }
    
    .category-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .quote-mark {
        font-size: 2rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .testimonial-author {
        font-size: 0.85rem;
    }
    
    .icf-title {
        font-size: 2rem;
    }
    
    .icf-description {
        font-size: 1rem;
    }
    
    .icf-feature-card {
        padding: 25px 15px;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
    
    .icf-cta-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .partnership-logos {
        flex-direction: column;
        gap: 20px;
    }
    
    .partnership-logos .logo-item {
        padding: 10px 12px;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .partnership-logos .logo-item .logo-image {
        width: 160px;
        height: 90px;
    }
    
    .about-us-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .team-member {
        padding: 15px;
        margin: 0 5px;
        gap: 20px;
    }
    
    .member-name {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .member-bio {
        font-size: 0.9rem;
    }
    
    .credentials {
        padding: 15px;
        font-size: 0.85rem;
    }
    
    .member-photo {
        width: 90px;
        height: 90px;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .point-title {
        font-size: 1.1rem;
    }
    
    .point-text {
        font-size: 0.9rem;
    }
    
    .popup-content {
        width: 98%;
        max-height: 90vh;
    }
    
    .popup-header {
        padding: 12px 15px;
    }
    
    .popup-title {
        font-size: 1.2rem;
    }
    
    .popup-body {
        padding: 20px 15px;
        font-size: 0.95rem;
    }
}

/* Integrated Success Coaching Section */
.integrated-coaching-section {
    padding: 100px 0;
    background: linear-gradient(150deg, #2D3748 0%, #4C1D95 20%, #4C1D95 50%, #7C3AED 80%, #2D3748 100%);
    position: relative;
    overflow: hidden;
}

.integrated-coaching-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(100, 149, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(176, 196, 222, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(135, 206, 235, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.integrated-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.integrated-text-section {
    padding-right: 40px;
}

.integrated-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(45, 55, 72, 0.3);
    position: relative;
}

.integrated-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-navy));
    border-radius: 2px;
}

.integrated-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: 40px;
    text-align: justify;
}

.integrated-cta-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.integrated-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

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

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

.integrated-diagram-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.diagram-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(45, 55, 72, 0.3);
}

.circular-diagram {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: diagram-float 6s ease-in-out infinite;
}

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

.circular-diagram svg {
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 100%;
    height: auto;
}

.circular-diagram:hover svg {
    transform: scale(1.05);
}

/* Perfect Circle Enhancement */
.circular-diagram svg circle {
    transition: all 0.3s ease;
}

.circular-diagram svg path {
    transition: all 0.3s ease;
}

.circular-diagram:hover svg path {
    filter: brightness(1.1);
}

/* Responsive Design for Integrated Section */
@media (max-width: 1200px) {
    .integrated-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .integrated-text-section {
        padding-right: 0;
        text-align: center;
    }
    
    .integrated-title {
        font-size: 2.5rem;
    }
    
    .diagram-title {
        font-size: 2rem;
    }
    
    .circular-diagram svg {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    .integrated-coaching-section {
        padding: 60px 0;
    }
    
    .integrated-title {
        font-size: 2rem;
    }
    
    .integrated-description {
        font-size: 1.1rem;
    }
    
    .diagram-title {
        font-size: 1.8rem;
    }
    
    .circular-diagram svg {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .integrated-coaching-section {
        padding: 40px 0;
    }
    
    .integrated-title {
        font-size: 1.8rem;
    }
    
    .integrated-description {
    font-size: 1rem;
    }
    
    .diagram-title {
    font-size: 1.5rem;
    }
    
    .circular-diagram svg {
        width: 300px;
        height: 300px;
    }
    
    .integrated-cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Koçluğa Dair Section Styles */
.coaching-about-section {
    padding: 80px 0;
    background: linear-gradient(30deg, #2D3748 0%, #4C1D95 20%, #4C1D95 50%, #7C3AED 80%, #2D3748 100%);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.coaching-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(100, 149, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(176, 196, 222, 0.12) 0%, transparent 50%);
    z-index: -1;
}

.coaching-about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.coaching-about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(45, 55, 72, 0.3);
}

.definition-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.definition-bullet {
    font-size: 1.5rem;
    color: #FF6B35;
    font-weight: bold;
    margin-top: 5px;
    flex-shrink: 0;
}

.definition-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white);
    margin: 0;
}

.definition-text strong {
    color: #FF6B35;
    font-weight: 700;
}

.transition-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(45, 55, 72, 0.3);
}

.coaching-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.puzzle-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.puzzle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    width: 340px;
    height: 340px;
    position: relative;
    transform: perspective(800px) rotateX(8deg) rotateY(-3deg);
    transform-style: preserve-3d;
}

.puzzle-piece {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transform: translateZ(0);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 6px 15px rgba(0, 0, 0, 0.08),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.puzzle-piece::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.8) 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.7;
}

.puzzle-piece::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.4) 0%, 
            rgba(255, 255, 255, 0.1) 30%, 
            transparent 50%, 
            rgba(255, 255, 255, 0.1) 70%, 
            rgba(255, 255, 255, 0.4) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.puzzle-piece:hover::after {
    opacity: 1;
}

/* Hand-drawn effect */
.puzzle-piece::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.8) 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.7;
}

.puzzle-yellow {
    background: 
        radial-gradient(circle at 25% 25%, #FFFACD 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #F0E68C 0%, transparent 50%),
        linear-gradient(135deg, #FFF8DC 0%, #F5DEB3 50%, #DEB887 100%);
    border: 2px solid #DAA520;
    box-shadow: 
        0 12px 35px rgba(218, 165, 32, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 3px 6px rgba(255, 255, 255, 0.5),
        inset 0 -3px 6px rgba(0, 0, 0, 0.1);
}

.puzzle-white {
    background: 
        radial-gradient(circle at 30% 30%, #FFFFFF 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, #F8F9FA 0%, transparent 50%),
        linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 50%, #E8E8E8 100%);
    border: 2px solid #D3D3D3;
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.06),
        inset 0 3px 6px rgba(255, 255, 255, 0.6),
        inset 0 -3px 6px rgba(0, 0, 0, 0.05);
}

.puzzle-blue {
    background: 
        radial-gradient(circle at 25% 25%, #E6F3FF 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, #B0E0E6 0%, transparent 50%),
        linear-gradient(135deg, #E6F3FF 0%, #ADD8E6 50%, #87CEEB 100%);
    border: 2px solid #4682B4;
    color: #2C3E50;
    box-shadow: 
        0 12px 35px rgba(70, 130, 180, 0.25),
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 3px 6px rgba(255, 255, 255, 0.5),
        inset 0 -3px 6px rgba(0, 0, 0, 0.1);
}

.puzzle-piece:hover {
    transform: translateY(-6px) translateZ(15px) scale(1.03);
    box-shadow: 
        0 18px 40px rgba(0, 0, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.08),
        inset 0 4px 8px rgba(255, 255, 255, 0.7),
        inset 0 -4px 8px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.puzzle-piece:active {
    transform: translateY(-3px) translateZ(8px) scale(1.01);
    transition: all 0.2s ease;
}

.puzzle-piece span {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.8px;
    line-height: 1.3;
    padding: 5px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.puzzle-piece span strong {
    font-weight: 900;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(45, 55, 72, 0.3);
    font-size: 1.08em;
    letter-spacing: 0.5px;
}

.puzzle-piece span em {
    font-style: italic;
    font-weight: 700;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(45, 55, 72, 0.3);
    font-size: 0.98em;
    letter-spacing: 0.3px;
}

/* Erickson Coaching Specific Styles */
.erickson-coaching-title {
    text-align: center;
    margin-bottom: 30px;
}

.erickson-coaching-title h3 {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.erickson-piece {
    position: relative;
    min-height: 120px;
    border-radius: 0;
    border: none;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.1);
}

.erickson-piece::before {
    display: none;
}

.erickson-piece::after {
    display: none;
}

/* Puzzle shapes for Erickson pieces */
.erickson-piece.puzzle-yellow {
    background: #F4D03F;
    clip-path: polygon(0% 20%, 15% 0%, 35% 0%, 50% 15%, 85% 0%, 100% 0%, 100% 20%, 85% 35%, 100% 50%, 100% 85%, 85% 100%, 50% 85%, 35% 100%, 15% 100%, 0% 85%, 15% 50%, 0% 35%);
}

.erickson-piece.puzzle-light-gray {
    background: #ECF0F1;
    clip-path: polygon(15% 0%, 50% 15%, 85% 0%, 100% 15%, 85% 35%, 100% 50%, 85% 65%, 100% 85%, 85% 100%, 50% 85%, 15% 100%, 0% 85%, 15% 65%, 0% 50%, 15% 35%, 0% 15%);
}

.erickson-piece.puzzle-gray {
    background: #BDC3C7;
    clip-path: polygon(15% 0%, 35% 0%, 50% 15%, 85% 0%, 100% 15%, 100% 35%, 85% 50%, 100% 65%, 100% 85%, 85% 100%, 65% 100%, 50% 85%, 15% 100%, 0% 85%, 0% 65%, 15% 50%, 0% 35%, 0% 15%);
}

.erickson-piece.puzzle-blue {
    background: #85C1E9;
    clip-path: polygon(0% 15%, 15% 0%, 50% 15%, 65% 0%, 85% 0%, 100% 15%, 85% 35%, 100% 50%, 85% 65%, 100% 85%, 85% 100%, 50% 85%, 35% 100%, 15% 100%, 0% 85%, 15% 50%, 0% 35%);
}

.erickson-piece span {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    text-shadow: none;
    background: none;
    backdrop-filter: none;
    border-radius: 0;
    border: none;
    padding: 0;
}

.erickson-piece span strong {
    font-weight: 700;
    color: var(--white);
}

.erickson-piece span em {
    font-style: italic;
    font-weight: 600;
    color: var(--white);
}

/* Puzzle Grid Animation */
@keyframes puzzle-float {
    0%, 100% {
        transform: perspective(800px) rotateX(8deg) rotateY(-3deg) translateY(0px);
    }
    50% {
        transform: perspective(800px) rotateX(8deg) rotateY(-3deg) translateY(-8px);
    }
}

.puzzle-grid {
    animation: puzzle-float 8s ease-in-out infinite;
}

/* Individual piece entrance animation */
.puzzle-piece:nth-child(1) {
    animation: piece-entrance 1s ease-out 0.2s both;
}

.puzzle-piece:nth-child(2) {
    animation: piece-entrance 1s ease-out 0.4s both;
}

.puzzle-piece:nth-child(3) {
    animation: piece-entrance 1s ease-out 0.6s both;
}

.puzzle-piece:nth-child(4) {
    animation: piece-entrance 1s ease-out 0.8s both;
}

@keyframes piece-entrance {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.7) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotate(0deg);
    }
}

/* Hand-drawn texture effect */
.puzzle-piece::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.7) 0%, transparent 50%),
        linear-gradient(45deg, 
            rgba(255, 255, 255, 0.8) 0%, 
            rgba(255, 255, 255, 0.4) 50%, 
            rgba(255, 255, 255, 0.8) 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.8;
    filter: blur(0.5px);
}

.bullet-points-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.coaching-bullets li {
    position: relative;
    padding: 12px 0 12px 30px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.coaching-bullets li:last-child {
    border-bottom: none;
}

.coaching-bullets li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 12px;
    color: #FF6B35;
    font-size: 1.2rem;
    font-weight: bold;
}

.coaching-bullets li:hover {
    background: rgba(255, 107, 53, 0.05);
    padding-left: 35px;
    border-radius: 8px;
}

/* Responsive Design for Koçluğa Dair Section */
@media (max-width: 1200px) {
    .coaching-visual-grid {
    gap: 40px;
    }
    
    .puzzle-grid {
        width: 300px;
        height: 300px;
        transform: perspective(700px) rotateX(6deg) rotateY(-2deg);
    }
    
    .puzzle-piece {
        padding: 25px 20px;
        font-size: 0.85rem;
        border-radius: 18px;
    }
    
    .puzzle-piece span {
        padding: 4px 6px;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    .coaching-about-section {
        padding: 60px 0;
    }
    
    .coaching-about-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .definition-box {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .definition-text {
        font-size: 1rem;
    }
    
    .transition-text {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .coaching-visual-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .puzzle-grid {
        width: 240px;
        height: 240px;
        transform: perspective(500px) rotateX(4deg) rotateY(-1deg);
    }
    
    .puzzle-piece {
        padding: 20px 15px;
        font-size: 0.75rem;
        border-radius: 16px;
    }
    
    .puzzle-piece span {
        padding: 3px 5px;
    border-radius: 8px;
        font-size: 0.7rem;
    }
    
    .bullet-points-section {
        padding: 20px;
    }
    
    .coaching-bullets li {
        font-size: 0.9rem;
        padding: 10px 0 10px 25px;
    }
}

@media (max-width: 480px) {
    .coaching-about-section {
        padding: 40px 0;
    }
    
    .coaching-about-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .definition-box {
        padding: 15px;
        margin-bottom: 20px;
        flex-direction: column;
        gap: 10px;
    }
    
    .definition-bullet {
        align-self: center;
    }
    
    .definition-text {
        font-size: 0.9rem;
    }
    
    .transition-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .puzzle-grid {
    width: 180px;
        height: 180px;
        gap: 8px;
        transform: perspective(300px) rotateX(2deg) rotateY(-0.5deg);
    }
    
    .puzzle-piece {
        padding: 15px 10px;
        font-size: 0.65rem;
        border-radius: 14px;
    }
    
    .puzzle-piece span {
        padding: 2px 4px;
        border-radius: 6px;
        font-size: 0.6rem;
    }
    
    .bullet-points-section {
        padding: 15px;
    }
    
    .coaching-bullets li {
        font-size: 0.8rem;
        padding: 8px 0 8px 20px;
    }
}

/* Koçluk Bilgilendirme Section Styles */
.coaching-info-section {
    padding: 80px 0;
    background: linear-gradient(105deg, #2D3748 0%, #4C1D95 20%, #4C1D95 50%, #7C3AED 80%, #2D3748 100%);
    position: relative;
    overflow: hidden;
}

.coaching-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 40%, rgba(45, 55, 72, 0.3) 0%, transparent 70%),
        radial-gradient(ellipse at 80% 60%, rgba(76, 29, 149, 0.25) 0%, transparent 65%),
        radial-gradient(ellipse at 40% 80%, rgba(124, 58, 237, 0.2) 0%, transparent 60%);
    z-index: 1;
    animation: softWaves 8s ease-in-out infinite;
}

.coaching-info-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(
            45deg,
            transparent 0%,
            rgba(45, 55, 72, 0.05) 10%,
            transparent 20%,
            rgba(76, 29, 149, 0.08) 30%,
            transparent 40%,
            rgba(124, 58, 237, 0.04) 50%,
            transparent 60%,
            rgba(45, 55, 72, 0.06) 70%,
            transparent 80%,
            rgba(76, 29, 149, 0.05) 90%,
            transparent 100%
        ),
        radial-gradient(ellipse at 60% 20%, rgba(45, 55, 72, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(76, 29, 149, 0.08) 0%, transparent 40%);
    z-index: 2;
    animation: whiteWaves 12s ease-in-out infinite;
}

@keyframes softWaves {
    0%, 100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
    25% {
        opacity: 0.9;
        transform: translateY(-2px) scale(1.02);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-4px) scale(1.03);
    }
    75% {
        opacity: 0.9;
        transform: translateY(-2px) scale(1.01);
    }
}

@keyframes whiteWaves {
    0% {
        transform: translateX(-100px) translateY(0px);
        opacity: 0.8;
    }
    25% {
        transform: translateX(-50px) translateY(-3px);
        opacity: 0.6;
    }
    50% {
        transform: translateX(0px) translateY(-5px);
        opacity: 0.7;
    }
    75% {
        transform: translateX(50px) translateY(-3px);
        opacity: 0.5;
    }
    100% {
        transform: translateX(100px) translateY(0px);
        opacity: 0.8;
    }
}

.coaching-info-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.coaching-info-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
    text-shadow: 2px 2px 4px rgba(45, 55, 72, 0.3);
}

.coaching-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.info-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    text-shadow: 1px 1px 3px rgba(45, 55, 72, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light), var(--accent-orange-dark));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    border-left: 4px solid #FFB366;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.item-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(255, 107, 53, 0.4);
}

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

.item-text strong {
    color: var(--white);
    font-weight: 700;
}

.coach-actions-visual {
    text-align: center;
    margin: 30px 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.coach-actions-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.coach-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 25px;
    max-width: 600px;
    margin: 0 auto 25px auto;
    justify-items: center;
    align-items: center;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(255, 179, 102, 0.2);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    height: 180px;
    width: 180px;
}

.action-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 179, 102, 0.4);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.action-icon {
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.action-icon svg {
    width: 50px;
    height: 50px;
}

.action-item:hover .action-icon {
    transform: scale(1.05);
}

.action-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    letter-spacing: 0.3px;
    line-height: 1.2;
}

.coach-principle {
    background: rgba(255, 255, 255, 0.7);
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 179, 102, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.principle-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design for Koçluk Bilgilendirme Section */
@media (max-width: 1200px) {
    .coaching-info-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
    
    .info-section {
        padding: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .coach-actions-visual {
        margin: 20px 0;
        padding: 6px;
    }
    
    .coach-actions-image {
        max-width: 100%;
    }
    
    .coach-actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 500px;
        margin: 0 auto 25px auto;
        justify-items: center;
        align-items: center;
    }
    
    .action-item {
        height: 150px;
        width: 150px;
        padding: 15px;
    }
    
    .action-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .action-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .coaching-info-section {
        padding: 60px 0;
    }
    
    .coaching-info-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .info-section {
        padding: 25px;
    }
    
    .section-title {
        font-size: 1.5rem;
    margin-bottom: 25px;
    }
    
    .info-content {
        gap: 20px;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .item-title {
    font-size: 1.1rem;
    }
    
    .item-text {
        font-size: 0.9rem;
    }
    
    .coach-actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 400px;
        margin: 0 auto 25px auto;
        justify-items: center;
        align-items: center;
    }
    
    .action-item {
    height: 120px;
        width: 120px;
        padding: 12px;
    }
    
    .action-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .action-text {
        font-size: 0.7rem;
    }
    
    .coach-principle {
        padding: 15px;
    }
    
    .principle-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .coaching-info-section {
        padding: 40px 0;
    }
    
    .coaching-info-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .info-section {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .info-content {
        gap: 15px;
    }
    
    .info-item {
        padding: 12px;
    }
    
    .item-title {
        font-size: 1rem;
    }
    
    .item-text {
        font-size: 0.85rem;
    }
    
    .coach-actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 320px;
        margin: 0 auto 25px auto;
        justify-items: center;
        align-items: center;
    }
    
    .action-item {
        height: 100px;
        width: 100px;
        padding: 10px;
    }
    
    .action-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .action-text {
        font-size: 0.65rem;
    }
    
    .coach-principle {
        padding: 12px;
    }
    
    .principle-text {
        font-size: 0.85rem;
    }
}

/* Birkman ICF Section Styles */
.birkman-icf-section {
    padding: 80px 0 40px 0;
    background: linear-gradient(135deg, #F3F0FF 0%, #E8ECFF 10%, #B8D4F1 25%, #D4AF82 45%, #A8C5BC 70%, #9BB3D1 85%, #F8F6FF 100%);
    position: relative;
    overflow: hidden;
}

.birkman-icf-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(52, 152, 219, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 85% 75%, rgba(230, 126, 34, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 40% 60%, rgba(46, 125, 50, 0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 20%, rgba(155, 89, 182, 0.18) 0%, transparent 50%);
    z-index: 1;
    animation: backgroundPulse 8s ease-in-out infinite;
}

.birkman-icf-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            rgba(255, 255, 255, 0.03) 1px,
            rgba(255, 255, 255, 0.03) 2px,
            transparent 3px,
            transparent 30px
        );
    z-index: 2;
    animation: diagonalMove 12s linear infinite;
}

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

@keyframes diagonalMove {
    0% {
        transform: translateX(-50px) translateY(-50px);
    }
    100% {
        transform: translateX(50px) translateY(50px);
    }
}

@keyframes cardFloat1 {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg);
    }
    25% {
        transform: translateY(-5px) rotateX(1deg);
    }
    50% {
        transform: translateY(-8px) rotateX(0deg);
    }
    75% {
        transform: translateY(-3px) rotateX(-1deg);
    }
}

@keyframes cardFloat2 {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    30% {
        transform: translateY(-6px) rotateY(1deg);
    }
    60% {
        transform: translateY(-10px) rotateY(0deg);
    }
    90% {
        transform: translateY(-2px) rotateY(-1deg);
    }
}

@keyframes cardFloat3 {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    35% {
        transform: translateY(-4px) scale(1.005);
    }
    70% {
        transform: translateY(-7px) scale(1.01);
    }
}

@keyframes cardFloat4 {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    40% {
        transform: translateY(-8px) rotateZ(0.5deg);
    }
    80% {
        transform: translateY(-12px) rotateZ(-0.5deg);
    }
}

.birkman-icf-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ICF Koçları Block */
.icf-coaches-block {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 60px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: cardFloat1 8s ease-in-out infinite;
}

.icf-coaches-block:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(52, 152, 219, 0.3);
}

.icf-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    }
    
    .icf-title {
        font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.icf-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.icf-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 15px;
}

.icf-cta-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.icf-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 179, 102, 0.3);
}

.icf-bottom-text {
    font-size: 0.9rem;
    color: var(--white);
    font-style: italic;
    margin: 20px 0;
}

.partner-logos {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 10px;
    justify-content: space-between;
}

.partner-logo-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(93, 109, 126, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    flex: 1;
    min-width: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partner-logo-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.partner-logo-image {
    width: 100%;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

/* ICF New Layout */
.icf-header-section {
    text-align: center;
    margin-bottom: 30px;
}

.icf-main-row {
    display: flex;
        gap: 30px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.icf-text-section {
    flex: 1;
    padding-right: 20px;
}

.icf-visual-section {
    flex: 0 0 200px;
}

.icf-bottom-section {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.icf-cta-btn {
    margin-bottom: 15px;
}

.icf-bottom-text {
    margin-bottom: 15px;
}

.icf-chart-container {
    text-align: center;
    padding: 2px;
    background: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 0.5px solid rgba(0, 0, 0, 0.02);
}

.icf-chart-image {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.birkman-chart-container {
    text-align: center;
    padding: 2px;
    background: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 0.5px solid rgba(0, 0, 0, 0.02);
}

.birkman-chart-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Birkman New Layout */
.birkman-main-row {
    display: flex;
        gap: 25px;
    align-items: flex-start;
    margin-top: 20px;
    }
    
.birkman-chart-section {
    flex: 0 0 300px;
    }

.birkman-text-section {
    flex: 1;
    padding-left: 15px;
}

.org-focus-container {
        text-align: center;
    padding: 2px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 0.5px solid rgba(0, 0, 0, 0.02);
    margin: 20px 0;
}

.org-focus-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.icf-chart-placeholder, .birkman-chart-placeholder, .bottom-chart-placeholder, .org-focus-placeholder {
    background: rgba(255, 179, 102, 0.1);
    border: 2px dashed #FFB366;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Birkman Test Block */
.birkman-test-block {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 60px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: cardFloat2 10s ease-in-out infinite;
}

.birkman-test-block:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(230, 126, 34, 0.3);
}

.birkman-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
        gap: 40px;
    align-items: flex-start;
}

.birkman-title {
        font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.birkman-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 15px;
}

.birkman-info-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    margin-top: 15px;
}

.birkman-info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--primary-navy), var(--text-primary));
}

.birkman-bottom-charts {
    margin-top: 15px;
}

.birkman-color-container {
        text-align: center;
    padding: 2px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 0.5px solid rgba(0, 0, 0, 0.02);
}

.birkman-color-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

/* Birkman What Block */
.birkman-what-block {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 60px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: cardFloat3 12s ease-in-out infinite;
}

.birkman-what-block:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.what-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
        margin-bottom: 30px;
    text-align: center;
}

.what-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.what-subtitle {
        font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.what-left-content p, .what-right-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 15px;
}

/* Birkman Users Block */
.birkman-users-block {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: cardFloat4 14s ease-in-out infinite;
}

.birkman-users-block:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(155, 89, 182, 0.3);
}

.users-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
    text-align: center;
}

.users-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.user-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 179, 102, 0.2);
    transition: all 0.3s ease;
        text-align: center;
}

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

.user-icon-container {
        margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    padding: 3px;
    border: 0.5px solid rgba(255, 179, 102, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.user-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.user-card h3 {
        font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
        margin-bottom: 15px;
    }
    
.user-card p {
        font-size: 0.9rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 15px;
}

.user-link-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-orange);
    margin-top: 20px;
    margin-bottom: 0;
    font-style: italic;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(255, 107, 53, 0.2);
}

.user-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.user-link:hover {
    color: #AED6F1;
}

.user-link-btn {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    margin-top: 10px;
}

.user-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--accent-orange-dark), var(--text-primary));
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(255, 165, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 165, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

/* Responsive adjustments for scroll to top button */
@media (max-width: 768px) {
    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top-btn {
        bottom: 15px;
        right: 15px;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

.scroll-to-top-btn:hover {
    background: rgba(255, 165, 0, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.5);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Contact Popup Styles */
.contact-popup-content {
    max-width: 500px;
    width: 100%;
}

.contact-popup-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.2);
    padding-bottom: 15px;
}

.contact-popup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-popup-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.contact-popup-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.contact-popup-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-popup-info {
    flex: 1;
}

.contact-popup-label {
    display: block;
    font-weight: 600;
    color: #FF6B35;
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-popup-value {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-popup-value:hover {
    color: var(--accent-orange-light);
    text-decoration: underline;
}

.contact-popup-coaches {
    border-top: 2px solid rgba(255, 107, 53, 0.2);
    padding-top: 20px;
}

.coaches-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.coaches-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.coach-popup-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.coach-popup-card:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
}

.coach-popup-name {
    font-weight: 700;
    color: var(--accent-orange);
    font-size: 1rem;
}

.coach-popup-phone {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
}

.coach-popup-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #FF8C42, #FFB366);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .icf-content-grid, .birkman-content-grid, .what-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .users-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .icf-coaches-block, .birkman-test-block, .birkman-what-block, .birkman-users-block {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .birkman-icf-section {
        padding: 60px 0;
    }
    
    .icf-coaches-block, .birkman-test-block, .birkman-what-block, .birkman-users-block {
        padding: 30px;
        margin-bottom: 40px;
    }
    
    .icf-title {
        font-size: 2rem;
    }
    
    .icf-subtitle, .birkman-title, .what-title, .users-title {
        font-size: 1.8rem;
    }
    
    .partner-logos {
        gap: 5px;
        flex-wrap: nowrap;
    }
    
    .partner-logo-item {
        padding: 6px 4px;
        min-width: 0;
    }
    
    .partner-logo-image {
        height: 30px;
    }
    
    .icf-main-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .icf-text-section {
        padding-right: 0;
        order: 2;
    }
    
    .icf-visual-section {
        flex: none;
        order: 1;
        margin-bottom: 15px;
    }
    
    .icf-bottom-section {
        margin-top: 5px;
    }
    
    .icf-chart-container {
        padding: 2px;
    }
    
    .icf-chart-image {
        max-width: 100%;
    }
    
    .birkman-main-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .birkman-chart-section {
        flex: none;
        order: 1;
    }
    
    .birkman-text-section {
        padding-left: 0;
        order: 2;
    }
    
    .birkman-chart-container {
        padding: 2px;
    }
    
    .birkman-chart-image {
        max-width: 100%;
    }
    
    .birkman-color-container {
        padding: 2px;
        margin: 0 -10px;
    }
    
    .birkman-color-image {
        width: 100%;
        max-width: 100%;
        border-radius: 4px;
    }
    
    .org-focus-container {
        padding: 2px;
        margin: 15px 0;
    }
    
    .icf-chart-placeholder, .birkman-chart-placeholder, .bottom-chart-placeholder, .org-focus-placeholder {
        min-height: 150px;
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    /* Fine Arts Small Mobile */
    .fine-arts-section {
        padding: 20px 0 40px 0;
    }
    
    .fine-arts-title {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        line-height: 1.4;
    }
    
    .fine-arts-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .fine-arts-subtitle {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .fine-arts-item {
        padding: 12px 16px;
        gap: 12px;
    }
    
    .fine-arts-item span:last-child {
        font-size: 0.9rem;
    }
    
    .fine-arts-image {
        max-width: 85%;
        border-radius: 12px;
        background: transparent;
        box-shadow: none;
    }

    /* International Portfolio Small Mobile */
    .international-portfolio-section {
        padding: 20px 0 40px 0;
    }
    
    .international-portfolio-content {
        gap: 15px;
    }
    
    .international-portfolio-text-content {
        order: 1;
        margin-bottom: 5px;
    }
    
    .international-portfolio-title {
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 1px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .international-portfolio-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    
    .international-portfolio-visual-content {
        order: 2;
        margin-top: 0;
        align-items: flex-start;
    }
    
    .international-portfolio-image {
        max-width: 65%;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    /* Mountain Contact Small Mobile */
    .mountain-contact-section {
        padding: 40px 0 60px 0;
        min-height: 400px;
    }
    
    .mountain-contact-container {
        padding: 0 20px;
    }
    
    .mountain-contact-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
        letter-spacing: 1px;
    }
    
    .contact-info-grid {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .contact-info-item {
        padding: 25px 15px;
    }
    
    .contact-label {
        font-size: 1rem;
    }
    
    .contact-value,
    .contact-value-link {
        font-size: 1.1rem;
    }
    
    .contact-coaches-grid {
        gap: 15px;
    }
    
    .coach-contact-card {
        padding: 25px 15px;
    }
    
    .coach-name {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .quick-call-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .quick-call-btn svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 360px) {
    .mountain-contact-title {
        font-size: 2rem;
    }
    
    .contact-info-item {
        padding: 20px 12px;
    }
    
    .coach-contact-card {
        padding: 20px 12px;
    }
    
    .quick-call-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

contact-value,
    .contact-value-link {
        font-size: 1.1rem;
    }
    
    .contact-coaches-grid {
        gap: 15px;
    }
    
    .coach-contact-card {
        padding: 25px 15px;
    }
    
    .coach-name {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .quick-call-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        gap: 8px;
    }

    /* Art Portfolio Small Mobile */
    .art-portfolio-section {
        padding: 20px 0 40px 0;
    }
    
    .art-title {
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: 1px;
    }
    
    .art-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .art-cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .art-image {
        max-width: 80%;
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .birkman-icf-section {
        padding: 40px 0;
    }
    
    .icf-coaches-block, .birkman-test-block, .birkman-what-block, .birkman-users-block {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .icf-title {
        font-size: 1.8rem;
    }
    
    .icf-subtitle, .birkman-title, .what-title, .users-title {
        font-size: 1.5rem;
    }
    
    .user-icon-container {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .icf-description p, .birkman-description p, .what-left-content p, .what-right-content p {
        font-size: 0.9rem;
    }
    
    .birkman-color-container {
        padding: 1px;
        margin: 0 -15px;
        border-radius: 4px;
    }
    
    .birkman-color-image {
        width: 100%;
        border-radius: 3px;
    }
    
    .org-focus-container {
        padding: 1px;
        margin: 10px 0;
        border-radius: 4px;
    }
    
    .icf-chart-placeholder, .birkman-chart-placeholder, .bottom-chart-placeholder, .org-focus-placeholder {
        min-height: 120px;
        padding: 20px 10px;
        font-size: 0.8rem;
    }
}

/* ===== NEW ART COACHING AND PORTFOLIO STYLES ===== */

/* New Art Coaching Section */
.art-coaching-new {
    padding: 0px 0 0px 0;
    background: #2D3748;
    position: relative;
}

.art-container-new {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.art-content-left {
    color: var(--white);
}

.art-title-new {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(45, 55, 72, 0.3);
    letter-spacing: -0.02em;
    color: var(--white);
}

.art-description-new {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 400;
    color: var(--white);
}

.art-cta-btn-new {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    margin-bottom: 50px;
    display: inline-block;
}

.art-cta-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.art-program-details-new {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.1);
}

.program-title-new {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0F172A;
}

.program-content-new {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.program-section-new {
    border-left: 3px solid #4A90E2;
    padding-left: 20px;
}

.section-title-new {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2D3748;
}

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

.program-list-new li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #334155;
}

.program-list-new li:before {
    content: '◦';
    position: absolute;
    left: 8px;
    color: #4A90E2;
    font-size: 1.2rem;
}

.art-content-right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 0 20px 0;
    margin-top: 60px;
}

.service-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 25px;
    max-width: 400px;
    width: 100%;
}

.art-service-card-new {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.15);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.art-service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(56, 189, 248, 0.25);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(56, 189, 248, 0.4);
}

.service-illustration {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #BAE6FD 0%, #DBEAFE 50%, #E0F2FE 100%);
    padding: 12px;
    box-shadow: 0 4px 15px rgba(186, 230, 253, 0.4);
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

.service-card-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.service-title-new {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2D3748;
    line-height: 1.3;
    margin: 0;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .art-container-new {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 800px;
    }
    
    .art-title-new {
        font-size: 2.8rem;
        text-align: center;
    }
    
    .art-description-new {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .art-cta-btn-new {
        display: block;
        margin: 35px auto 0;
        width: fit-content;
    }
    
    .art-program-details-new {
        margin-top: 40px;
        padding: 35px 25px;
    }
    
    .service-grid-new {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        gap: 20px;
    }
    
    .art-service-card-new {
        min-height: 140px;
        padding: 20px 12px;
        border: 1px solid rgba(56, 189, 248, 0.3);
    }
    
    .service-illustration {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .art-coaching-new {
        padding: 60px 0;
    }
    
    .art-container-new {
        padding: 0 15px;
        gap: 40px;
    }
    
    .art-title-new {
        font-size: 2.2rem;
        margin-bottom: 25px;
    }
    
    .art-description-new {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .art-cta-btn-new {
        padding: 12px 30px;
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .art-program-details-new {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .program-title-new {
        font-size: 1.5rem;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .program-content-new {
        gap: 20px;
    }
    
    .section-title-new {
        font-size: 1.1rem;
    }
    
    .program-list-new li {
        font-size: 0.95rem;
    }
    
    .service-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
    }
    
    .art-service-card-new {
        min-height: 120px;
        padding: 15px 8px;
        border-radius: 15px;
        border: 1px solid rgba(56, 189, 248, 0.3);
    }
    
    .service-illustration {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
        padding: 8px;
    }
    
    .service-title-new {
        font-size: 0.8rem;
        line-height: 1.2;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .art-title-new {
        font-size: 1.8rem;
    }
    
    .art-description-new {
        font-size: 0.95rem;
    }
    
    .service-grid-new {
        gap: 8px;
        padding: 0 5px;
    }
    
    .art-service-card-new {
        min-height: 110px;
        padding: 12px 6px;
        border: 1px solid rgba(56, 189, 248, 0.3);
    }
    
    .service-illustration {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
        padding: 6px;
    }
    
    .service-title-new {
        font-size: 0.75rem;
    }
    
    .art-program-details-new {
        padding: 25px 15px;
    }
    
    .program-title-new {
        font-size: 1.3rem;
    }
}

/* ===== NEW HOMEPAGE STYLES ===== */

/* New Header Styles */
.new-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(45, 55, 72, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.4);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.kite-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.logo-subtext {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav .nav-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav .nav-link:hover {
    color: var(--accent-orange-light);
}

.dropdown-arrow {
    font-size: 0.8rem;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(45, 55, 72, 0.2);
    list-style: none;
    margin: 0;
}

.nav-item:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content li {
    margin: 0;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--accent-orange);
}

/* Contact Bubble */
.contact-bubble-wrapper {
    position: relative;
}

/* Mobile Menu Button - Hide on Desktop */
.mobile-menu-btn {
    display: none;
}

.contact-bubble {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.contact-bubble-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(45, 55, 72, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-bubble-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.contact-bubble-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.bubble-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link, .phone-link {
    color: #2D3748;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: block;
}

.contact-link:hover, .phone-link:hover {
    background-color: #F7FAFC;
    color: #667EEA;
}

.contact-phones {
    border-top: 1px solid #E2E8F0;
    padding-top: 12px;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* New Hero Section with Integrated Services */
.new-hero {
    background: linear-gradient(135deg, #2D3748 0%, #4C1D95 20%, #4C1D95 50%, #7C3AED 80%, #2D3748 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 180px;
    padding-bottom: 60px;
    margin-bottom: 0;
}

.new-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(45, 55, 72, 0.8) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(76, 29, 149, 0.6) 0%, transparent 60%),
        radial-gradient(circle at 40% 80%, rgba(76, 29, 149, 0.7) 0%, transparent 60%),
        radial-gradient(circle at 60% 20%, rgba(124, 58, 237, 0.5) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.new-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(45, 55, 72, 0.6) 25%, 
            rgba(76, 29, 149, 0.7) 50%, 
            rgba(76, 29, 149, 0.6) 75%, 
            transparent 100%
        );
    pointer-events: none;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation: float 4s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation: float 5s ease-in-out infinite;
}

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



.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    text-align: center;
    margin-bottom: 80px;
}

.hero-text-content {
    max-width: 800px;
    margin: 0 auto;
}

.main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(45, 55, 72, 0.5);
    animation: titleSlideIn 0.8s ease-out;
}

.main-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-weight: 400;
    animation: subtitleSlideIn 1s ease-out 0.2s both;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



@keyframes subtitleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-underline {
    display: none;
}

/* Question Section */
.question-section-new {
    background: linear-gradient(135deg, #2D3748 0%, #4C1D95 30%, #4C1D95 70%, #7C3AED 100%);
    padding: 10px 0;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.question-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.question-text {
    font-size: 1.2rem;
    color: var(--accent-orange);
    font-weight: 300;
    margin: 0;
    text-shadow: 0 1px 3px rgba(45, 55, 72, 0.3);
    animation: questionFadeIn 1s ease-out;
    position: relative;
    z-index: 3;
}

@keyframes questionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section - Now integrated into hero */
.services-section-new {
    display: none; /* Hidden since integrated into hero */
}

.services-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.12) 0%, transparent 60%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.10) 0%, transparent 60%),
        radial-gradient(circle at 60% 20%, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.services-section-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(255,255,255,0.05) 25%, 
            rgba(255,255,255,0.08) 50%, 
            rgba(255,255,255,0.05) 75%, 
            transparent 100%
        );
    animation: servicesWaveAnimation 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes servicesWaveAnimation {
    0% {
        transform: translateX(-50%) skewX(-3deg);
        opacity: 0.3;
    }
    50% {
        transform: translateX(0%) skewX(0deg);
        opacity: 0.5;
    }
    100% {
        transform: translateX(50%) skewX(3deg);
        opacity: 0.3;
    }
}

.services-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.12) 0%, transparent 60%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.10) 0%, transparent 60%),
        radial-gradient(circle at 60% 20%, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.services-section-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: 
        linear-gradient(90deg, 
            transparent 0%, 
            rgba(255,255,255,0.05) 25%, 
            rgba(255,255,255,0.08) 50%, 
            rgba(255,255,255,0.05) 75%, 
            transparent 100%
        );
    animation: servicesWaveAnimation 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes servicesWaveAnimation {
    0% {
        transform: translateX(-50%) skewX(-3deg);
        opacity: 0.3;
    }
    50% {
        transform: translateX(0%) skewX(0deg);
        opacity: 0.5;
    }
    100% {
        transform: translateX(50%) skewX(3deg);
        opacity: 0.3;
    }
}



.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.services-question-container {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
    position: relative;
    z-index: 3;
}

.services-question {
    color: white;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-new {
    background: linear-gradient(135deg, #FED7AA 0%, #FDBA74 50%, #FB923C 100%);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

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

.card-badge {
    background: white;
    color: #2D3748;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    width: fit-content;
    align-self: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 120px;
}

.card-image {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
}

.card-svg {
    width: 60px;
    height: 60px;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
    }
    
    .main-nav .nav-menu {
        gap: 20px;
    }
    
    .main-title {
        font-size: 2.2rem;
    }
    
    .main-subtitle {
        font-size: 1rem;
    }
    
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card-new {
        min-height: 180px;
        padding: 15px;
    }
    
    .card-svg {
        width: 50px;
        height: 50px;
    }
}

/* Removed old conflicting header rules - now handled in premium mobile section */

/* Continuing with other 768px mobile rules */
@media (max-width: 768px) {
    .services-question {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    /* Sanat Koçluğu Mobile Styles */
    .art-coaching-section div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .art-coaching-section div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .art-coaching-section h2 {
        font-size: 1.8rem !important;
        text-align: center !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }
    
    .art-coaching-section p {
        font-size: 1rem !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    /* Portfolio Program Cards Mobile */
    .art-portfolio-services div[style*="display: flex"][style*="justify-content: space-between"] {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .art-portfolio-services div[style*="flex: 1"] {
        flex: none !important;
        width: 100% !important;
        padding: 25px !important;
        margin-bottom: 15px !important;
    }
    
    .art-portfolio-services h4 {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }
    
    .art-portfolio-services p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
    
    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-new {
        min-height: 160px;
        padding: 15px;
    }
    
    .card-svg {
        width: 45px;
        height: 45px;
    }
    
    .services-question-container {
        margin-bottom: 30px;
        padding: 15px 0;
    }
    
    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: space-around;
        width: 40px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
        backdrop-filter: blur(10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    
    .burger-line {
        width: 100%;
        height: 3px;
        background: white;
        border-radius: 3px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }
    
    .mobile-menu-btn.active {
        background: rgba(255, 107, 53, 0.2);
        border-color: rgba(255, 107, 53, 0.3);
        transform: rotate(90deg);
    }
    
    .mobile-menu-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
        background: var(--accent-orange);
    }
    
    .mobile-menu-btn.active .burger-line:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .mobile-menu-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
        background: var(--accent-orange);
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(145deg, 
            rgba(45, 55, 72, 0.98) 0%, 
            rgba(76, 29, 149, 0.96) 30%, 
            rgba(124, 58, 237, 0.94) 70%, 
            rgba(45, 55, 72, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.3),
            0 2px 8px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        z-index: 1000;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 25px 0;
        margin: 0;
        list-style: none;
    }
    
    .nav-item {
        position: relative;
        margin: 0;
        overflow: hidden;
    }
    
    .nav-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 255, 255, 0.05) 50%, 
            transparent 100%);
        transition: left 0.6s ease;
        pointer-events: none;
    }
    
    .nav-item:hover::before {
        left: 100%;
    }
}

/* Desktop - Hide mobile menu button and restore original nav */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }
    
    .main-nav {
        position: static !important;
        background: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
        border: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        max-height: none !important;
        overflow: visible !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
    
    .nav-menu {
        flex-direction: row !important;
        padding: 0 !important;
        gap: 30px !important;
    }
    
    .nav-item {
        border-bottom: none !important;
        margin: 0 !important;
        overflow: visible !important;
    }
    
    .nav-item::before {
        display: none !important;
    }
    
    .nav-link {
        padding: 0 !important;
        color: var(--accent-orange) !important;
        font-weight: 600 !important;
        font-size: 0.95rem !important;
        letter-spacing: normal !important;
        backdrop-filter: none !important;
        transform: none !important;
        text-shadow: none;
        background: none !important;
    }
    
    .nav-link::after {
        display: none !important;
    }
    
    .nav-link:hover {
        color: var(--accent-orange-light) !important;
        background: none !important;
        transform: none !important;
        text-shadow: none;
    }
    
    .nav-link {
        display: block;
        padding: 20px 30px;
        color: rgba(255, 255, 255, 0.95) !important;
        font-weight: 500;
        font-size: 1.05rem;
        text-decoration: none;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        cursor: pointer;
        line-height: 1.4;
        letter-spacing: 0.3px;
        backdrop-filter: blur(10px);
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 30px;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light));
        transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-link:hover {
        color: white !important;
        background: rgba(255, 255, 255, 0.08);
        transform: translateX(8px);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    }
    
    .nav-link:hover::after {
        width: calc(100% - 60px);
    }
    
    .nav-item.dropdown .nav-link {
        cursor: pointer;
        padding-right: 50px;
    }
    
    .dropdown-arrow {
        float: right;
        margin-left: 10px;
        transition: transform 0.3s ease;
        position: relative;
        z-index: 1;
        font-size: 0.8rem;
    }
    
    .nav-item.dropdown .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-right: 50px;
        position: relative;
    }
}

@media (max-width: 480px) {
    .services-question {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .services-question-container {
        margin-bottom: 25px;
        padding: 10px 0;
    }
    
    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* MOBİL DROPDOWN - TAMAMEN YENİDEN YAZILDI */
    .dropdown-content {
        position: static;
        display: none;
        background: linear-gradient(135deg, rgba(255, 218, 185, 0.9) 0%, rgba(255, 228, 196, 0.9) 100%);
        border: none;
        border-radius: 0;
        box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
        margin: 0;
        padding: 0;
        overflow: hidden;
        max-height: 0;
        transition: all 0.4s ease;
        touch-action: manipulation;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-item.active .dropdown-content {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        max-height: 300px !important;
        overflow: visible !important;
        padding: 15px 0;
        border-top: 2px solid rgba(0, 0, 0, 0.1);
        border-bottom: 2px solid rgba(0, 0, 0, 0.1);
        pointer-events: auto !important;
    }
    
    .nav-item:not(.active) .dropdown-content {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        padding: 0;
        pointer-events: none !important;
    }
    
    .dropdown-content li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        margin: 0;
        padding: 0;
        list-style: none;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .dropdown-content a {
        padding: 18px 60px 18px 70px;
        color: var(--text-primary);
        font-size: 1.1rem;
        font-weight: 600;
        display: block;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        line-height: 1.3;
        white-space: nowrap;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white !important;
        transform: translateX(15px);
        padding-left: 80px;
    }
    
    .dropdown-content a:active {
        background: rgba(255, 255, 255, 0.3);
        transform: translateX(10px);
    }
    
    .dropdown-content a:last-child {
        border-bottom: none;
    }
    
    .dropdown-content a:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.25);
    }
    
    .contact-bubble {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .new-hero {
        padding-top: 80px;
        min-height: 50vh;
        background: linear-gradient(135deg, #2D3748 0%, #4C1D95 20%, #4C1D95 50%, #7C3AED 80%, #2D3748 100%) !important;
    }
    
    .main-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .main-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .question-text {
        font-size: 1rem;
        font-weight: 300;
    }
    
    .service-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .service-card-new {
        min-height: 180px;
        padding: 15px 10px;
    }
    
    .card-badge {
        font-size: 0.8rem;
        padding: 8px 14px;
        margin-bottom: 12px;
    }
    
    .card-svg {
        width: 60px;
        height: 60px;
    }
    
    .card-illustration {
        max-height: 80px;
    }
    
    .card-image {
        max-height: 120px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .main-subtitle {
        font-size: 0.8rem;
    }
    
    .question-text {
        font-size: 0.9rem;
        font-weight: 300;
    }
    
    .service-cards-grid {
        gap: 8px;
    }
    
    .service-card-new {
        min-height: 160px;
        padding: 12px 8px;
    }
    
    .card-badge {
        font-size: 0.65rem;
        padding: 6px 10px;
    }
    
    .card-svg {
        width: 50px;
        height: 50px;
    }
    
    .card-illustration {
        max-height: 70px;
    }
    
    .card-image {
        max-height: 100px;
    }
}

/* Coaches Section Styles */
.coaches-section {
    position: relative;
    background: linear-gradient(135deg, #E6F3FF 0%, #F5F5DC 50%, #E8F4F8 100%);
    padding: 60px 0;
    margin: 0;
    border: none;
    overflow: hidden;
}

.coaches-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 80%, rgba(52, 152, 219, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.coaches-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 Q25,30 50,50 T100,50 V100 H0 Z' fill='rgba(52,152,219,0.05)'/%3E%3C/svg%3E") repeat-x;
    background-size: 100px 50px;
    animation: servicesWaveFlow 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.coaches-section .container {
    position: relative;
    z-index: 2;
}

.coach-profile {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(56, 189, 248, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.coach-profile:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 12px 35px rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.4);
}

.coach-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 25px;
}

.coach-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.2);
}

.coach-name {
    color: #FB923C;
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.coach-bio p {
    color: #2C3E50;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.credentials {
    margin-top: 30px;
    padding: 25px;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.credentials h4 {
    color: #FB923C;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.credentials ul {
    list-style: none;
    padding: 0;
}

.credentials li {
    color: #2C3E50;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.credentials li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #38BD48;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Mobile Responsive for Coaches */
@media (max-width: 768px) {
    .coaches-section {
        padding: 40px 0;
    }
    
    .coach-profile {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .coach-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .coach-photo {
        width: 100px;
        height: 100px;
    }
    
    .coach-name {
        font-size: 1.6rem;
    }
    
    .coach-bio p {
        font-size: 1rem;
        text-align: left;
    }
    
    .credentials {
        padding: 20px;
    }
    
    .credentials h4 {
        font-size: 1.2rem;
    }
    
    .credentials li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .coach-profile {
        padding: 15px;
    }
    
    .coach-name {
        font-size: 1.4rem;
    }
    
    .coach-bio p {
        font-size: 0.95rem;
    }
    
    .credentials {
        padding: 15px;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    position: relative;
    background: linear-gradient(135deg, #E6F3FF 0%, #F5F5DC 50%, #E8F4F8 100%);
    padding: 60px 0;
    margin: 0;
    border: none;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(56, 189, 248, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 12px 35px rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.4);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FB923C, #FFB366);
}

.testimonial-header {
    margin-bottom: 20px;
}

.coaching-type {
    color: #FB923C;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-content {
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: rgba(56, 189, 248, 0.3);
    font-family: serif;
    position: absolute;
    top: -10px;
    left: -10px;
    line-height: 1;
}

.testimonial-text {
    color: #2C3E50;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 20px 0 25px 0;
    text-align: justify;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    text-align: right;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid rgba(56, 189, 248, 0.1);
}

.author-name {
    color: #FB923C;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
}

.author-name::before {
    content: '— ';
    color: rgba(56, 189, 248, 0.6);
}

/* Mobile Responsive for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .coaching-type {
        font-size: 1.2rem;
    }
    
    .quote-mark {
        font-size: 3rem;
        top: -5px;
        left: -5px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .author-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 15px;
    }
    
    .coaching-type {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
}

/* Blog Section Styles */
.blog-section {
    background: linear-gradient(135deg, #E6F3FF 0%, #F5F5DC 50%, #E8F4F8 100%);
    padding: 60px 0;
    min-height: 100vh;
}

.blog-title {
    color: #2C3E50;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}

.blog-content-section {
    background: rgba(248, 231, 195, 0.7);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    border-left: 5px solid #FB923C;
}

.section-heading {
    color: #2C3E50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-paragraph {
    color: #2C3E50;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

/* New Benefits Section */
.benefits-section-new {
    display: grid;
    grid-template-columns: 350px 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
    align-items: start;
}

.benefit-box {
    background: rgba(248, 231, 195, 0.7);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(251, 146, 60, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(251, 146, 60, 0.3);
}

.benefit-box-small {
    grid-column: span 1;
    max-width: 350px;
    justify-self: center;
}

.benefit-title {
    color: #2C3E50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.3;
}

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

.benefit-list li {
    color: #2C3E50;
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.benefit-list li::before {
    content: '○';
    color: #FB923C;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.1rem;
}

/* Birkman Services Section */
.birkman-services {
    margin: 50px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 30px;
    align-items: stretch;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(56, 189, 248, 0.4);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, #FB923C, #FFB366);
    box-shadow: 0 5px 15px rgba(251, 146, 60, 0.3);
}

.service-title {
    color: #2C3E50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.service-content {
    flex: 1;
    margin-bottom: 20px;
}

.service-description {
    color: #2C3E50;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: justify;
    margin: 0;
}

.service-contact {
    margin-top: auto;
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.contact-btn {
    background: linear-gradient(135deg, #FB923C, #FFB366);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(251, 146, 60, 0.3);
    width: 100%;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 146, 60, 0.4);
    background: linear-gradient(135deg, #FF8C42, #FFB366);
}

/* Fine Arts Sections */
.fine-arts-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 35px;
    margin: 40px 0;
    border: 2px solid rgba(56, 189, 248, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.fine-arts-international {
    background: rgba(248, 252, 255, 0.4);
    border-radius: 20px;
    padding: 35px;
    margin: 40px 0;
    border: 2px solid rgba(173, 216, 230, 0.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
}

.fine-arts-title {
    color: #4A90E2;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

.international-title {
    color: #9CC5F0;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.3;
}

.fine-arts-content, .international-content {
    margin-bottom: 30px;
}

.fine-arts-description {
    color: #5A6C7D;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.international-description {
    color: #B0CAF0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.fine-arts-eligibility {
    background: rgba(74, 144, 226, 0.08);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #4A90E2;
}

.eligibility-title {
    color: #4A90E2;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.eligibility-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.eligibility-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    color: #4CAF50;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 2px;
    flex-shrink: 0;
}

.eligibility-item p {
    color: #5A6C7D;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Blue Principles Section */
.coaching-principles {
    background: linear-gradient(135deg, #4a5eaa 0%, #6b5fa5 100%);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.principles-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.principle-item {
    margin-bottom: 25px;
}

.principle-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.principle-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: justify;
}

/* Coaching Icons */
.coaching-icons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.icon-container {
    display: flex;
    gap: 30px;
}

.coaching-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbulb-icon::before {
    content: '💡';
    font-size: 24px;
}

.people-icon::before {
    content: '👥';
    font-size: 24px;
}

.network-icon::before {
    content: '🔗';
    font-size: 24px;
}

/* Mobile Responsive for Blog */
@media (max-width: 768px) {
    .blog-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .blog-content-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .section-heading {
        font-size: 1.2rem;
    }
    
    .blog-paragraph {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .benefits-section-new {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .benefit-box-small {
        max-width: none;
        justify-self: stretch;
    }
    
    .benefit-box {
        padding: 20px;
    }
    
    .benefit-title {
        font-size: 1rem;
    }
    
    .benefit-list li {
        font-size: 0.85rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
        min-height: auto;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .contact-btn {
        font-size: 0.8rem;
        padding: 10px 16px;
    }
    
    .fine-arts-section, .fine-arts-international {
        padding: 25px;
        margin: 30px 0;
    }
    
    .fine-arts-title, .international-title {
        font-size: 1.4rem;
    }
    
    .fine-arts-description, .international-description {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .eligibility-title {
        font-size: 1.2rem;
    }
    
    .eligibility-item p {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .fine-arts-eligibility {
        padding: 20px;
    }
    
    .coaching-principles {
        padding: 25px;
        margin-top: 30px;
    }
    
    .principles-title {
        font-size: 1.4rem;
    }
    
    .principle-heading {
        font-size: 1rem;
    }
    
    .principle-text {
        font-size: 0.8rem;
        text-align: left;
    }
    
    .icon-container {
        gap: 20px;
    }
    
    .coaching-icon {
        width: 40px;
        height: 40px;
    }
    
    .lightbulb-icon::before,
    .people-icon::before,
    .network-icon::before {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .blog-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .blog-content-section {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .section-heading {
        font-size: 1.1rem;
    }
    
    .blog-paragraph {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .benefit-box {
        padding: 15px;
    }
    
    .benefit-title {
        font-size: 0.95rem;
    }
    
    .benefit-list li {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.8rem;
    }
    
    .contact-btn {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    .fine-arts-section, .fine-arts-international {
        padding: 20px;
        margin: 25px 0;
    }
    
    .fine-arts-title, .international-title {
        font-size: 1.3rem;
    }
    
    .fine-arts-description, .international-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .eligibility-title {
        font-size: 1.1rem;
    }
    
    .eligibility-item p {
        font-size: 0.8rem;
    }
    
    .fine-arts-eligibility {
        padding: 15px;
    }
    
    .coaching-principles {
        padding: 20px;
    }
    
    .principles-title {
        font-size: 1.2rem;
    }
    
    .principle-heading {
        font-size: 0.95rem;
    }
    
    .principle-text {
        font-size: 0.75rem;
    }
}

/* Responsive Design for Mountain Contact Section */
@media (max-width: 1200px) {
    .mountain-contact-container {
        padding: 0 30px;
    }
    
    .contact-coaches-grid {
        gap: 25px;
        max-width: 900px;
    }
    
    .coach-contact-card {
        padding: 35px 18px;
    }
}

@media (max-width: 768px) {
    .mountain-contact-section {
        padding: 60px 0 80px 0;
        background-attachment: scroll;
        min-height: 500px;
    }
    
    .mountain-contact-title {
        font-size: 3rem;
        margin-bottom: 40px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .contact-coaches-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
    }
    
    .coach-contact-card {
        padding: 30px 15px;
    }
    
    .quick-call-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mountain-contact-section {
        padding: 40px 0 60px 0;
        min-height: 400px;
    }
    
    .mountain-contact-container {
        padding: 0 20px;
    }
    
    .mountain-contact-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .contact-info-grid {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .contact-info-item {
        padding: 25px 15px;
    }
    
    .contact-label {
        font-size: 1rem;
    }

/* Modern Hero Section */
.hero-section {
    background: linear-gradient(135deg, #a8c0ff 0%, #c2d9ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #a8c0ff 0%, #c2d9ff 100%);
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 20%;
    animation-delay: 1s;
}

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

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: titleSlideIn 1s ease-out;
}

.highlight {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 400;
    animation: subtitleSlideIn 1s ease-out 0.3s both;
}

.hero-description {
    margin: 30px 0;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-image {
    max-width: 450px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    pointer-events: none;
}

/* Question Section */
.question-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.question-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.question-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: patternFloat 8s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.question-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.question-content {
    color: white;
}

.question-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: questionFadeIn 1s ease-out;
}

.accent {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.question-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    animation: questionFadeIn 1s ease-out 0.3s both;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.services-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: servicesPattern 10s ease-in-out infinite;
}

@keyframes servicesPattern {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.card-header {
    margin-bottom: 25px;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.icon-svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.card-content {
    margin-bottom: 25px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 20px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.feature-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.card-action {
    margin-top: 20px;
}

.action-text {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.service-card:hover .action-text {
    color: #764ba2;
}

/* Animations */
@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes questionFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .question-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .hero-container,
    .question-container,
    .services-container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .question-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .icon-svg {
        width: 30px;
        height: 30px;
    }
}

/* Full Screen Background for All Sections */
.question-section-new,
.services-section-new {
    background: linear-gradient(135deg, #a8c0ff 0%, #c2d9ff 100%);
    min-height: 50vh;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

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

/* Enhanced Service Cards Design */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.service-card-new {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-new:hover::before {
    opacity: 1;
}

.service-card-new:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.card-badge {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 6px 15px rgba(74, 144, 226, 0.4);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.card-illustration {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.card-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.service-card-new:hover .card-svg {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px 0;
    }
    
    .service-card-new {
        padding: 25px 20px;
    }
    
    .card-illustration {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .service-card-new {
        padding: 20px 15px;
    }
    
    .card-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    padding: 50px 0 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498DB, #E74C3C, #F39C12, #2ECC71);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-section h3 {
    color: #3498DB;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3498DB;
    border-radius: 1px;
}

.footer-section p {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #BDC3C7;
    transition: color 0.3s ease;
}

.footer-section p:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 8px;
    color: #95A5A6;
    font-size: 0.9rem;
}

.footer-bottom p:first-child {
    color: #BDC3C7;
    font-weight: 500;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
    
    .footer-content {
        gap: 25px;
        padding: 0 10px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-section p {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        text-align: center;
        justify-content: center;
        padding: 0 10px;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        text-align: center;
    }
}

/* Blog Link Section Styles */
.blog-link-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.blog-link-content {
    max-width: 600px;
    margin: 0 auto;
}

.blog-link-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.blog-link-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.blog-link-button {
    display: inline-block;
    padding: 15px 30px;
    background: #FF6B35;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.blog-link-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Blog Link Section Responsive */
@media (max-width: 768px) {
    .blog-link-section {
        padding: 60px 0;
    }
    
    .blog-link-title {
        font-size: 2rem;
    }
    
    .blog-link-description {
        font-size: 1.1rem;
    }
    
    .blog-link-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-link-section {
        padding: 50px 0;
    }
    
    .blog-link-title {
        font-size: 1.8rem;
    }
    
    .blog-link-description {
        font-size: 1rem;
    }
    
    .blog-link-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Popup Overlay Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
}

.popup-content {
    background: #ffffff;
    border-radius: 20px;
    max-width: 480px;
    width: 85%;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
    border-radius: 20px 20px 0 0;
}

.popup-header h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.popup-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.popup-body {
    padding: 25px;
    color: #333333;
    line-height: 1.7;
}

.popup-body p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.popup-body strong {
    color: #FF6B35;
    font-weight: 600;
}

/* Contact Popup Specific Styles */
.contact-popup-content {
    text-align: center;
}

.contact-popup-title {
    color: #333333;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-popup-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.contact-popup-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    width: 100%;
    max-width: none;
}

.contact-popup-item:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-popup-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.contact-popup-label {
    display: block;
    color: #FF6B35;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-popup-value {
    color: #4A90E2 !important;
    font-weight: 600;
    text-decoration: none;
    display: block;
    padding: 12px 20px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    word-break: break-word;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    width: 100%;
    box-sizing: border-box;
}

.contact-popup-value:hover {
    background: rgba(74, 144, 226, 0.2);
    transform: translateY(-1px);
}

/* Mobile Responsive for Popup */
@media (max-width: 768px) {
    .popup-content {
        width: 92%;
        margin: 15px;
        max-width: 420px;
    }
    
    .popup-header {
        padding: 18px 20px 12px;
    }
    
    .popup-header h2 {
        font-size: 1.4rem;
    }
    
    .popup-body {
        padding: 20px;
    }
    
    .popup-body p {
        font-size: 1rem;
    }
    
    .contact-popup-item {
        padding: 18px;
        max-width: none;
    }
    
    .contact-popup-value {
        font-size: 15px;
        padding: 10px 12px;
        word-break: break-word;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 95%;
        margin: 10px;
        max-width: 350px;
    }
    
    .popup-header {
        padding: 15px 18px 10px;
    }
    
    .popup-header h2 {
        font-size: 1.2rem;
    }
    
    .popup-body {
        padding: 18px;
    }
    
    .contact-popup-item {
        padding: 16px;
    }
    
    .contact-popup-icon {
        font-size: 40px !important;
        margin-bottom: 12px !important;
    }
    
    .contact-popup-value {
        font-size: 14px;
        padding: 10px 8px;
        word-break: break-word;
        line-height: 1.3;
        width: 100%;
        box-sizing: border-box;
    }
}

/* ===============================================
   PREMIUM MOBILE DESIGN SYSTEM - DESKTOP COLORS
   =============================================== */

/* Enhanced Mobile Base Styles */
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.6;
        letter-spacing: 0.01em;
        overflow-x: hidden;
        padding-top: 70px; /* Space for fixed header */
    }
    
    /* Premium Container System */
    .container {
        padding: 0 24px;
        max-width: 100%;
    }
    
    /* Mobile Header Fixes for Portrait View */
    .header,
    .new-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background: rgba(44, 62, 80, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border-bottom: 1px solid rgba(52, 73, 94, 0.3) !important;
        min-height: 70px !important;
        height: auto !important;
        width: 100% !important;
    }
    
    .header .container,
    .header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        height: auto !important;
        min-height: 70px !important;
        padding: 12px 20px !important;
        box-sizing: border-box !important;
    }
    
    .logo-section {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        flex-shrink: 0 !important;
    }
    
    .kite-logo {
        width: 45px !important;
        height: 45px !important;
        flex-shrink: 0 !important;
    }
    
    .logo-text-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 0;
    }
    
    .logo-text {
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.2;
        color: var(--white);
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .logo-subtext {
        font-size: 0.75rem;
        font-weight: 400;
        line-height: 1.1;
        color: var(--white);
        opacity: 0.8;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-around !important;
        width: 40px !important;
        height: 36px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        padding: 8px !important;
        transition: all 0.3s ease !important;
        flex-shrink: 0 !important;
    }
    
    .mobile-menu-btn:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
    
    .burger-line {
        width: 100%;
        height: 3px;
        background: white;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-btn.active {
        background: rgba(255, 107, 53, 0.2);
        border-color: rgba(255, 107, 53, 0.3);
        transform: rotate(90deg);
    }
    
    .mobile-menu-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
        background: var(--accent-orange);
    }
    
    .mobile-menu-btn.active .burger-line:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .mobile-menu-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
        background: var(--accent-orange);
    }
    
    /* Mobile Navigation Menu */
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(145deg, 
            rgba(44, 62, 80, 0.98) 0%, 
            rgba(52, 73, 94, 0.98) 100%);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 107, 53, 0.2);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 16px 24px;
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }
    
    .nav-link:hover {
        background: rgba(255, 107, 53, 0.1);
        border-left-color: var(--accent-orange);
        color: var(--accent-orange);
        transform: translateX(8px);
    }
    
    /* Contact Button in Mobile Menu */
    .contact-bubble {
        margin: 20px 24px 10px;
        background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
        color: var(--white);
        border: none;
        padding: 14px 28px;
        border-radius: 25px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    }
    
    .contact-bubble:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    }
    
    /* Niche Section Spacing */
    section {
        padding: 70px 0;
        position: relative;
    }
    
    section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    }
    
    /* Mobile Typography - Same as Desktop */
    h1 {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 20px;
        color: var(--white);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        letter-spacing: normal;
    }
    
    h2 {
        font-size: 1.8rem;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 18px;
        color: var(--white);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        letter-spacing: normal;
    }
    
    h3 {
        font-size: 1.4rem;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 16px;
        color: var(--white);
        text-shadow: 0 2px 4px rgba(45, 55, 72, 0.3);
        letter-spacing: normal;
    }
    
    p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 16px;
        color: var(--white);
        font-weight: 400;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        letter-spacing: normal;
    }
    
    /* Mobile Card System - White Background for Coaching Cards */
    .coaching-block,
    .service-card,
    .testimonial-card,
    .birkman-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 16px;
        padding: 25px;
        margin-bottom: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .coaching-block::before,
    .service-card::before,
    .testimonial-card::before,
    .birkman-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, #FF6B35 0%, #E55A2B 50%, #FF6B35 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .coaching-block:hover,
    .service-card:hover,
    .testimonial-card:hover,
    .birkman-card:hover {
        transform: translateY(-3px);
        background: rgba(255, 255, 255, 0.98);
        border-color: rgba(255, 107, 53, 0.3);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    
    .coaching-block:hover::before,
    .service-card:hover::before,
    .testimonial-card:hover::before,
    .birkman-card:hover::before {
        opacity: 1;
    }
    
    /* Mobile Button System - Same as Desktop */
    button,
    .cta-button,
    .contact-bubble,
    .birkman-info-btn,
    .icf-cta-btn {
        background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
        border: none;
        border-radius: 12px;
        padding: 14px 24px;
        font-weight: 600;
        font-size: 15px;
        color: white !important;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        transition: all 0.3s ease;
        cursor: pointer;
        text-decoration: none;
    }
    
    button:hover,
    .cta-button:hover,
    .contact-bubble:hover,
    .birkman-info-btn:hover,
    .icf-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        background: linear-gradient(135deg, #E55A2B 0%, #D14A20 100%);
    }
    
    
    /* Enhanced Grid System */
    .grid,
    .coaching-grid,
    .service-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 0 8px;
    }
    
    /* Premium Animation System */
    .fade-in-up {
        animation: premiumFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    @keyframes premiumFadeInUp {
        0% {
            opacity: 0;
            transform: translateY(40px) scale(0.98);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    /* Mobile Header - Readable */
    .new-header {
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
        padding: 15px 0;
    }
    
    .logo-text {
        color: var(--white);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    .logo-subtext {
        color: rgba(255, 255, 255, 0.9) !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .nav-link {
        color: var(--white);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    /* Mobile Card Text - Force Readability */
    .coaching-block h3,
    .coaching-block .coaching-item-title,
    .service-card h3,
    .service-card .service-title,
    .testimonial-card h3,
    .testimonial-card .testimonial-title,
    .birkman-card h3 {
        color: var(--white);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
        font-weight: 600 !important;
    }
    
    .coaching-block p,
    .coaching-block .coaching-item-text,
    .service-card p,
    .service-card .service-description,
    .testimonial-card p,
    .testimonial-card .testimonial-text,
    .birkman-card p {
        color: var(--white);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) !important;
        opacity: 1 !important;
    }
    
    /* Mobile Card Text - Dark for White Background */
    .coaching-block *,
    .coaching-block h3,
    .coaching-block p {
        color: var(--text-primary);
        text-shadow: none;
    }
    
    .service-card *,
    .service-card h3,
    .service-card p {
        color: var(--text-primary);
        text-shadow: none;
    }
    
    .testimonial-card *,
    .testimonial-card h3,
    .testimonial-card p {
        color: var(--text-primary);
        text-shadow: none;
    }
    
    .birkman-card *,
    .birkman-card h3,
    .birkman-card p {
        color: var(--text-primary);
        text-shadow: none;
    }
    
    /* Override any transparent or light colors in cards */
    .coaching-block .coaching-link,
    .service-card .service-link,
    .testimonial-card .testimonial-link {
        color: var(--white);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
        font-weight: 600 !important;
    }
    
    /* Mobile Coach Cards - White Background */
    .team-member {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 16px;
        padding: 25px;
        margin-bottom: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .team-member .member-bio p {
        color: var(--text-primary);
        text-shadow: none;
    }
    
    .team-member .member-name {
        color: var(--text-primary);
        text-shadow: none;
    }
    
    /* Mobile CV/Credentials - Dark Text */
    .team-member .credentials,
    .team-member .credentials p,
    .team-member .credentials strong {
        color: var(--text-primary);
        text-shadow: none;
        background: rgba(255, 255, 255, 0.95);
        padding: 15px;
        border-radius: 12px;
        margin-top: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Premium Footer */
    footer {
        padding: 50px 24px 24px;
        background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }
    
    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #FF6B35, #E55A2B);
        border-radius: 2px;
    }
}

/* Ultra Premium Small Mobile (480px and below) */
@media (max-width: 480px) {
    body {
        padding-top: 65px; /* Smaller header space for small screens */
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Small Mobile Header Adjustments */
    .header {
        min-height: 65px;
    }
    
    .header .container,
    .header-container {
        min-height: 65px;
        padding: 10px 16px;
    }
    
    .kite-logo {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-subtext {
        font-size: 0.7rem;
    }
    
    .mobile-menu-btn {
        width: 36px;
        height: 32px;
        padding: 6px;
    }
    
    .main-nav {
        top: 65px;
        max-height: calc(100vh - 65px);
    }
    
    .nav-link {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .contact-bubble {
        margin: 16px 20px 8px;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.3;
        color: var(--white);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }
    
    h2 {
        font-size: 1.6rem;
        line-height: 1.4;
        color: var(--white);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }
    
    h3 {
        font-size: 1.3rem;
        line-height: 1.4;
        color: var(--white);
    }
    
    p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
        color: var(--white);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    
    .coaching-block,
    .service-card,
    .testimonial-card,
    .birkman-card {
        padding: 24px;
        border-radius: 18px;
        margin-bottom: 20px;
        background: rgba(255, 255, 255, 0.95);
    }
    
    button,
    .cta-button,
    .contact-bubble,
    .birkman-info-btn,
    .icf-cta-btn {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 10px;
        color: white !important;
    }
    
    .grid,
    .coaching-grid,
    .service-grid {
        gap: 20px;
        padding: 0 4px;
    }
    
    /* Small Mobile Card Text - Force Readability */
    .coaching-block h3,
    .coaching-block .coaching-item-title,
    .service-card h3,
    .service-card .service-title,
    .testimonial-card h3,
    .testimonial-card .testimonial-title,
    .birkman-card h3 {
        color: var(--white);
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6) !important;
        font-weight: 600 !important;
    }
    
    .coaching-block p,
    .coaching-block .coaching-item-text,
    .service-card p,
    .service-card .service-description,
    .testimonial-card p,
    .testimonial-card .testimonial-text,
    .birkman-card p {
        color: var(--white);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
        opacity: 1 !important;
    }
    
    /* Small Mobile Card Text - Dark for White Background */
    .coaching-block *,
    .service-card *,
    .testimonial-card *,
    .birkman-card * {
        color: var(--text-primary);
        text-shadow: none;
    }
    
    .coaching-block .coaching-link,
    .service-card .service-link,
    .testimonial-card .testimonial-link {
        color: var(--white);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4) !important;
        font-weight: 600 !important;
    }
    
    /* Small Mobile Coach Cards - White Background */
    .team-member {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 14px;
        padding: 20px;
        margin-bottom: 16px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    .team-member .member-bio p {
        color: var(--text-primary);
        text-shadow: none;
    }
    
    .team-member .member-name {
        color: var(--text-primary);
        text-shadow: none;
    }
    
    /* Small Mobile CV/Credentials - Dark Text */
    .team-member .credentials,
    .team-member .credentials p,
    .team-member .credentials strong {
        color: var(--text-primary);
        text-shadow: none;
        background: rgba(255, 255, 255, 0.95);
        padding: 12px;
        border-radius: 10px;
        margin-top: 12px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        font-size: 13px;
    }
}
