/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #4ECDC4;
    --accent-pink: #FF006E;
    --accent-yellow: #FFBE0B;
    --accent-blue: #3A86FF;
    --dark: #2D3142;
    --dark-light: #3F4354;
    --gray: #8B8C9E;
    --light-gray: #E8E9F3;
    --white: #FFFFFF;
    --success: #06D6A0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF006E 100%);
    --gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #3A86FF 100%);
    --gradient-warm: linear-gradient(135deg, #FFBE0B 0%, #FF6B35 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 49, 66, 0.08);
    --shadow-md: 0 4px 16px rgba(45, 49, 66, 0.12);
    --shadow-lg: 0 8px 32px rgba(45, 49, 66, 0.16);
    --shadow-xl: 0 16px 48px rgba(45, 49, 66, 0.24);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Scroll offset for fixed header */
section[id] {
    scroll-margin-top: 120px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
    padding: 10px 0;
}

.header.scrolled {
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 0;
}

/* Header links change color when scrolled */
.header .nav-link {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
}

.header .nav-link:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.header.scrolled .nav-link:hover {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.15);
}

/* Logo text color */
.header .logo-text {
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.header.scrolled .logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile menu button color */
.header .mobile-menu-btn span {
    background: var(--white);
}

.header.scrolled .mobile-menu-btn span {
    background: var(--white);
}

/* Social links in header */
.header .social-link {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.header.scrolled .social-link {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary);
}

.header .social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 48px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 100px;
    width: auto;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(255, 107, 53, 0.08);
}

.nav-link-cta {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 8px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.nav-link-cta:hover {
    color: var(--white);
    background: var(--gradient-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.nav-link-cta svg {
    stroke-width: 2.5px;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.08);
    color: var(--primary);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 107, 53, 0.08);
}

.mobile-menu-btn span {
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 40px rgba(45, 49, 66, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid var(--light-gray);
}

.mobile-menu.active {
    max-height: 500px;
}

.mobile-menu-link {
    padding: 18px 24px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-link:hover {
    background: rgba(255, 107, 53, 0.05);
    color: var(--primary);
    padding-left: 32px;
}

.mobile-menu-link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.mobile-menu-link:hover svg {
    opacity: 1;
}

.mobile-menu-link-cta {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    border-bottom: none;
}

.mobile-menu-link-cta:hover {
    background: var(--gradient-primary);
    color: var(--white);
    padding-left: 24px;
}

.mobile-menu-link-cta svg {
    opacity: 1;
}

.mobile-menu-link:last-child {
    border-bottom: none;
}

body {
    padding-top: 0;
    /* Header is now transparent and overlays content */
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 29, 46, 0.85) 0%, rgba(45, 49, 66, 0.85) 50%, rgba(63, 67, 84, 0.85) 100%),
        url('/images/hero.png') center center / cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding: 140px 0 80px;
}

/* Dark overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.paint-splash {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
    animation: float 25s infinite ease-in-out;
}

.paint-splash-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #FF6B35 0%, #FF8C42 30%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.paint-splash-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #4ECDC4 0%, #44A5A0 30%, transparent 70%);
    bottom: -200px;
    left: -200px;
    animation-delay: 7s;
}

.paint-splash-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #FFBE0B 0%, #FFD60A 30%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

/* Additional colorful splashes */
.paint-splash::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(60px);
    opacity: 0.6;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    25% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.5;
    }

    50% {
        transform: translate(-40px, 40px) scale(0.9);
        opacity: 0.35;
    }

    75% {
        transform: translate(40px, 50px) scale(1.1);
        opacity: 0.45;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 40px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo-badge:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--accent-yellow);
    filter: drop-shadow(0 2px 8px rgba(255, 190, 11, 0.3));
}

.hero-title {
    font-family: var(--font-primary);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-line {
    display: block;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.title-main {
    display: block;
    font-size: 82px;
    font-weight: 900;
    background: linear-gradient(135deg, #FFBE0B 0%, #FF6B35 50%, #FF006E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -2px;
    text-shadow: 0 4px 30px rgba(255, 107, 53, 0.3);
    filter: drop-shadow(0 4px 20px rgba(255, 107, 53, 0.2));
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 56px;
    opacity: 0.95;
    font-style: italic;
    line-height: 1.5;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 56px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.detail-icon {
    font-size: 36px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.detail-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.detail-label {
    font-size: 11px;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}

.discount-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gradient-warm);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 190, 11, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(6px);
}

/* About Section (Hakkımızda) */
.about {
    padding: 60px 0 0 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 190, 11, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

/* Story Cards */
.story-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-card {
    padding: 32px;
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.4s ease;
}

.story-card-1 {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 107, 53, 0.03) 100%);
    border: 2px solid rgba(255, 107, 53, 0.15);
}

.story-card-1::before {
    background: var(--gradient-primary);
}

.story-card-2 {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.08) 0%, rgba(78, 205, 196, 0.03) 100%);
    border: 2px solid rgba(78, 205, 196, 0.15);
}

.story-card-2::before {
    background: var(--gradient-secondary);
}

.story-card-3 {
    background: linear-gradient(135deg, rgba(255, 190, 11, 0.08) 0%, rgba(255, 190, 11, 0.03) 100%);
    border: 2px solid rgba(255, 190, 11, 0.15);
}

.story-card-3::before {
    background: var(--gradient-warm);
}

.story-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.story-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.story-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.story-card h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.story-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray);
    text-align: justify;
}

/* About Main */
.about-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-image-placeholder {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #FF6B35 0%, #FFBE0B 50%, #4ECDC4 100%);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.image-decoration-1 {
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.3);
    top: -50px;
    right: -50px;
    animation: float 8s infinite ease-in-out;
}

.image-decoration-2 {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    bottom: -30px;
    left: -30px;
    animation: float 10s infinite ease-in-out reverse;
}

.image-decoration-3 {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.25);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.about-badge-float {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 32px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.badge-emoji {
    font-size: 32px;
}

.badge-text {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description h3 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-description p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 32px;
    text-align: justify;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--item-color-start) 0%, var(--item-color-end) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.highlight-item:nth-child(1) {
    --item-color-start: rgba(255, 107, 53, 0.1);
    --item-color-end: rgba(255, 190, 11, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.highlight-item:nth-child(2) {
    --item-color-start: rgba(78, 205, 196, 0.1);
    --item-color-end: rgba(58, 134, 255, 0.1);
    border-color: rgba(78, 205, 196, 0.2);
}

.highlight-item:nth-child(3) {
    --item-color-start: rgba(255, 0, 110, 0.1);
    --item-color-end: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 0, 110, 0.2);
}

.highlight-item:nth-child(4) {
    --item-color-start: rgba(58, 134, 255, 0.1);
    --item-color-end: rgba(102, 126, 234, 0.1);
    border-color: rgba(58, 134, 255, 0.2);
}

.highlight-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.highlight-item:nth-child(1) .highlight-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #FFBE0B 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

.highlight-item:nth-child(2) .highlight-icon {
    background: linear-gradient(135deg, #4ECDC4 0%, #3A86FF 100%);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.35);
}

.highlight-item:nth-child(3) .highlight-icon {
    background: linear-gradient(135deg, #FF006E 0%, #FF6B35 100%);
    box-shadow: 0 4px 12px rgba(255, 0, 110, 0.35);
}

.highlight-item:nth-child(4) .highlight-icon {
    background: linear-gradient(135deg, #3A86FF 0%, #667eea 100%);
    box-shadow: 0 4px 12px rgba(58, 134, 255, 0.35);
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.15) rotate(5deg);
}

.highlight-item span:last-child {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

/* Features Section */
.features-section {
    margin-top: 64px;
}

.features-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 56px;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.title-icon {
    font-size: 40px;
    animation: rotate 3s infinite linear;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 40px 32px;
    background: var(--white);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, rgba(58, 134, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--secondary);
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.2);
}

.feature-card-animate {
    animation: fadeInUp 0.6s ease-out backwards;
}

.feature-card-animate:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card-animate:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card-animate:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card-animate:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card-animate:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card-animate:nth-child(6) {
    animation-delay: 0.6s;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 190, 11, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 190, 11, 0.2) 100%);
}

.feature-icon {
    font-size: 40px;
}

.feature-card h4 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}


/* Sessions Section */
.sessions {
    padding: 100px 0;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 64px;
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.session-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.session-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.session-number {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 16px;
}

.session-time {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.session-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.session-status.available {
    background: rgba(6, 214, 160, 0.1);
    color: var(--success);
}

.info-note {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px;
    background: rgba(255, 190, 11, 0.1);
    border-left: 4px solid var(--accent-yellow);
    border-radius: 12px;
    color: var(--dark);
}

.info-note svg {
    flex-shrink: 0;
    color: var(--accent-yellow);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    padding: 40px 32px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, rgba(58, 134, 255, 0.05) 100%);
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(58, 134, 255, 0.1) 100%);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Application Section */
.application {
    padding: 100px 0;
    background: linear-gradient(135deg, #2D3142 0%, #3F4354 100%);
}

.application .section-title,
.application .section-subtitle {
    color: var(--white);
}

.application-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.application-header {
    margin-bottom: 48px;
}

.application-form {
    background: var(--white);
    padding: 48px;
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: var(--font-secondary);
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: var(--dark);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom {
    background: var(--gradient-primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked+.checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 14px;
    font-weight: bold;
}

.submit-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-family: var(--font-secondary);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-button svg {
    transition: transform 0.3s ease;
}

.submit-button:hover svg {
    transform: translateX(4px);
}

.success-message {
    display: none;
    text-align: center;
    padding: 48px;
    background: var(--white);
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
}

.success-message.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    font-weight: bold;
}

.success-message h3 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.success-message p {
    font-size: 16px;
    color: var(--gray);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

.contact-info h3,
.contact-cta h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    color: var(--dark);
}

.contact-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.contact-cta p {
    color: var(--gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #F77737 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    padding: 32px 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
}

.footer p {
    opacity: 0.7;
    font-size: 14px;
}

/* Error Messages */
.error-message {
    display: block;
    color: var(--accent-pink);
    font-size: 13px;
    margin-top: 6px;
    font-weight: 500;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--accent-pink);
}

/* Responsive */
@media (max-width: 768px) {

    /* Header Mobile - Transparent & Professional */
    .header {
        padding: 8px 0;
    }

    .header.scrolled {
        padding: 5px 0;
    }

    .nav {
        display: none;
    }

    .social-links {
        display: flex;
        gap: 6px;
        margin-right: 4px;
    }

    .social-link {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        border-radius: 10px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .social-link:hover {
        background: var(--gradient-primary);
        transform: scale(1.1);
    }

    .header.scrolled .social-link {
        background: rgba(255, 107, 53, 0.2);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-link {
        color: rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 18px 24px;
    }

    .mobile-menu-link:hover {
        background: rgba(255, 107, 53, 0.15);
        color: var(--primary);
    }

    .mobile-menu-link-cta {
        background: var(--gradient-primary);
        margin: 16px;
        border-radius: 14px;
        justify-content: center;
    }

    body {
        padding-top: 0;
    }

    .logo-img {
        height: 50px;
    }

    .logo-text {
        font-size: 16px;
        display: none;
    }

    .header-content {
        padding: 12px 0;
        gap: 12px;
    }

    .mobile-menu.active {
        max-height: 500px;
    }

    /* Hero Mobile - Compact & Stunning */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-content {
        padding: 0 8px;
    }

    .title-line {
        font-size: 14px;
        letter-spacing: 4px;
        margin-bottom: 12px;
    }

    .title-main {
        font-size: 38px;
        letter-spacing: -1px;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
        padding: 0 12px;
        line-height: 1.6;
    }

    .hero-details {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
        padding: 0 8px;
    }

    .detail-item {
        width: 100%;
        padding: 16px 20px;
        border-radius: 16px;
        gap: 14px;
    }

    .detail-icon {
        font-size: 28px;
    }

    .detail-label {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .detail-value {
        font-size: 15px;
    }

    .discount-badge {
        display: block;
        margin-top: 6px;
        font-size: 10px;
        padding: 5px 12px;
    }

    /* CTA Buttons Mobile */
    .hero-actions {
        flex-direction: column !important;
        gap: 12px !important;
        padding: 0 16px;
    }

    .cta-button {
        width: 100%;
        padding: 16px 28px;
        font-size: 16px;
        border-radius: 14px;
        justify-content: center;
    }

    .cta-button.secondary {
        padding: 14px 24px;
        font-size: 15px;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 15px;
        padding: 0 16px;
    }

    /* About Section Mobile */
    .about {
        padding: 48px 0;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-cards {
        order: 2;
    }

    .about-main {
        order: 1;
    }

    .story-card {
        padding: 24px;
        border-radius: 16px;
    }

    .story-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .story-card h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .story-card p {
        font-size: 14px;
    }

    .about-image-placeholder {
        height: 200px;
        border-radius: 20px;
    }

    .about-description h3 {
        font-size: 22px;
    }

    .about-description p {
        font-size: 14px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .highlight-item {
        padding: 12px 16px;
        font-size: 14px;
    }

    /* Calendar Mobile */
    .sessions {
        padding: 48px 0;
    }

    .calendar-wrapper {
        margin-top: 24px;
        border-radius: 16px;
    }

    .calendar-header {
        padding: 16px 20px;
    }

    .calendar-title {
        font-size: 16px;
    }

    .calendar-nav-btn {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .calendar-day-header {
        padding: 10px 4px;
        font-size: 11px;
    }

    .calendar-day {
        min-height: 80px;
        padding: 6px;
    }

    .day-number {
        font-size: 12px;
    }

    .event-image {
        height: 60px;
    }

    .event-details {
        padding: 8px;
    }

    .event-title {
        font-size: 10px;
    }

    .event-spots {
        font-size: 9px;
    }

    .event-overlay {
        font-size: 9px;
        padding: 3px 6px;
        top: 4px;
        right: 4px;
    }

    /* Contact Section Mobile */
    .contact {
        padding: 48px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    .info-block {
        margin-bottom: 24px !important;
    }

    .info-block h4 {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 24px !important;
        border-radius: 16px !important;
    }

    .faq-section h3 {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }

    .faq-item summary {
        padding: 14px !important;
        font-size: 14px !important;
    }

    .faq-content {
        padding: 14px !important;
        font-size: 13px !important;
    }

    /* Footer Mobile */
    .footer {
        padding: 24px 0;
    }

    .footer p {
        font-size: 13px;
    }

    /* Sessions & Features Grid Mobile */
    .sessions-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .application-form {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .features-title {
        font-size: 24px;
        flex-direction: column;
        gap: 10px;
    }

    /* Smooth animations on mobile */
    .story-card:hover {
        transform: translateX(4px);
    }

    .detail-item:hover {
        transform: translateY(-2px);
    }

    /* Paint splash effects - smaller on mobile */
    .paint-splash-1 {
        width: 400px;
        height: 400px;
        top: -150px;
        right: -150px;
    }

    .paint-splash-2 {
        width: 350px;
        height: 350px;
        bottom: -150px;
        left: -150px;
    }

    .paint-splash-3 {
        width: 250px;
        height: 250px;
    }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .header {
        padding: 8px 0;
    }

    .nav {
        gap: 4px;
    }

    .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }

    .nav-link-cta {
        padding: 10px 18px;
    }

    .logo-text {
        font-size: 16px;
    }

    .logo-img {
        height: 60px;
    }

    .title-main {
        font-size: 62px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .detail-item {
        padding: 18px 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .calendar-day {
        min-height: 100px;
    }

    .event-image {
        height: 100px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .title-main {
        font-size: 32px;
    }

    .title-line {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .detail-item {
        padding: 14px 16px;
    }

    .detail-value {
        font-size: 14px;
    }

    .cta-button {
        padding: 14px 20px;
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .calendar-day {
        min-height: 70px;
        padding: 4px;
    }

    .day-number {
        font-size: 11px;
    }

    .event-title {
        font-size: 9px;
    }
}