/* ===============================================
   GÖK ÇOCUK FİZYOTERAPİ — Design System
   =============================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
    --clr-primary: #8d6f86;
    --clr-primary-dark: #7a5d73;
    --clr-primary-light: #ccaca5;
    --clr-accent: #a87c83;
    --clr-accent-light: #d3b8b4;
    --clr-dark: #3d2e3a;
    --clr-dark-soft: #5a4456;
    --clr-text: #4a3a47;
    --clr-text-light: #8a7585;
    --clr-bg: #f9f6f3;
    --clr-white: #FFFFFF;
    --clr-card: rgba(255, 255, 255, 0.82);
    --clr-glass: rgba(255, 255, 255, 0.30);
    --clr-overlay: rgba(61, 46, 58, 0.55);
    --clr-border: rgba(141, 111, 134, 0.18);

    --ff-heading: 'Outfit', sans-serif;
    --ff-body: 'Inter', sans-serif;

    --shadow-sm: 0 2px 8px rgba(61, 46, 58, 0.07);
    --shadow-md: 0 8px 32px rgba(61, 46, 58, 0.09);
    --shadow-lg: 0 16px 48px rgba(61, 46, 58, 0.13);
    --shadow-glow: 0 0 40px rgba(141, 111, 134, 0.18);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--ff-body);
    color: var(--clr-text);
    background: var(--clr-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--ff-heading);
    line-height: 1.2;
    color: var(--clr-dark);
}

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

/* Screen reader only - for hidden SEO H1 tags */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* --- Section Titles --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 3px;
    background: var(--clr-primary);
    border-radius: 4px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-dark-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--clr-text-light);
    max-width: 640px;
    line-height: 1.8;
}

/* ===============================================
   NAVBAR
   =============================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-logo img {
    height: 85px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.navbar.scrolled .nav-logo img {
    height: 75px;
    filter: none;
}

.footer .nav-logo img {
    height: 90px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-family: var(--ff-heading);
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 4px 0;
}

.navbar.scrolled .nav-links a {
    color: var(--clr-text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--clr-primary-light);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--clr-primary-dark);
}

.nav-cta {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark)) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(141, 111, 134, 0.28);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(141, 111, 134, 0.4) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.nav-hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--clr-white);
    border-radius: 4px;
    transition: var(--transition);
}

.navbar.scrolled .nav-hamburger span {
    background: var(--clr-dark);
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===============================================
   HERO
   =============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/img/kartal-cocuk-fizyoterapi-bobath-odasi.jpeg') center/cover no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(61, 46, 58, 0.70) 0%,
            rgba(90, 68, 86, 0.48) 50%,
            rgba(141, 111, 134, 0.15) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(204, 172, 165, 0.45);
    border-radius: 50%;
    animation: float-particle 8s infinite ease-in-out;
}

.hero-particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.hero-particle:nth-child(2) {
    left: 25%;
    top: 60%;
    animation-delay: 1.5s;
    width: 4px;
    height: 4px;
}

.hero-particle:nth-child(3) {
    left: 50%;
    top: 30%;
    animation-delay: 3s;
    width: 8px;
    height: 8px;
}

.hero-particle:nth-child(4) {
    left: 70%;
    top: 70%;
    animation-delay: 4.5s;
}

.hero-particle:nth-child(5) {
    left: 85%;
    top: 40%;
    animation-delay: 6s;
    width: 5px;
    height: 5px;
}

.hero-particle:nth-child(6) {
    left: 40%;
    top: 80%;
    animation-delay: 2s;
    width: 3px;
    height: 3px;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-40px) scale(1.3);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(204, 172, 165, 0.18);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(204, 172, 165, 0.38);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: var(--ff-heading);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--clr-primary-light);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero h1, .hero .visual-h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.6rem);
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: 20px;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 em, .hero .visual-h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #e8b4d0, #f2d0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 3px rgba(141, 111, 134, 0.35));
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 550px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--ff-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: white;
    box-shadow: 0 8px 25px rgba(141, 111, 134, 0.32);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(141, 111, 134, 0.45);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-values {
    display: flex;
    gap: 16px;
    margin-top: 48px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 22px;
    border-radius: 50px;
    transition: var(--transition);
}

.hero-value-item:hover {
    background: rgba(141, 111, 134, 0.15);
    border-color: rgba(141, 111, 134, 0.35);
    transform: translateY(-3px);
}

.hero-value-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hero-value-item span {
    font-family: var(--ff-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

/* ===============================================
   ABOUT SECTION
   =============================================== */
.about {
    padding: 100px 0;
    background: var(--clr-white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent 0%, var(--clr-white) 100%);
    z-index: 3;
    pointer-events: none;
    display: none;
}

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

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--clr-primary-light), var(--clr-primary));
    border-radius: var(--radius-lg);
    opacity: 0.2;
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.about-badge-text h4 {
    font-size: 1.1rem;
    color: var(--clr-dark);
}

.about-badge-text p {
    font-size: 0.8rem;
    color: var(--clr-text-light);
}

.about-content .section-tag {
    margin-bottom: 12px;
}

.about-content .section-title {
    margin-bottom: 20px;
}

.about-text {
    color: var(--clr-text);
    margin-bottom: 24px;
    line-height: 1.85;
    font-size: 0.98rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--clr-bg);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.about-feature:hover {
    background: rgba(141, 111, 134, 0.08);
    transform: translateX(4px);
}

.about-feature i {
    color: var(--clr-primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-dark-soft);
}

/* ===============================================
   SERVICES SECTION
   =============================================== */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--clr-bg) 0%, #f3ede8 100%);
}

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

.services-header .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: var(--clr-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    background: var(--clr-white);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:nth-child(1) .service-icon {
    background: rgba(141, 111, 134, 0.12);
    color: var(--clr-primary-dark);
}

.service-card:nth-child(2) .service-icon {
    background: rgba(141, 111, 134, 0.12);
    color: var(--clr-primary-dark);
}

.service-card:nth-child(3) .service-icon {
    background: rgba(141, 111, 134, 0.12);
    color: var(--clr-primary-dark);
}

.service-card:nth-child(4) .service-icon {
    background: rgba(141, 111, 134, 0.12);
    color: var(--clr-primary-dark);
}

.service-card:nth-child(5) .service-icon {
    background: rgba(141, 111, 134, 0.12);
    color: var(--clr-primary-dark);
}

.service-card:nth-child(6) .service-icon {
    background: rgba(141, 111, 134, 0.12);
    color: var(--clr-primary-dark);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card ul {
    margin-bottom: 0;
}

.service-card ul li {
    font-size: 0.82rem;
    color: var(--clr-text);
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 0.75rem;
}

/* Service card toggle — hidden on desktop */
.service-card-toggle {
    display: none;
}

/* ===============================================
   GALLERY SECTION
   =============================================== */
.gallery {
    padding: 100px 0;
    background: var(--clr-white);
}

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

.gallery-header .section-subtitle {
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 46, 58, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery-overlay span {
    color: white;
    font-family: var(--ff-heading);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ===============================================
   FAQ SECTION
   =============================================== */
.faq {
    padding: 100px 0;
    background: linear-gradient(180deg, #f3ede8 0%, var(--clr-bg) 100%);
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.faq-left .section-tag {
    margin-bottom: 12px;
}

.faq-left .section-title {
    margin-bottom: 16px;
}

.faq-left .section-subtitle {
    margin-bottom: 28px;
}

.faq-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 20px;
}

.faq-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: rgba(141, 111, 134, 0.3);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(141, 111, 134, 0.05);
}

.faq-question h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-dark-soft);
    flex: 1;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(141, 111, 134, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary-dark);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--clr-primary);
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9rem;
    color: var(--clr-text-light);
    line-height: 1.8;
}

/* ===============================================
   BLOG SECTION
   =============================================== */
.blog {
    padding: 100px 0;
    background: var(--clr-white);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.blog-header .btn {
    flex-shrink: 0;
}

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

.blog-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.blog-card-body {
    padding: 24px;
}

.blog-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(141, 111, 134, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-primary-dark);
    margin-bottom: 12px;
}

.blog-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-body p {
    font-size: 0.88rem;
    color: var(--clr-text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1px solid var(--clr-border);
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--clr-text-light);
}

.blog-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-primary-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-link:hover {
    gap: 10px;
}

/* ===============================================
   CONTACT / CTA SECTION
   =============================================== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-dark-soft) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(204, 172, 165, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

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

.contact-left .section-tag {
    color: var(--clr-primary-light);
}

.contact-left .section-tag::before {
    background: var(--clr-primary-light);
}

.contact-left .section-title {
    background: linear-gradient(135deg, var(--clr-white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-left .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(204, 172, 165, 0.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 0.95rem;
    color: var(--clr-white);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.contact-social a {
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-family: var(--ff-body);
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: white;
    transform: translateY(-3px);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===============================================
   FOOTER
   =============================================== */
.footer {
    background: linear-gradient(180deg, #2a1f28 0%, #1e161c 100%);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
    color: var(--clr-white);
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer h4 {
    font-family: var(--ff-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--clr-primary);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-item i {
    color: var(--clr-primary);
    font-size: 0.9rem;
    width: 20px;
}

.footer-contact-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Footer compact social links */
.footer-social-compact {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.footer-social-compact .social-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 14px;
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-compact .social-badge i {
    color: var(--clr-primary);
    font-size: 1.1rem;
}

.footer-social-compact .social-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-white);
    border-color: var(--clr-primary);
    transform: translateY(-2px);
}


/* ===============================================
   ANIMATIONS
   =============================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes swipePulseLeft {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.4;
    }

    50% {
        transform: translateX(-3px);
        opacity: 1;
    }
}

@keyframes swipePulseRight {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.4;
    }

    50% {
        transform: translateX(3px);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================================
   RESPONSIVE — COMPREHENSIVE MOBILE OPTIMIZATION
   =============================================== */

/* === TABLET (max-width: 1024px) === */
@media (max-width: 1024px) {
    .service-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-detail-panel {
        padding: 36px 32px;
    }

    .sdp-grid {
        grid-template-columns: 240px 1fr;
        gap: 32px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 2/1;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .faq-image {
        margin-top: 30px;
        display: block;
    }

    .faq-image img {
        height: 350px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-card:nth-child(3) {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 40px;
    }

    .hero-values {
        gap: 12px;
    }
}

/* === MOBILE (max-width: 768px) === */
@media (max-width: 768px) {

    /* -- Base & Typography -- */
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .section-tag {
        font-size: 0.72rem;
    }

    /* -- Navbar -- */
    .navbar {
        padding: 8px 0;
    }

    .navbar.scrolled {
        padding: 6px 0;
    }

    .nav-logo img {
        height: 70px !important;
    }

    .navbar.scrolled .nav-logo img {
        height: 60px !important;
    }

    .footer .nav-logo img {
        height: 70px !important;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: var(--clr-white);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 40px 32px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: var(--clr-text) !important;
        font-size: 1.1rem;
        padding: 12px 0;
        border-bottom: 1px solid var(--clr-border);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links .nav-cta {
        margin-top: 12px;
        background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark)) !important;
        color: white !important;
        text-align: center;
        padding: 14px 24px !important;
        border-radius: 12px !important;
        border-bottom: none;
    }

    .nav-hamburger {
        display: flex;
    }

    /* -- Hero Section -- */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 90px 0 40px;
    }

    .hero h1, .hero .visual-h1 {
        font-size: 1.7rem;
        line-height: 1.35;
    }

    .hero-text {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .hero-badge {
        font-size: 0.72rem;
        padding: 8px 14px;
    }

    .hero-actions {
        flex-direction: row;
        gap: 10px;
    }

    .hero-actions .btn {
        flex: 1;
        justify-content: center;
        padding: 14px 16px;
        font-size: 0.9rem;
        border-radius: 12px;
    }

    .hero-values {
        flex-direction: row;
        gap: 8px;
        margin-top: 28px;
        flex-wrap: nowrap;
    }

    .hero-value-item {
        flex: 1;
        padding: 10px 8px;
        gap: 8px;
        border-radius: 12px;
    }

    .hero-value-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
        flex-shrink: 0;
    }

    .hero-value-item span {
        font-size: 0.72rem;
        white-space: normal;
        line-height: 1.3;
    }

    /* -- About Section -- */
    .about {
        padding: 60px 0;
    }

    .about::before {
        display: block;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image img {
        height: 260px;
        border-radius: 16px;
    }

    .about-badge {
        display: none;
    }

    .about-image-accent {
        display: none;
    }

    .about-content .section-title {
        font-size: 1.4rem;
    }

    .about-text {
        font-size: 0.92rem;
        line-height: 1.75;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-feature {
        padding: 12px 14px;
        border-radius: 12px;
    }

    .about-feature span {
        font-size: 0.83rem;
    }

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

    .services-header {
        margin-bottom: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-card {
        padding: 0;
        border-radius: 14px;
        cursor: pointer;
    }

    .service-card:hover {
        transform: none;
        box-shadow: none;
    }

    .service-card::before {
        display: none;
    }

    .service-card-header {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 16px 18px;
        cursor: pointer;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .service-card-header h3 {
        flex: 1;
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 1.1rem;
        margin-bottom: 0;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-card-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(141, 111, 134, 0.1);
        color: var(--clr-primary-dark);
        padding: 0;
        margin: 0;
        flex-shrink: 0;
        align-self: center;
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .service-card.mobile-active .service-card-toggle {
        transform: rotate(180deg);
        background: var(--clr-primary);
        color: white;
    }

    .service-card-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        padding: 0 18px;
    }

    .service-card.mobile-active .service-card-body {
        max-height: 300px;
        padding: 0 18px 18px;
    }

    .service-card.mobile-active {
        border-color: rgba(141, 111, 134, 0.35);
        box-shadow: 0 4px 16px rgba(141, 111, 134, 0.12);
        border-left: 3px solid var(--clr-primary);
    }

    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 10px;
        margin-top: 4px;
    }

    .service-card ul li {
        font-size: 0.8rem;
        padding: 3px 0 3px 16px;
    }

    /* -- Gallery Section -- */
    .gallery {
        padding: 60px 0;
    }

    .gallery-header {
        margin-bottom: 28px;
    }

    .swipe-hint {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        color: var(--clr-text-light);
        font-size: 0.73rem;
        letter-spacing: 0.02em;
        margin-bottom: 12px;
        opacity: 0.75;
    }

    .swipe-hint .fa-chevron-left {
        animation: swipePulseLeft 1.5s ease-in-out infinite;
    }

    .swipe-hint .fa-chevron-right {
        animation: swipePulseRight 1.5s ease-in-out infinite;
    }

    /* Horizontal swipe carousel */
    .gallery-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        margin: 0 -20px;
        padding: 0 20px 16px;
        scrollbar-width: none;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex: 0 0 85vw;
        max-width: 400px;
        scroll-snap-align: center;
        border-radius: 16px;
        aspect-ratio: 4/3;
        overflow: hidden;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* Reset the first item's special span */
    .gallery-item:nth-child(1) {
        grid-column: unset;
        aspect-ratio: 4/3;
    }

    .gallery-overlay {
        padding: 12px;
    }

    .gallery-overlay span {
        font-size: 0.8rem;
    }


    /* -- FAQ Section -- */
    .faq {
        padding: 60px 0;
    }

    .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .faq-image {
        margin-top: 24px;
        display: block;
    }

    .faq-image img {
        height: 300px;
    }

    .faq-left .section-title {
        font-size: 1.3rem;
    }

    .faq-question {
        padding: 16px 18px;
    }

    .faq-question h4 {
        font-size: 0.88rem;
        line-height: 1.4;
    }

    .faq-toggle {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 0.85rem;
    }

    /* -- Blog Section -- */
    .blog {
        padding: 60px 0;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 28px;
    }

    .blog-header .btn {
        width: 100%;
        justify-content: center;
    }

    /* Horizontal swipe carousel */
    .blog-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 8px 4px 20px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        scrollbar-width: none;
    }

    .blog-grid::-webkit-scrollbar {
        display: none;
    }

    .blog-card {
        flex: 0 0 82vw;
        max-width: 340px;
        scroll-snap-align: start;
    }

    .blog-card:nth-child(3) {
        display: flex;
        flex-direction: column;
    }

    .blog-card-image {
        height: 170px;
    }

    .blog-card-body {
        padding: 18px;
    }

    .blog-card-body h3 {
        font-size: 1rem;
    }

    .blog-card-body p {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .blog-card-footer {
        padding: 12px 18px;
        margin-top: auto;
    }

    /* -- Contact Section -- */
    .contact {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-left .section-title {
        font-size: 1.3rem;
    }

    .contact-item-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .contact-item-text h4 {
        font-size: 0.9rem;
    }

    .contact-item-text p {
        font-size: 0.85rem;
    }

    .contact-map {
        aspect-ratio: 4/3;
        border-radius: 16px;
    }

    .contact-social {
        flex-wrap: wrap;
        gap: 10px;
    }

    .contact-social a {
        height: 40px;
        font-size: 0.8rem;
        padding: 0 14px;
    }

    /* -- Footer -- */
    .footer {
        padding: 44px 0 0;
    }

    /* Brand: centered, compact */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 28px 20px;
        padding-bottom: 28px;
    }

    /* Brand spans full width, centered */
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand p {
        font-size: 0.82rem;
        max-width: 280px;
        margin-bottom: 14px;
    }

    .footer-brand .footer-social-compact {
        justify-content: center;
    }

    .footer h4 {
        font-size: 0.88rem;
        margin-bottom: 12px;
        text-align: center;
    }

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

    .footer-links a {
        font-size: 0.82rem;
        padding: 4px 0;
        display: inline-block; /* allows hover padding to not break layout as badly, or just center block */
    }

    .footer-links a:hover {
        padding-left: 0;
        color: var(--clr-primary);
    }

    /* İletişim spans full width */
    .footer-grid>div:last-child {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .footer-grid>div:last-child h4 {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-contact-item {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        padding: 8px 16px;
        margin-bottom: 0;
    }

    .footer-contact-item span {
        font-size: 0.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 18px 0;
    }

    .footer-bottom p {
        font-size: 0.76rem;
    }


    /* -- Buttons (touch-friendly) -- */
    .btn {
        padding: 14px 28px;
        font-size: 0.92rem;
        border-radius: 14px;
        min-height: 48px;
    }

    .btn-primary {
        padding: 16px 28px;
    }

    /* -- Scroll to Top (mobile position) -- */
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

}

/* === SMALL MOBILE (max-width: 480px) === */
@media (max-width: 480px) {
    .service-nav-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .service-nav-card {
        padding: 10px 8px;
        gap: 5px;
    }

    .snc-icon {
        width: 28px;
        height: 28px;
        font-size: 0.78rem;
    }

    .service-nav-card h3 {
        font-size: 0.75rem;
        line-height: 1.25;
    }

    /* 480px'de de 2 kolon koru */
    .sdp-items-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .sdp-item {
        padding: 10px;
    }

    .sdp-item h4 {
        font-size: 0.75rem;
    }

    .sdp-item p {
        font-size: 0.72rem;
    }

    .container {
        padding: 0 16px;
    }

    .nav-logo img {
        height: 56px !important;
    }

    .navbar.scrolled .nav-logo img {
        height: 50px !important;
    }

    .footer .nav-logo img {
        height: 56px !important;
    }

    .hero h1, .hero .visual-h1 {
        font-size: 1.45rem;
    }

    .hero-text {
        font-size: 0.88rem;
    }

    .hero-value-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .hero-value-item span {
        font-size: 0.78rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .about-image img {
        height: 220px;
    }

    .gallery-item {
        flex: 0 0 90vw;
        max-width: 360px;
    }

    .team-gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .page-hero {
        padding: 90px 0 36px;
    }

    .page-hero-content h1, .page-hero-content .visual-h1 {
        font-size: 1.35rem;
    }

    .page-hero-content p {
        font-size: 0.85rem;
    }

    .approach-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .contact-map {
        aspect-ratio: 1/1;
    }

    .footer-bottom p {
        font-size: 0.72rem;
    }

    /* Mobile CTA sticky bar */
    .mobile-cta-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 12px 16px;
        display: flex;
        gap: 10px;
        z-index: 998;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    }

    .mobile-cta-bar .btn {
        flex: 1;
        justify-content: center;
        padding: 14px 16px;
        font-size: 0.88rem;
        min-height: 48px;
    }


    .scroll-top {
        bottom: 88px;
        right: 16px;
    }
}

/* Swipe hint — visible only on mobile (shown inside @media 768px block) */
/* Hidden on desktop: */
@media (min-width: 769px) {
    .swipe-hint {
        display: none;
    }
}

/* Mobile CTA bar - hidden by default, visible on small mobile */
.mobile-cta-bar {
    display: none;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(141, 111, 134, 0.3);
    z-index: 999;
}

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

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(141, 111, 134, 0.45);
}

/* ===============================================
   SUBPAGE STYLES
   =============================================== */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(61, 46, 58, 0.70) 0%, rgba(90, 68, 86, 0.48) 50%, rgba(141, 111, 134, 0.15) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1, .page-hero-content .visual-h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: 12px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.page-hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 550px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.page-hero .hero-badge {
    animation: fadeInDown 0.8s ease;
}

/* About Page */
.about-page-story {
    padding: 100px 0;
    background: var(--clr-white);
    position: relative;
}

.about-page-story::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent 0%, var(--clr-white) 100%);
    z-index: 3;
    pointer-events: none;
    display: none;
}

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

.about-page-text p {
    color: var(--clr-text);
    line-height: 1.85;
    font-size: 0.98rem;
    margin-bottom: 20px;
}

.about-page-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-page-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-page-image:hover img {
    transform: scale(1.03);
}

/* Approach Section */
.about-approach {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--clr-bg) 0%, #f3ede8 100%);
}

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

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.approach-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

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

.approach-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(141, 111, 134, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--clr-primary-dark);
    transition: var(--transition);
}

.approach-card:hover .approach-icon {
    background: var(--clr-primary);
    color: white;
}

.approach-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.approach-card p {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    line-height: 1.7;
}


.approach-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.approach-card-toggle {
    display: none;
}
/* Team Gallery */
.about-team-gallery {
    padding: 100px 0;
    background: var(--clr-white);
}

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

.team-gallery-header .section-subtitle {
    margin: 0 auto;
}

.team-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.team-gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

/* About CTA */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, #f3ede8 0%, var(--clr-bg) 100%);
}

.about-cta-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.about-cta-content p {
    color: var(--clr-text-light);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

/* ===============================================
   SERVICE EXPLORER — Tab/Panel Layout
   =============================================== */
.service-explorer {
    padding: 100px 0;
    background: var(--clr-white);
}

.service-explorer-header {
    text-align: center;
    margin-bottom: 48px;
}

/* --- Nav Grid --- */
.service-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 0;
}

.service-nav-card {
    background: var(--clr-card);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--ff-body);
}

.service-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.service-nav-card:hover {
    border-color: rgba(141, 111, 134, 0.35);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

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

.service-nav-card.active {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(141, 111, 134, 0.35);
    transform: translateY(-4px);
    color: white;
}

.service-nav-card.active::before {
    display: none;
}

.snc-num {
    font-family: var(--ff-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--clr-text-light);
    text-transform: uppercase;
}

.service-nav-card.active .snc-num {
    color: rgba(255, 255, 255, 0.65);
}

.snc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(141, 111, 134, 0.1);
    color: var(--clr-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.service-nav-card.active .snc-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-nav-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--clr-dark);
    margin: 0;
}

.service-nav-card.active h3 {
    color: white;
}

.snc-topics {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.snc-topics li {
    font-size: 0.76rem;
    color: var(--clr-text-light);
    line-height: 1.5;
}

.service-nav-card.active .snc-topics li {
    color: rgba(255, 255, 255, 0.75);
}

/* --- Detail Panel --- */
.service-detail-panel {
    margin-top: 32px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--clr-border);
    box-shadow: var(--shadow-md);
    padding: 48px;
}

.sdp-block {
    display: none;
    animation: sdpFadeIn 0.4s ease both;
}

.sdp-block.active {
    display: block;
}

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

.sdp-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.sdp-media img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

.sdp-topic-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sdp-topic-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--clr-text);
    padding: 8px 12px;
    background: var(--clr-bg);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--clr-primary);
    transition: var(--transition);
}

.sdp-topic-list li i {
    font-size: 0.65rem;
    color: var(--clr-primary);
    flex-shrink: 0;
}

.sdp-topic-list li:hover {
    background: rgba(141, 111, 134, 0.08);
}

.sdp-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sdp-title {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--clr-dark);
    line-height: 1.25;
    margin: 0;
}

.sdp-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sdp-item {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.sdp-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(141, 111, 134, 0.3);
    background: white;
}

.sdp-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-dark);
    margin-bottom: 8px;
    line-height: 1.35;
}

.sdp-item p {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    line-height: 1.7;
    margin: 0;
}

.sdp-item--wide {
    grid-column: 1 / -1;
}

/* service-detail-tag renk sınıfları (panel içinde kullanılır) */
.service-detail-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.service-detail-tag.teal {
    background: rgba(141, 111, 134, 0.1);
    color: var(--clr-primary-dark);
}

.service-detail-tag.orange {
    background: rgba(168, 124, 131, 0.1);
    color: var(--clr-accent);
}

.service-detail-tag.purple {
    background: rgba(204, 172, 165, 0.15);
    color: #9b7b88;
}

.service-detail-tag.yellow {
    background: rgba(211, 197, 176, 0.18);
    color: #8a7560;
}

.service-detail-tag.green {
    background: rgba(217, 218, 186, 0.2);
    color: #7e804a;
}

.service-detail-tag.pink {
    background: rgba(141, 111, 134, 0.12);
    color: var(--clr-primary);
}

/* ===============================================
   SSS FULL PAGE
   =============================================== */
.sss-page {
    padding: 80px 0 100px;
    background: var(--clr-white);
}

.sss-page .faq-items {
    max-width: 820px;
    margin: 0 auto;
}

.sss-page .faq-item .faq-answer {
    max-height: 0;
}

.sss-page .faq-item.active .faq-answer {
    max-height: 500px;
}

/* ===============================================
   BLOG FULL PAGE
   =============================================== */
.blog-page {
    padding: 80px 0 100px;
    background: var(--clr-white);
}

.blog-page .blog-grid {
    max-width: 1200px;
}

.blog-page .blog-card:nth-child(3) {
    display: block !important;
}

/* Blog Detail */
.blog-detail {
    padding: 40px 0 100px;
    background: var(--clr-white);
}

.blog-detail-content {
    max-width: 780px;
    margin: 0 auto;
}

.blog-detail-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--clr-dark);
}

.blog-detail-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 32px 0 12px;
    color: var(--clr-dark-soft);
}

.blog-detail-content p {
    color: var(--clr-text);
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 20px;
}

.blog-detail-content ul li {
    padding: 6px 0 6px 20px;
    position: relative;
    color: var(--clr-text);
    line-height: 1.7;
}

.blog-detail-content ul li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--clr-primary);
    font-weight: 700;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--clr-border);
}

.blog-detail-meta span {
    font-size: 0.88rem;
    color: var(--clr-text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ===============================================
   CONTACT FULL PAGE
   =============================================== */
.contact-page {
    padding: 80px 0 100px;
}

.contact-page .contact-grid {
    align-items: start;
}

.contact-form-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--clr-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--clr-dark-soft);
    margin-bottom: 8px;
    font-family: var(--ff-heading);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-family: var(--ff-body);
    font-size: 0.92rem;
    color: var(--clr-text);
    background: var(--clr-bg);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(141, 111, 134, 0.12);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* End of styles */
/* Fixed mobile specificity for subpages */
@media (max-width: 768px) {
    /* -- Page Hero (subpages) -- */
    .page-hero {
        padding: 100px 0 48px;
        min-height: auto;
    }

    .page-hero-content h1, .page-hero-content .visual-h1 {
        font-size: 1.6rem;
    }

    .page-hero-content p {
        font-size: 0.9rem;
    }

    /* -- Subpage About -- */
    .about-page-story {
        padding: 60px 0;
    }

    .about-page-story::before {
        display: block;
    }

    .about-page-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-page-image img {
        height: 250px;
    }

    .about-page-text p {
        font-size: 0.92rem;
    }

    .about-approach {
        padding: 60px 0;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .approach-card {
        padding: 28px 22px;
    }


    /* Mobile Approach Cards Accordion CSS */
    .approach-card {
        padding: 0;
        overflow: hidden;
    }

    .approach-card-header {
        padding: 16px 20px;
        cursor: pointer;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        -webkit-tap-highlight-color: transparent;
    }

    .approach-card .approach-icon {
        width: 44px;
        height: 44px;
        margin: 0;
        flex-shrink: 0;
        font-size: 1.1rem;
        border-radius: 12px;
    }

    .approach-card h3 {
        margin: 0;
        font-size: 0.95rem;
        text-align: left;
        flex: 1;
        line-height: 1.4;
    }

    .approach-card-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(141, 111, 134, 0.1);
        color: var(--clr-primary-dark);
        transition: transform 0.3s ease, background 0.3s ease;
        flex-shrink: 0;
    }

    .approach-card.mobile-active .approach-card-toggle {
        transform: rotate(180deg);
        background: var(--clr-primary);
        color: white;
    }

    .approach-card-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        padding: 0 22px;
    }

    .approach-card.mobile-active .approach-card-body {
        max-height: 300px;
        padding: 16px 22px 28px;
    }
    .about-team-gallery {
        padding: 60px 0;
    }

    .team-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-cta {
        padding: 48px 0;
    }

    .about-cta-content h2 {
        font-size: 1.3rem;
    }

    .about-cta-content .hero-actions {
        flex-direction: column;
    }

    .about-cta-content .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* -- Service Explorer -- */
    .service-explorer {
        padding: 44px 0 56px;
    }

    .service-explorer-header {
        margin-bottom: 28px;
    }

    .service-explorer-header .section-title {
        font-size: 1.5rem;
    }

    .service-explorer-header .section-subtitle {
        font-size: 0.88rem;
    }

    /* Nav kartları: 2 kolon, çok kompakt */
    .service-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .service-nav-card {
        padding: 12px 10px;
        gap: 6px;
        border-radius: var(--radius-sm);
    }

    .snc-topics {
        display: none;
    }

    .snc-num {
        font-size: 0.62rem;
        letter-spacing: 1px;
    }

    .snc-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .service-nav-card h3 {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    /* Detay paneli: minimal boşluk */
    .service-detail-panel {
        margin-top: 14px;
        padding: 20px 16px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-sm);
    }

    /* Mobilde resim ve konu listesini tamamen gizle */
    .sdp-media {
        display: none;
    }

    /* İçerik tek kolon tam genişlik */
    .sdp-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .sdp-content {
        gap: 12px;
    }

    .sdp-title {
        font-size: 1.1rem;
    }

    /* Alt konu kartları 2 kolon — daha az scroll */
    .sdp-items-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .sdp-item {
        padding: 12px;
    }

    .sdp-item h4 {
        font-size: 0.8rem;
        margin-bottom: 4px;
        line-height: 1.3;
    }

    .sdp-item p {
        font-size: 0.76rem;
        line-height: 1.55;
    }

    .sdp-item--wide {
        grid-column: 1 / -1;
    }

    /* -- SSS Full Page -- */
    .sss-page {
        padding: 48px 0 60px;
    }

    /* -- Blog Detail -- */
    .blog-detail {
        padding: 28px 0 60px;
    }

    .blog-detail-content h2 {
        font-size: 1.3rem;
        margin-top: 32px;
    }

    .blog-detail-content h3 {
        font-size: 1.05rem;
    }

    .blog-detail-content p {
        font-size: 0.92rem;
    }

    .blog-detail-meta {
        flex-wrap: wrap;
        gap: 10px;
    }

    .blog-detail-meta span {
        font-size: 0.8rem;
    }

    /* -- Contact Full Page -- */
    .contact-page {
        padding: 48px 0 60px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px;
    }
}

/* ===============================================
   UNIFIED SERVICES (Accordion / Vertical Tabs)
   =============================================== */
.unified-services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--clr-bg) 0%, #f3ede8 100%);
}

.unified-services-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.us-item {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.us-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(141, 111, 134, 0.3);
}

.us-item.active {
    background: var(--clr-white);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--clr-primary);
}

.us-header {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.us-item.active .us-header {
    background: rgba(141, 111, 134, 0.04);
}

.us-icon {
    width: 52px;
    height: 52px;
    background: rgba(141, 111, 134, 0.12);
    color: var(--clr-primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.us-item.active .us-icon {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: var(--clr-white);
    transform: scale(1.05);
}

.us-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    flex-grow: 1;
    color: var(--clr-dark);
    transition: var(--transition);
}

.us-item.active .us-header h3 {
    color: var(--clr-primary-dark);
}

.us-toggle-icon {
    font-size: 1.2rem;
    color: var(--clr-text-light);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.03);
}

.us-item.active .us-toggle-icon {
    transform: rotate(180deg);
    background: rgba(141, 111, 134, 0.1);
    color: var(--clr-primary);
}

.us-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
}

.us-item.active .us-body {
    max-height: 2000px;
    opacity: 1;
}

.us-content-grid {
    padding: 0 24px 32px 24px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
    border-top: 1px solid rgba(0,0,0,0.04);
    margin-top: 16px;
    padding-top: 24px;
}

.us-image {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.us-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.us-item:hover .us-image img {
    transform: scale(1.05);
}

.us-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    color: var(--clr-dark);
    font-family: var(--ff-heading);
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.us-badge.teal { color: #008080; border-bottom: 2px solid #008080; }
.us-badge.orange { color: #ff7f50; border-bottom: 2px solid #ff7f50; }
.us-badge.purple { color: #800080; border-bottom: 2px solid #800080; }
.us-badge.yellow { color: #b8860b; border-bottom: 2px solid #b8860b; }
.us-badge.green { color: #2e8b57; border-bottom: 2px solid #2e8b57; }
.us-badge.pink { color: #db7093; border-bottom: 2px solid #db7093; }

.us-text-content {
    color: var(--clr-text);
}

.us-intro {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--clr-primary-dark);
    margin-bottom: 24px;
    line-height: 1.6;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(141, 111, 134, 0.2);
}

.us-subitem {
    margin-bottom: 20px;
}

.us-subitem:last-child {
    margin-bottom: 0;
}

.us-subitem h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-dark);
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

.us-subitem h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--clr-primary);
    border-radius: 50%;
}

.us-subitem p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--clr-text);
}

/* Unified Services Mobile Responsive */
@media (max-width: 992px) {
    .unified-services {
        padding: 60px 0;
    }
    
    .us-content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .us-image img {
        height: 200px;
    }
    
    .us-header {
        padding: 16px;
    }
    
    .us-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin-right: 16px;
    }
    
    .us-header h3 {
        font-size: 1.1rem;
    }
    
    .us-content-grid {
        padding: 0 16px 24px 16px;
    }
}

/* ===============================================
   WHATSAPP FLOATING BUTTON & BADGE
   =============================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    color: #fff;
    background-color: #1ebe57;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 80px;
        left: 16px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

.social-badge.whatsapp-badge:hover {
    background-color: #25D366;
    border-color: #25D366;
    color: #fff;
}


/* ===============================================
   FIX REPEATING BUTTONS - HIDE MOBILE CTA BAR ON LOAD
   =============================================== */
@media (max-width: 480px) {
    .mobile-cta-bar {
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        opacity: 0;
        visibility: hidden;
        transform: translateY(100%);
    }
    .mobile-cta-bar.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* ============ PROFILE PAGES ============ */
.profile-wrapper {
    padding: 80px 0;
}
.profile-card {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    align-items: start;
}
.profile-sidebar {
    text-align: center;
}
.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    border: 4px solid var(--clr-white);
    box-shadow: var(--shadow-sm);
}
.profile-sidebar h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--clr-dark);
}
.profile-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(141, 111, 134, 0.1);
    color: var(--clr-primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}
.profile-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.profile-contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    color: var(--clr-text);
    font-weight: 500;
    transition: var(--transition);
}
.profile-contact-link:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.profile-content {
    padding-top: 10px;
}
.profile-section-title {
    font-size: 1.4rem;
    color: var(--clr-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.profile-section-title i {
    color: var(--clr-primary);
}
.profile-text {
    font-size: 1.05rem;
    color: var(--clr-text-light);
    margin-bottom: 32px;
}
.profile-text p {
    margin-bottom: 16px;
}
.profile-skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.profile-skill-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
}
.profile-skill-card:hover {
    border-color: var(--clr-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}
.profile-skill-icon {
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-bottom: 12px;
}
.profile-skill-title {
    font-weight: 600;
    color: var(--clr-dark);
    font-family: var(--ff-heading);
}
@media (max-width: 992px) {
    .profile-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .profile-image {
        width: 200px;
        height: 200px;
    }
}
