/**
 * WorkFlow Analytics — Ana sayfa stilleri
 * Template: tek merkezden yönetilebilir CSS
 */

/* ==========================================================================
   Variables (tema renkleri ve ölçüler)
   ========================================================================== */
:root {
    --dark: #0f172a;
    --dark-2: #1e293b;
    --dark-3: #334155;
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --text: #0f172a;
    --text-muted: #64748b;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-light: rgba(245, 158, 11, .12);
    --border: #e2e8f0;
    --radius: 12px;
    --radius-lg: 20px;
    --max-w: 1200px;
    --shadow: 0 4px 20px rgba(0,0,0,.06);
    --shadow-lg: 0 20px 40px rgba(0,0,0,.08);
}

/* ==========================================================================
   Base & reset
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
}

/* ==========================================================================
   Section pattern (overline + title)
   ========================================================================== */
.section {
    padding: 5rem 1.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
    scroll-margin-top: 5rem;
}

#hero {
    scroll-margin-top: 0;
}

.section-overline {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.section-sub {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 2.5rem;
    font-size: 1.0625rem;
}

.section-head {
    text-align: center;
}

.section-head .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Header (fixed, dark)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 23, 42, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: background .3s;
}

.nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.nav-logo {
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: rgba(255,255,255,.1);
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    transition: background .2s;
}
.nav-toggle:hover {
    background: rgba(255,255,255,.2);
}
.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    margin: 0 auto;
    transition: transform .25s, opacity .25s;
}
.nav.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.nav.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color .2s;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Mobil: hamburger menü */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 1rem 1.5rem 1.5rem;
        background: rgba(15, 23, 42, .98);
        border-bottom: 1px solid rgba(255,255,255,.08);
        box-shadow: 0 10px 30px rgba(0,0,0,.3);
    }
    .nav.is-open .nav-links {
        display: flex;
    }
    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .nav-links li:last-child {
        border-bottom: none;
    }
    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
    }
    .nav {
        position: relative;
    }
}

/* ==========================================================================
   Hero (full-height, slider)
   ========================================================================== */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    background-image: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(245, 158, 11, .15), transparent),
                      linear-gradient(180deg, var(--dark) 0%, #0a0f1a 100%);
}

.hero-slider {
    position: relative;
    width: 100%;
}

.hero-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 6rem 1.5rem 5rem;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-slide.has-bg {
    background-size: cover;
    background-position: center;
}

.hero-slide.has-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,.85) 0%, rgba(15,23,42,.95) 100%);
}

/* Özel renk paleti overlay kullanıldığında varsayılan koyu overlay gizlenir */
.hero-slide.has-bg.has-custom-overlay::after {
    display: none;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-slide.has-bg-color {
    background-size: cover;
    background-position: center;
}

.hero-slide.has-bg .hero-inner {
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,.06);
    padding: 2rem 2.5rem;
    border-radius: var(--radius-lg);
    max-width: 90%;
    border: 1px solid rgba(255,255,255,.08);
}

.hero-slide-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-slide:not(.has-side-image) .hero-slide-inner {
    flex-direction: column;
}

.hero-slide.has-side-image .hero-slide-inner {
    flex-direction: row;
    text-align: left;
}

.hero-slide.has-side-image.hero-side-right .hero-slide-inner {
    flex-direction: row;
}

.hero-slide.has-side-image.hero-side-left .hero-slide-inner {
    flex-direction: row-reverse;
}

.hero-side-image-wrap {
    flex-shrink: 0;
    max-width: 45%;
}

.hero-side-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,.2);
    object-fit: cover;
}

.hero-inner {
    max-width: 780px;
    margin: 0 auto;
}

.hero-slide.has-side-image .hero-inner {
    margin: 0;
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .hero-slide.has-side-image .hero-slide-inner {
        flex-direction: column !important;
        text-align: center;
    }
    .hero-slide.has-side-image.hero-side-left .hero-slide-inner {
        flex-direction: column !important;
    }
    .hero-side-image-wrap {
        max-width: 100%;
        order: -1;
    }
    .hero-side-image {
        max-width: 280px;
        margin: 0 auto;
    }
    .hero-slide.has-side-image .hero-inner {
        margin: 0 auto;
    }
}

.hero .section-overline {
    color: var(--accent);
}

.hero h1 {
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 1.25rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,.75);
    margin: 0 0 2rem;
    line-height: 1.6;
}

.hero .btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.hero .btn-primary:hover {
    background: #fbbf24;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, .35);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}

.hero-nav:hover {
    background: var(--accent);
    color: var(--dark);
}

.hero-nav.prev {
    left: 1.5rem;
}

.hero-nav.next {
    right: 1.5rem;
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 2;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.25);
    cursor: pointer;
    padding: 0;
    transition: background .2s;
}

.hero-dot.active {
    background: var(--accent);
}

/* Hero mobil: daha kompakt ve okunaklı */
@media (max-width: 768px) {
    .hero-slide {
        padding: 4rem 1rem 3rem;
        min-height: auto;
    }
    .hero-slide-inner {
        padding: 0 1rem;
    }
    .hero-slide.has-bg .hero-inner {
        padding: 1.25rem 1.5rem;
        max-width: 100%;
        background: rgba(15, 23, 42, .82);
    }
    .hero h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1rem;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    .hero-nav {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
    .hero-nav.prev {
        left: 0.5rem;
    }
    .hero-nav.next {
        right: 0.5rem;
    }
    .hero-dots {
        bottom: 1rem;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .2s, transform .1s, box-shadow .2s;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   What I Do section (birebir görsel: mavi MY EXPERTISE, kırmızı çizgi, gradient, 3D kartlar)
   ========================================================================== */
.what-section {
    background: linear-gradient(to right, #fefce8 0%, #fef9c3 20%, #fef3c7 45%, #fce7f3 75%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
}

.what-section .section-head {
    margin-bottom: 2.5rem;
}

.what-section .section-overline {
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.what-section .section-title {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.what-section .section-title-underline {
    display: block;
    width: 50px;
    height: 3px;
    background: #dc2626;
    border-radius: 0;
    margin: 0 auto 0;
}

.what-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .what-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.what-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 2px 10px rgba(0,0,0,.04);
    transition: box-shadow .25s, transform .2s;
    text-align: center;
}

.what-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.1), 0 6px 16px rgba(0,0,0,.06);
    transform: translateY(-4px);
}

.what-card .what-icon-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-card .what-icon-wrap svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.08));
}

.what-card h3 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.what-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.what-section .what-squiggle {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 100px;
    height: 50px;
    opacity: 0.5;
    pointer-events: none;
}

.what-section .what-squiggle path {
    stroke: #1e293b;
}

/* ==========================================================================
   Features grid
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: box-shadow .25s, transform .2s;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* Kart görseli / insan görseli alanı — büyük, kart üstünde */
.feature-icon {
    width: 100%;
    height: 160px;
    border-radius: var(--radius-lg);
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-icon svg {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}

.feature-icon--image {
    padding: 0;
    background: transparent;
}

.feature-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}

.feature-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.section--soft {
    background: var(--bg-soft);
}

.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-toggle-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid var(--border);
    background: var(--bg);
    color: var(--text-muted);
    cursor: pointer;
    transition: border-color .2s, background .2s, color .2s;
}

.pricing-toggle-btn:first-child {
    border-radius: var(--radius) 0 0 var(--radius);
}

.pricing-toggle-btn:last-child {
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-left: -2px;
}

.pricing-toggle-btn.active {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--dark);
}

.pricing-toggle-btn:hover:not(.active) {
    border-color: var(--text-muted);
    color: var(--text);
}

.pricing-price {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
    margin: 0 0 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

.pricing-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent), var(--shadow-lg);
}

.pricing-card h3 {
    margin: 0 0 0.25rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text);
}

.pricing-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0 0 1rem;
}

.pricing-limit {
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.pricing-card .btn {
    margin-top: auto;
    text-align: center;
}

.pricing-card.featured .btn {
    background: var(--accent);
    color: var(--dark);
}

.pricing-card.featured .btn:hover {
    background: var(--accent-hover);
    color: var(--dark);
}

.pricing-card:not(.featured) .btn {
    background: var(--dark);
    color: #fff;
    border: 2px solid var(--dark);
}

.pricing-card:not(.featured) .btn:hover {
    background: var(--dark-2);
    border-color: var(--dark-2);
}

/* ==========================================================================
   Privacy (dark section)
   ========================================================================== */
.privacy-section {
    background: var(--dark);
    color: #fff;
}

.privacy-section .section-overline {
    color: var(--accent);
}

.privacy-section .section-title {
    color: #fff;
}

.privacy-section .section-sub {
    color: rgba(255,255,255,.7);
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .privacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.privacy-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: rgba(255,255,255,.05);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.08);
}

.privacy-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-light);
    color: var(--accent);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.privacy-icon .bi {
    font-size: 1.35rem;
    color: inherit;
}

.privacy-item h4 {
    margin: 0 0 0.35rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #fff;
}

.privacy-item p {
    margin: 0;
    font-size: 0.9375rem;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
}

/* ==========================================================================
   About section (two-column: illustration left, headline + CTA right)
   ========================================================================== */
.about-section {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    background: #fafafa;
    background: linear-gradient(to right, #fafafa 0%, #ffffff 30%, #ffffff 70%, #f8fafc 100%);
}

/* About slider (kaydırmalı slaytlar) */
.about-slider {
    position: relative;
    width: 100%;
}

.about-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.about-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
}

.about-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: border-color .2s, background .2s;
}

.about-nav:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.about-prev { left: 1rem; }
.about-next { right: 1rem; }

.about-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.about-dots .about-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background .2s, border-color .2s;
}

.about-dots .about-dot.active {
    background: var(--accent);
    border-color: var(--accent);
}

.about-squiggle {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 100px;
    height: 50px;
    opacity: 0.4;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 0;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 0.9fr 1fr;
        gap: 3rem;
    }
}

.about-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.about-illustration svg,
.about-illustration img {
    width: 100%;
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .08));
}

/* Gerçek fotoğraflar: daha büyük, oranlı, kart hissi */
.about-illustration--photo {
    padding: 0.5rem 0;
}

.about-illustration--photo img {
    max-width: 440px;
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    filter: none;
}

.about-content-col {
    text-align: center;
}

@media (min-width: 992px) {
    .about-content-col {
        text-align: left;
    }
}

.about-headline {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.about-headline-line {
    display: block;
}

.about-headline-underline {
    position: relative;
    display: inline-block;
}

.about-headline-underline::after {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    bottom: 4px;
    height: 6px;
    background: #2563eb;
    border-radius: 2px;
    z-index: -1;
}

.about-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 auto 1.5rem;
    max-width: 480px;
}

@media (min-width: 992px) {
    .about-content-col .about-desc {
        margin-left: 0;
        margin-right: 0;
    }
}

.btn-about {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    background: #e6007e;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(230, 0, 126, .35);
    transition: background .2s, transform .1s, box-shadow .2s;
}

.btn-about:hover {
    background: #c9006e;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(230, 0, 126, .4);
}

/* ==========================================================================
   Contact section (two-column: form left, contact info right)
   ========================================================================== */
.contact-section {
    padding-bottom: 5rem;
    max-width: 100%;
    background: linear-gradient(to right, #f0fdf4 0%, #ecfdf5 25%, #f0f9ff 60%, #e0e7ff 85%, #ede9fe 100%);
}

.contact-section .section-head {
    text-align: left;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

.contact-form-col .contact-head {
    margin-bottom: 1.5rem;
}

.contact-form-col .section-overline {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-form-col .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 0.75rem;
}

.contact-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0 0 1.5rem;
    max-width: 520px;
}

.contact-section .form-wrap {
    max-width: none;
    margin: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 480px) {
    .contact-form .form-row {
        grid-template-columns: 1.2fr 1fr;
    }
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 1rem;
    background: #f8f8f8;
    color: var(--text);
    transition: background .2s, box-shadow .2s;
}

.contact-form textarea {
    border-radius: 1.5rem;
    min-height: 140px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: #f1f5f9;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .06);
}

.contact-form .form-error {
    font-size: 0.8125rem;
    color: #dc2626;
    margin-top: 0.35rem;
}

.btn-contact {
    margin-top: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: #FF006E;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 14px rgba(255, 0, 110, .35);
    transition: background .2s, transform .1s, box-shadow .2s;
}

.btn-contact:hover {
    background: #e60063;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 0, 110, .4);
}

/* Right column: contact info + faded CONTACT background */
.contact-info-col {
    position: relative;
    padding: 2rem 0;
}

.contact-bg-text {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 800;
    color: rgba(0, 0, 0, .04);
    line-height: 1;
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
}

.contact-info-block {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
}

.contact-info-block:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-info-icon svg,
.contact-info-icon .bi {
    width: 24px;
    height: 24px;
    font-size: 24px;
}

.contact-info-icon--email {
    background: #00BFFF;
}

.contact-info-icon--address {
    background: #FF0040;
}

.contact-info-icon--phone {
    background: #FFD700;
    color: #1e293b;
}

.contact-info-icon--phone svg {
    stroke: #1e293b;
}

.contact-info-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.contact-info-content p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text);
}

.contact-info-content a {
    color: #4682B4;
    text-decoration: none;
}

.contact-info-content a:hover {
    text-decoration: underline;
}

/* Shared form messages (success/error) */
.form-msg {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.form-msg.success {
    background: #dcfce7;
    color: #166534;
}

.form-msg.error {
    background: #fee2e2;
    color: #991b1b;
}

.form-error {
    font-size: 0.875rem;
    color: #dc2626;
    margin-top: 0.25rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    padding: 2.5rem 1.5rem;
    text-align: center;
    font-size: 0.9375rem;
}

.footer a {
    color: var(--accent);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}
