/* ========================================
   MEHMET ÖVEZ ELITE COACHING - STYLES
   Premium Coaching Website Design
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Purple & Dark Theme - New Color Palette */
    --bg-primary: #00100E;
    --bg-secondary: #0d1a18;
    --bg-card: rgba(112, 103, 171, 0.05);
    --glass-border: rgba(112, 103, 171, 0.25);
    --text-primary: #D8DDE0;
    --text-secondary: rgba(216, 221, 224, 0.7);

    /* Purple Gradients */
    --primary-gradient: linear-gradient(135deg, #7067AB 0%, #B39096 50%, #4A304B 100%);
    --secondary-gradient: linear-gradient(135deg, #00100E 0%, #4A304B 100%);
    --accent-gradient: linear-gradient(135deg, #7067AB 0%, #4A304B 100%);

    /* Colors */
    --gold: #7067AB;
    --gold-light: #B39096;
    --gold-dark: #4A304B;
    --danger: #f5576c;
    --success: #00f2a0;

    --shadow-color: rgba(0, 0, 0, 0.5);
    --shadow-gold: rgba(112, 103, 171, 0.35);
    --orb-opacity: 0.4;

    /* Transitions */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-theme="light"] {
    --bg-primary: #D8DDE0;
    --bg-secondary: #c8cdd0;
    --bg-card: rgba(112, 103, 171, 0.08);
    --glass-border: rgba(74, 48, 75, 0.25);
    --text-primary: #00100E;
    --text-secondary: #4A304B;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --orb-opacity: 0.2;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-primary);
    min-height: 100vh;
    color: var(--text-primary);
    overflow-x: hidden;
    transition: background 0.5s var(--transition-smooth), color 0.5s var(--transition-smooth);
    line-height: 1.6;
}

/* ========================================
   BACKGROUND ANIMATION
======================================== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: var(--orb-opacity);
    transition: opacity 0.6s var(--transition-smooth);
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 103, 171, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: floatOrb1 25s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 48, 75, 0.3) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: floatOrb2 20s ease-in-out infinite;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(179, 144, 150, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatOrb3 22s ease-in-out infinite;
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(80px, -60px) scale(1.15);
    }

    50% {
        transform: translate(-40px, 40px) scale(0.9);
    }

    75% {
        transform: translate(60px, 30px) scale(1.1);
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-70px, -50px) scale(1.2);
    }

    66% {
        transform: translate(50px, -30px) scale(0.85);
    }
}

@keyframes floatOrb3 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    25% {
        transform: translate(-40%, -60%) scale(1.1);
    }

    50% {
        transform: translate(-60%, -40%) scale(0.95);
    }

    75% {
        transform: translate(-45%, -55%) scale(1.05);
    }
}

/* ========================================
   HEADER
======================================== */
header {
    padding: 1rem 4rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s var(--transition-smooth);
    animation: slideDown 0.6s var(--transition-elastic) forwards;
}

[data-theme="dark"] header {
    background: rgba(0, 16, 14, 0.9);
}

[data-theme="light"] header {
    background: rgba(216, 221, 224, 0.9);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
}

.logo a {
    text-decoration: none;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', serif;
    transition: transform 0.3s var(--transition-elastic);
    display: inline-block;
}

.logo a:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s var(--transition-elastic);
}

nav a:hover,
nav a.active {
    color: var(--gold);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--transition-elastic);
    position: relative;
    overflow: hidden;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    border-color: var(--gold);
    box-shadow: 0 8px 25px var(--shadow-gold);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: var(--text-primary);
    stroke: var(--text-primary);
    stroke-width: 1.5;
    transition: all 0.4s var(--transition-elastic);
}

.theme-toggle:hover svg {
    fill: var(--gold);
    stroke: var(--gold);
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: block;
}

[data-theme="light"] .sun-icon {
    display: block;
}

[data-theme="light"] .moon-icon {
    display: none;
}

.cta-btn-header {
    padding: 0.75rem 1.5rem;
    background: var(--primary-gradient);
    color: #00100E;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.4s var(--transition-elastic);
    box-shadow: 0 4px 15px var(--shadow-gold);
}

.cta-btn-header:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px var(--shadow-gold);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 500;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 4rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.2s backwards;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.3s backwards;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.5s backwards;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--transition-elastic);
}

.btn-primary {
    background: var(--primary-gradient);
    color: #00100E;
    border: none;
    box-shadow: 0 4px 20px var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 40px var(--shadow-gold);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.6s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s var(--transition-smooth) 0.4s backwards;
}

.hero-image-wrapper {
    position: relative;
    width: 400px;
    height: 500px;
    border-radius: 200px 200px 30px 30px;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 30px 80px var(--shadow-gold);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at center, rgba(112, 103, 171, 0.2) 0%, transparent 50%);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   SECTIONS COMMON
======================================== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SERVICES SECTION
======================================== */
.services {
    padding: 8rem 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px var(--shadow-gold);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(112, 103, 171, 0.1) 0%, var(--bg-card) 100%);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.35rem 0.75rem;
    background: var(--primary-gradient);
    color: #00100E;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: #00100E;
    fill: none;
    stroke-width: 2;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.service-card>p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s var(--transition-smooth);
}

.service-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 3px solid var(--gold);
    box-shadow: 0 30px 80px var(--shadow-gold);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-image-decoration {
    position: absolute;
    inset: -20px;
    border: 2px dashed var(--glass-border);
    border-radius: 40px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #00100E;
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.exp-number {
    font-size: 2rem;
    font-weight: 700;
}

.exp-text {
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
}

.about-text .section-badge {
    margin-bottom: 0.75rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.about-feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 3;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials {
    padding: 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px var(--shadow-gold);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #00100E;
    font-size: 0.9rem;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ========================================
   CONTACT SECTION
======================================== */
.contact {
    padding: 8rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s var(--transition-smooth);
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: #00100E;
    fill: none;
    stroke-width: 2;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--transition-elastic);
}

.social-link:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    transform: translateY(-5px);
}

.social-link svg {
    width: 22px;
    height: 22px;
    stroke: var(--text-primary);
    fill: none;
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

.social-link:hover svg {
    stroke: #00100E;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--shadow-gold);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Phone Input with Country Code */
.phone-input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.phone-input-wrapper .country-code-select {
    width: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important;
    flex: 0 0 130px !important;
}

.phone-input-wrapper input[type="tel"] {
    flex: 1 1 auto !important;
    width: auto !important;
}

/* ========================================
   FOOTER
======================================== */
footer {
    padding: 4rem 4rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ========================================
   MODAL
======================================== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    transform: scale(0.9);
    transition: transform 0.4s var(--transition-elastic);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-small {
    padding: 2.5rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    stroke: #00100E;
    fill: none;
    stroke-width: 3;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ========================================
   USER MESSAGES MODAL
======================================== */
.user-messages-modal {
    max-width: 700px;
    max-height: 85vh;
    overflow-y: auto;
    text-align: left;
    padding: 2.5rem;
}

.user-messages-modal h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.user-messages-modal .modal-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.user-messages-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.loading-messages,
.error-messages {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
}

.no-user-messages {
    text-align: center;
    padding: 3rem 1rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.no-messages-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-user-messages h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.no-user-messages p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* User Message Card */
.user-message-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.user-message-card.has-reply {
    border-left: 4px solid var(--success);
}

.user-message-card.pending {
    border-left: 4px solid var(--gold);
}

.user-message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.message-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.message-status {
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.message-status.replied {
    background: rgba(0, 242, 160, 0.15);
    color: var(--success);
}

.message-status.pending {
    background: rgba(112, 103, 171, 0.15);
    color: var(--gold);
}

.user-message-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.user-message-meta span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.user-message-content {
    margin-bottom: 1.5rem;
}

.user-message-content h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.user-message-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* Admin Reply Section */
.admin-reply {
    background: rgba(0, 242, 160, 0.05);
    border: 1px solid rgba(0, 242, 160, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
}

.reply-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.reply-icon {
    font-size: 1.25rem;
}

.reply-header h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--success);
    margin: 0;
}

.reply-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-left: auto;
}

.admin-reply p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

/* Pending Reply */
.pending-reply {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(112, 103, 171, 0.05);
    border: 1px dashed var(--glass-border);
    border-radius: 12px;
}

.pending-icon {
    font-size: 1.5rem;
}

.pending-reply p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.modal-large {
    max-width: 700px;
    width: 95%;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
    .hero {
        padding: 8rem 3rem 4rem;
    }

    .section-container {
        padding: 0 3rem;
    }

    .hero-image-wrapper {
        width: 350px;
        height: 450px;
    }
}

@media (max-width: 992px) {
    header {
        padding: 1rem 2rem;
    }

    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .cta-btn-header {
        display: none;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 7rem 2rem 4rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        width: 280px;
        height: 350px;
    }

    .scroll-indicator {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-text .section-badge {
        display: block;
        text-align: center;
    }

    .about-description {
        text-align: center;
    }

    .about-features {
        justify-content: center;
    }

    .about-text .btn-primary {
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .section-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    footer {
        padding: 3rem 2rem 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hero {
        padding: 6rem 1rem 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-image-wrapper {
        width: 240px;
        height: 300px;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .section-container {
        padding: 0 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -10px;
        right: -10px;
    }

    .exp-number {
        font-size: 1.5rem;
    }
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation for cards */
.service-card,
.testimonial-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s var(--transition-smooth);
}

.service-card.visible,
.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   AUTHENTICATION STYLES
======================================== */

/* Auth Buttons in Header */
.guest-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.auth-btn-primary,
.auth-btn-secondary {
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s var(--transition-elastic);
    border: none;
}

.auth-btn-primary {
    background: var(--primary-gradient);
    color: #00100E;
    box-shadow: 0 4px 15px var(--shadow-gold);
}

.auth-btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px var(--shadow-gold);
}

.auth-btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.auth-btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* User Menu */
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.user-avatar-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-avatar-header:hover {
    border-color: var(--gold);
}

.user-avatar-header span {
    font-weight: 500;
    font-size: 0.9rem;
}

.user-avatar-header svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-secondary);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.user-menu:hover .user-avatar-header svg {
    transform: rotate(180deg);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 0.75rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a,
.user-dropdown button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-dropdown a:hover,
.user-dropdown button:hover {
    background: rgba(112, 103, 171, 0.1);
    color: var(--gold);
}

/* Auth Modal Content */
.auth-modal-content {
    max-width: 420px;
    padding: 2.5rem;
    position: relative;
}

.auth-modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    border-color: var(--danger);
    background: rgba(245, 87, 108, 0.1);
}

.modal-close-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-secondary);
    fill: none;
    stroke-width: 2;
}

.modal-close-btn:hover svg {
    stroke: var(--danger);
}

.auth-error {
    background: rgba(245, 87, 108, 0.1);
    border: 1px solid rgba(245, 87, 108, 0.3);
    color: var(--danger);
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.auth-link {
    text-align: center;
    margin-top: 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.auth-link a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
}

.auth-link a:hover {
    text-decoration: underline;
}

/* Verification Notice */
.verification-notice {
    text-align: center;
    padding: 1rem 0;
}

.verification-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.verification-notice h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.verification-notice p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.verification-notice strong {
    color: var(--gold);
}

/* Contact Form Overlay */
.contact-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 16, 14, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 24px;
}

.contact-form-overlay .overlay-content {
    text-align: center;
    padding: 2rem;
}

.contact-form-overlay .overlay-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-form-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-overlay p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.contact-form-overlay .overlay-email {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem !important;
}

.contact-form-overlay .overlay-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-form {
    position: relative;
}

/* Auth Toast Notification */
.auth-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 1rem 2rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: all 0.4s var(--transition-elastic);
    box-shadow: 0 10px 40px var(--shadow-color);
}

.auth-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.auth-toast.success {
    border-color: var(--success);
    background: linear-gradient(90deg, rgba(0, 242, 160, 0.1) 0%, var(--bg-secondary) 100%);
}

.auth-toast.error {
    border-color: var(--danger);
    background: linear-gradient(90deg, rgba(245, 87, 108, 0.1) 0%, var(--bg-secondary) 100%);
}

.auth-toast.warning {
    border-color: var(--gold);
    background: linear-gradient(90deg, rgba(112, 103, 171, 0.1) 0%, var(--bg-secondary) 100%);
}

.auth-toast.info {
    border-color: #4facfe;
    background: linear-gradient(90deg, rgba(79, 172, 254, 0.1) 0%, var(--bg-secondary) 100%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .guest-buttons {
        display: none;
    }

    .user-menu {
        display: none;
    }

    .mobile-menu {
        padding-bottom: 1.5rem;
    }

    .mobile-auth-btns {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--glass-border);
    }

    .auth-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .contact-form-overlay .overlay-content {
        padding: 1.5rem;
    }

    .contact-form-overlay .overlay-buttons {
        flex-direction: column;
    }

    .contact-form-overlay .overlay-buttons button {
        width: 100%;
    }
}

/* Auth Required Notice Banner */
.auth-required-notice {
    background: linear-gradient(135deg, rgba(112, 103, 171, 0.15) 0%, rgba(74, 48, 75, 0.15) 100%);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-notice-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.auth-notice-icon {
    font-size: 2.5rem;
}

.auth-notice-text {
    text-align: left;
}

.auth-notice-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-notice-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.auth-notice-buttons {
    display: flex;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .auth-required-notice {
        padding: 1.25rem;
    }

    .auth-notice-content {
        flex-direction: column;
        text-align: center;
    }

    .auth-notice-text {
        text-align: center;
    }

    .auth-notice-buttons {
        width: 100%;
        flex-direction: column;
    }

    .auth-notice-buttons button {
        width: 100%;
    }
}