/* ============================================
   Serenova Spa & Wellness — Premium Frontend CSS
   Palette: Mauve #9D7E8A · Dark #7D5F6B
   Accent: Warm Beige #D4C5B9 · BG: Cream #FAF8F5
   Fonts: Cormorant Garamond + Inter
   ============================================ */

/* -----------------------------------------------
   1. CUSTOM PROPERTIES
   ----------------------------------------------- */

:root {
    --primary: #9D7E8A;
    --primary-rgb: 157, 126, 138;
    --primary-dark: #7D5F6B;
    --primary-darker: #5E4350;
    --primary-light: rgba(157, 126, 138, 0.1);
    --primary-mid: rgba(157, 126, 138, 0.2);
    --accent: #D4C5B9;
    --accent-rgb: 212, 197, 185;
    --accent-dark: #B5A294;
    --accent-light: rgba(212, 197, 185, 0.15);
    --gold: #C8A96E;
    --gold-light: rgba(200, 169, 110, 0.12);
    --bg: #FAF8F5;
    --bg-alt: #F3EFE9;
    --bg-elevated: #FFFFFF;
    --text: #2D2428;
    --text-muted: #6B5B62;
    --text-light: #9A8D92;
    --white: #FFFFFF;
    --black: #1A1316;
    --border: #E5DDD3;
    --border-light: #F0EBE4;
    --success: #6B8F71;
    --error: #C46B6B;
    --warning: #C4A46B;
    --info: #6B8FC4;
    --overlay: rgba(45, 36, 40, 0.7);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --header-height: 80px;
    --container-width: 1240px;
    --section-padding: 100px;
    --gap: 32px;
    --shadow-sm: 0 2px 8px rgba(45, 36, 40, 0.05);
    --shadow-md: 0 4px 24px rgba(45, 36, 40, 0.08);
    --shadow-lg: 0 12px 48px rgba(45, 36, 40, 0.12);
    --shadow-xl: 0 20px 60px rgba(45, 36, 40, 0.16);
    --transition: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* -----------------------------------------------
   2. DARK THEME
   ----------------------------------------------- */

[data-theme="dark"] {
    --primary: #B99DA8;
    --primary-dark: #9D7E8A;
    --primary-darker: #7D5F6B;
    --primary-light: rgba(185, 157, 168, 0.12);
    --primary-mid: rgba(185, 157, 168, 0.22);
    --accent: #8A7D72;
    --accent-dark: #6B6058;
    --accent-light: rgba(138, 125, 114, 0.15);
    --gold: #D4B87A;
    --gold-light: rgba(212, 184, 122, 0.12);
    --bg: #1A1316;
    --bg-alt: #241D20;
    --bg-elevated: #2D2428;
    --text: #F0EBE4;
    --text-muted: #C4B9BE;
    --text-light: #8A7D82;
    --white: #2D2428;
    --black: #FAF8F5;
    --border: #3A2F33;
    --border-light: #2D2428;
    --overlay: rgba(26, 19, 22, 0.9);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.35);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.45);
}

[data-theme="dark"] .hero { background: #110D0F; }
[data-theme="dark"] .hero-overlay { background: rgba(17, 13, 15, 0.8); }
[data-theme="dark"] .page-hero { background: #110D0F; }
[data-theme="dark"] .stats-section { background: #110D0F; }
[data-theme="dark"] .cta-section { background: linear-gradient(135deg, #241D20 0%, #1A1316 100%); }
[data-theme="dark"] .site-footer { background: #0D0A0B; }
[data-theme="dark"] .service-card { border-color: var(--border); }
[data-theme="dark"] .pricing-card { border-color: var(--border); }
[data-theme="dark"] .pricing-card.is-popular { border-color: var(--primary); }
[data-theme="dark"] .testimonial-card { border-color: var(--border); }
[data-theme="dark"] .team-photo { background: var(--bg-alt); }
[data-theme="dark"] .gallery-item { background: var(--bg-alt); }
[data-theme="dark"] .alert-success { background: #1A2E1D; color: #6EE7A0; }
[data-theme="dark"] .alert-error,
[data-theme="dark"] .alert-danger { background: #2D1515; color: #FCA5A5; }
[data-theme="dark"] .alert-warning { background: #2D2215; color: #FCD34D; }
[data-theme="dark"] .alert-info { background: #152030; color: #93C5FD; }

/* -----------------------------------------------
   3. RESET & BASE
   ----------------------------------------------- */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; cursor: pointer; background: none; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }

::selection { background: rgba(var(--primary-rgb), 0.2); color: var(--text); }

/* -----------------------------------------------
   4. LAYOUT
   ----------------------------------------------- */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section--alt { background: var(--bg-alt); }

/* -----------------------------------------------
   5. TYPOGRAPHY
   ----------------------------------------------- */

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    padding: 0 48px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 32px;
    height: 1px;
    background: var(--primary);
    opacity: 0.4;
}

.section-subtitle::before { left: 0; }
.section-subtitle::after { right: 0; }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-title em {
    font-style: italic;
    color: var(--primary);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* -----------------------------------------------
   6. BUTTONS
   ----------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn--white {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
}

.btn--white:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 40px;
    font-size: 0.88rem;
}

.btn--sm { padding: 10px 20px; font-size: 0.8rem; }

.btn--full { width: 100%; text-align: center; justify-content: center; }

.btn--gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.btn--gold:hover {
    background: #B8953D;
    border-color: #B8953D;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 110, 0.3);
}

/* -----------------------------------------------
   7. HEADER & NAVIGATION
   ----------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: transparent;
    transition: all 0.4s;
}

.header-scrolled {
    background: var(--bg-elevated);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

[data-theme="dark"] .header-scrolled {
    background: rgba(26, 19, 22, 0.95);
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.logo svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
    transition: color 0.3s;
}

.hero .logo svg,
.site-header:not(.header-scrolled) .logo svg { color: #fff; }

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    transition: color 0.3s;
}

.logo-text small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: -2px;
    transition: color 0.3s;
}

.site-header:not(.header-scrolled) .logo-text,
.site-header:not(.header-scrolled) .logo-text small { color: #fff; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.3s;
    position: relative;
}

.site-header:not(.header-scrolled) .nav-link { color: rgba(255,255,255,0.8); }
.site-header:not(.header-scrolled) .nav-link:hover,
.site-header:not(.header-scrolled) .nav-link.active { color: #fff; }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-out);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); font-weight: 600; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.site-header:not(.header-scrolled) .theme-toggle {
    border-color: rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
}

.theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Theme toggle icon visibility */
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: flex; }

[data-theme="dark"] .theme-toggle .icon-sun { display: flex; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.header-cta {
    font-size: 0.8rem;
    padding: 10px 24px;
}

.site-header:not(.header-scrolled) .header-cta {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    backdrop-filter: blur(8px);
}

.site-header:not(.header-scrolled) .header-cta:hover {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
    margin: 0 auto;
}

.site-header:not(.header-scrolled) .hamburger span { background: #fff; }

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--bg-elevated);
    z-index: 999;
    padding: calc(var(--header-height) + 32px) 32px 32px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
}

.mobile-menu.active { display: flex; }

.mobile-menu .nav-link {
    font-size: 1.2rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
}

.mobile-menu .btn {
    margin-top: 16px;
}

/* -----------------------------------------------
   8. HERO
   ----------------------------------------------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--primary-darker);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(45, 36, 40, 0.4) 0%, rgba(45, 36, 40, 0.7) 100%);
}

/* Decorative pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 720px;
    padding: 0 32px;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    padding: 8px 24px;
    border: 1px solid rgba(212, 197, 185, 0.3);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: rgba(255,255,255,0.5);
    animation: scrollBounce 2s infinite;
}

.hero-scroll .material-icons-outlined { font-size: 32px; }

/* Hero floating shapes */
.hero-shape {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    opacity: 0.06;
}

.hero-shape-1 {
    top: 15%;
    left: 8%;
    width: 120px;
    height: 120px;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: floatShape1 8s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    animation: floatShape2 10s ease-in-out infinite;
}

.hero-shape-3 {
    top: 30%;
    right: 15%;
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    animation: floatShape3 6s ease-in-out infinite;
}

.hero-shape-4 {
    bottom: 35%;
    left: 12%;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    transform: rotate(45deg);
    animation: floatShape1 12s ease-in-out infinite reverse;
}

/* -----------------------------------------------
   9. PAGE HERO (Inner pages)
   ----------------------------------------------- */

.page-hero {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
    padding: calc(var(--header-height) + 48px) 0 56px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

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

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.page-hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.breadcrumb a:hover { color: #fff; }
.breadcrumb .separator { opacity: 0.4; }

/* -----------------------------------------------
   10. SERVICE CARDS
   ----------------------------------------------- */

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

.service-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s var(--ease-out);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

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

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
}

.service-icon .material-icons-outlined { font-size: 28px; }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text);
}

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

.service-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.3s;
}

.service-link:hover { gap: 10px; }

/* Service features inline (card badges) */
.service-card .service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.service-card .service-features span {
    font-size: 0.72rem;
    font-weight: 500;
    padding: 3px 10px;
    background: var(--primary-light);
    color: var(--primary);
}

/* -----------------------------------------------
   11. SERVICE DETAIL
   ----------------------------------------------- */

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

.service-detail-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-alt);
    margin-bottom: 32px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info-box {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--primary-light);
    margin-bottom: 32px;
}

.service-info-box .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-info-box .info-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

.service-info-box .info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.service-features-list {
    list-style: none;
    margin: 24px 0;
}

.service-features-list li {
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    font-size: 0.95rem;
    color: var(--text);
}

.service-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* Sidebar */
.service-detail-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-services {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: 28px;
}

.sidebar-services h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.sidebar-services a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.sidebar-services a:last-child { border-bottom: none; }
.sidebar-services a:hover,
.sidebar-services a.active { color: var(--primary); font-weight: 600; }

.sidebar-cta {
    background: var(--primary);
    padding: 32px 28px;
    color: #fff;
}

.sidebar-cta h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
}

.sidebar-cta p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.sidebar-cta .btn {
    width: 100%;
    justify-content: center;
}

/* -----------------------------------------------
   12. PRICING
   ----------------------------------------------- */

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

.pricing-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    padding: 44px 36px;
    text-align: center;
    position: relative;
    transition: all 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
}

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

.pricing-card.is-popular {
    border-color: var(--primary);
    border-width: 2px;
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.pricing-card.is-popular:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    margin-top: 8px;
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

.pricing-price {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.pricing-currency {
    font-size: 1.2rem;
    vertical-align: super;
    margin-right: 2px;
    color: var(--text-muted);
}

.pricing-duration {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    padding: 8px 0 8px 28px;
    font-size: 0.88rem;
    color: var(--text);
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card .btn { width: 100%; }

/* -----------------------------------------------
   13. TEAM
   ----------------------------------------------- */

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

.team-card {
    text-align: center;
    transition: all 0.4s var(--ease-out);
}

.team-card:hover { transform: translateY(-6px); }

.team-photo {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-alt);
    margin-bottom: 20px;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.5s var(--ease-out);
}

.team-card:hover .team-photo img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}

.team-card:hover .team-social { transform: translateY(0); }

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    color: #fff;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary);
    color: #fff;
}

.team-info h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.team-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Team photo placeholder */
.team-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    color: var(--primary);
    font-size: 3rem;
    font-family: var(--font-display);
    font-weight: 600;
}

/* -----------------------------------------------
   14. GALLERY
   ----------------------------------------------- */

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-alt);
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--primary-rgb), 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-overlay .icon { font-size: 28px; }

/* Gallery filter */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* -----------------------------------------------
   15. TESTIMONIALS
   ----------------------------------------------- */

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

.testimonial-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    padding: 40px 32px;
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

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

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
    color: var(--primary-light);
    margin-bottom: -8px;
}

[data-theme="dark"] .testimonial-quote { color: rgba(var(--primary-rgb), 0.2); }

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: var(--gold);
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* -----------------------------------------------
   16. SITE FOOTER BASE
   ----------------------------------------------- */

.site-footer {
    background: var(--black);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-text {
    color: #fff;
}

/* -----------------------------------------------
   17. MOBILE MENU / NAV OVERLAY
   ----------------------------------------------- */

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 100;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.main-nav.open a {
    font-size: 1.25rem;
    padding: 16px 32px;
    font-family: var(--font-display);
}

[data-theme="dark"] .main-nav.open {
    background: var(--bg);
}

/* -----------------------------------------------
   18. PAGE HERO ENHANCEMENT
   ----------------------------------------------- */

.page-hero {
    background: linear-gradient(135deg, var(--primary-darker), var(--primary-dark));
    padding: calc(var(--header-height) + 60px) 0 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    margin-bottom: 16px;
    position: relative;
}

.page-hero-breadcrumb {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0.7;
    position: relative;
}

.page-hero-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.page-hero-breadcrumb a:hover {
    color: #fff;
}

.page-hero-breadcrumb .separator {
    opacity: 0.4;
}

/* -----------------------------------------------
   19. GALLERY ENHANCEMENT
   ----------------------------------------------- */

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(var(--primary-rgb), 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

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

.gallery-overlay .icon {
    font-size: 28px;
}

.gallery-overlay span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* -----------------------------------------------
   20. PRICING SECTION ENHANCEMENT
   ----------------------------------------------- */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
}

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

.pricing-card.is-popular {
    border-color: var(--primary);
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.pricing-card.is-popular:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--primary);
    color: #fff;
    padding: 6px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pricing-price {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
}

.pricing-currency {
    font-size: 1.25rem;
    vertical-align: super;
    margin-right: 4px;
    color: var(--primary);
}

.pricing-duration {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
    flex: 1;
}

.pricing-features li {
    padding: 10px 0 10px 28px;
    font-size: 0.875rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.pricing-features li:last-child {
    border-bottom: 0;
}

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

/* -----------------------------------------------
   21. ARTICLE / RICH CONTENT
   ----------------------------------------------- */

.article-content {
    max-width: 800px;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text);
}

.article-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin: 48px 0 16px;
    color: var(--text);
}

.article-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 36px 0 12px;
    color: var(--text);
}

.article-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.article-content img { margin: 32px 0; width: 100%; }

.article-content blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    border-left: 3px solid var(--primary);
    background: var(--primary-light);
    font-style: italic;
    color: var(--text);
}

.article-content ul,
.article-content ol {
    margin: 16px 0 24px 24px;
    color: var(--text-muted);
}

.article-content ul { list-style: none; }

.article-content ul li {
    padding: 4px 0 4px 20px;
    position: relative;
}

.article-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.article-content ol { list-style: decimal; }
.article-content ol li { padding: 4px 0; }

.article-content a {
    color: var(--primary);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.3);
    transition: border-color 0.2s;
}

.article-content a:hover { border-color: var(--primary); }

/* -----------------------------------------------
   22. ALERTS / FLASH MESSAGES
   ----------------------------------------------- */

.alert {
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
    border-left: 4px solid transparent;
}

.alert-success { background: #F0FFF4; color: #276749; border-color: var(--success); }
.alert-error,
.alert-danger { background: #FFF5F5; color: #9B2C2C; border-color: var(--error); }
.alert-warning { background: #FFFFF0; color: #975A16; border-color: var(--warning); }
.alert-info { background: #EBF8FF; color: #2B6CB0; border-color: var(--info); }

/* -----------------------------------------------
   23. SECTION DIVIDERS
   ----------------------------------------------- */

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-divider-accent {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.2;
}

/* -----------------------------------------------
   24. KEYFRAME ANIMATIONS
   ----------------------------------------------- */

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

@keyframes floatShape1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

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

@keyframes floatShape3 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes gradient-x {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* -----------------------------------------------
   25. SCROLL ANIMATIONS
   ----------------------------------------------- */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays */
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }
.fade-in:nth-child(6) { transition-delay: 0.4s; }

/* -----------------------------------------------
   26. UTILITY
   ----------------------------------------------- */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

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

/* -----------------------------------------------
   27. HERO SHAPES & PATTERN
   ----------------------------------------------- */

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 1;
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border: 1.5px solid rgba(255,255,255,0.08);
}

.hero-shape--1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    animation: floatShape1 8s ease-in-out infinite;
}

.hero-shape--2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 12%;
    border-radius: 50%;
    animation: floatShape2 10s ease-in-out infinite;
}

.hero-shape--3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 15%;
    transform: rotate(45deg);
    animation: floatShape3 12s ease-in-out infinite;
}

.hero-shape--4 {
    width: 100px;
    height: 100px;
    top: 25%;
    right: 6%;
    border-radius: 50%;
    border-style: dashed;
    animation: floatShape1 14s ease-in-out infinite reverse;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.5);
    animation: pulse 2s ease-in-out infinite;
}

.hero-scroll .material-icons-outlined {
    font-size: 32px;
}

/* -----------------------------------------------
   28. SECTION DIVIDER
   ----------------------------------------------- */

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}

.section-divider span {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--primary);
    opacity: 0.25;
    position: relative;
}

.section-divider span::before,
.section-divider span::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    opacity: 0.4;
}

.section-divider span::before {
    left: -14px;
}

.section-divider span::after {
    right: -14px;
}

/* -----------------------------------------------
   29. TIMELINE (Hakkimizda)
   ----------------------------------------------- */

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    z-index: 1;
}

.timeline-content {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    padding: 24px 28px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 22px;
    width: 10px;
    height: 10px;
    background: var(--bg-elevated);
    border-left: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    transform: rotate(45deg);
}

.timeline-content h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* -----------------------------------------------
   30. SERVICE CARD WITH IMAGE (Detail variant)
   ----------------------------------------------- */

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

.service-card--detailed {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.service-card--detailed:hover .service-card-image img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body .service-icon {
    margin-bottom: 12px;
}

.service-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--text);
    margin-bottom: 10px;
}

.service-card-body p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-features-mini {
    margin-top: auto;
    margin-bottom: 16px;
}

.service-features-mini .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* -----------------------------------------------
   31. WHY-US SECTION (Hizmet Detay)
   ----------------------------------------------- */

.why-us-section {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.why-us-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 28px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.why-us-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.why-us-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.why-us-item .material-icons-outlined {
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-us-item h5 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 4px;
}

.why-us-item p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* -----------------------------------------------
   32. CONTENT BODY (Rich Text)
   ----------------------------------------------- */

.content-body {
    margin-bottom: 32px;
}

.content-body h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text);
    margin: 32px 0 16px;
}

.content-body h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--text);
    margin: 28px 0 12px;
}

.content-body p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.content-body ul,
.content-body ol {
    padding-left: 20px;
    margin-bottom: 18px;
}

.content-body li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 8px;
}

.content-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--accent-light);
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text);
    font-style: italic;
}

.content-body img {
    max-width: 100%;
    height: auto;
}

/* -----------------------------------------------
   33. SERVICE DETAIL ENHANCEMENT
   ----------------------------------------------- */

.service-image {
    margin-bottom: 28px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

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

.service-detail-info {
    display: flex;
    gap: 0;
    margin-bottom: 28px;
    border: 1px solid var(--border-light);
}

.service-detail-info .info-item {
    flex: 1;
    padding: 16px 20px;
    text-align: center;
}

.service-detail-info .info-item + .info-item {
    border-left: 1px solid var(--border-light);
}

.service-detail-info .info-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 4px;
}

.service-detail-info .info-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
}

/* Service features detail (list with h3 + ul) */
.service-features {
    display: block;
    margin-top: 32px;
    padding: 28px;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
}

.service-features h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 20px;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 10px 0 10px 28px;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.service-features li:last-child {
    border-bottom: 0;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    opacity: 0.6;
}

/* -----------------------------------------------
   34. SIDEBAR ENHANCEMENTS
   ----------------------------------------------- */

.sidebar-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
    overflow: hidden;
}

.sidebar-card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-light);
}

.service-list {
    display: flex;
    flex-direction: column;
}

.service-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
}

.service-list a:last-child {
    border-bottom: 0;
}

.service-list a:hover,
.service-list a.active {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 28px;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 28px 24px;
    text-align: center;
}

.sidebar-cta h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.sidebar-cta p {
    font-size: 0.85rem;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* -----------------------------------------------
   35. SERVICE DETAIL GRID
   ----------------------------------------------- */

.service-detail {
    padding: var(--section-padding) 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.service-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

/* -----------------------------------------------
   36. FLOATING METRIC CARDS
   ----------------------------------------------- */

.hero-metrics {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero-metric {
    position: absolute;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    padding: 14px 20px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    pointer-events: auto;
}

.hero-metric--1 {
    bottom: 30%;
    right: 10%;
    animation: floatShape2 6s ease-in-out infinite;
}

.hero-metric--2 {
    top: 35%;
    left: 5%;
    animation: floatShape1 8s ease-in-out infinite;
}

.hero-metric .metric-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-metric .metric-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

/* -----------------------------------------------
   37. ABOUT SECTION ENHANCEMENTS
   ----------------------------------------------- */

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

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-image-accent {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary);
    opacity: 0.15;
    z-index: -1;
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

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

.value-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--bg-alt);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    flex-shrink: 0;
}

.value-item h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 2px;
}

.value-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* -----------------------------------------------
   38. CONTACT SECTION ENHANCEMENTS
   ----------------------------------------------- */

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

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text);
    margin-bottom: 12px;
}

.contact-info > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.contact-item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--text);
    margin-bottom: 24px;
}

/* -----------------------------------------------
   39. FORM ELEMENTS ENHANCEMENT
   ----------------------------------------------- */

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

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

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

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B5B62' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 20px 0 24px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary);
    text-decoration: underline;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* -----------------------------------------------
   40. FOOTER GRID ENHANCEMENT
   ----------------------------------------------- */

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 12px;
    color: #fff;
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    color: #fff;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
    opacity: 0.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.875rem;
}

.footer-contact-item .icon {
    font-size: 18px;
    opacity: 0.6;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--primary);
}

.footer-contact-item span:not(.icon) {
    color: rgba(255,255,255,0.7);
}

.footer-contact-item a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
}

.footer-copyright {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

#fcreds {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    opacity: 0.7;
    margin: 0;
}

#fcreds:empty::after {
    content: "Powered by ALFA Dizayn";
}

#fcreds a {
    color: rgba(255,255,255,0.5) !important;
    text-decoration: none !important;
    transition: var(--transition);
}

#fcreds a:hover {
    color: #fff !important;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* -----------------------------------------------
   41. FOOTER CTA ENHANCEMENT
   ----------------------------------------------- */

.footer-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.footer-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 12px;
    position: relative;
}

.footer-cta p {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 540px;
    margin: 0 auto 28px;
    line-height: 1.7;
    position: relative;
}

/* -----------------------------------------------
   42. CTA SECTION ENHANCEMENT
   ----------------------------------------------- */

.cta-section {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
    padding: var(--section-padding) 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    font-size: 1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* -----------------------------------------------
   43. STATS SECTION ENHANCEMENT
   ----------------------------------------------- */

.stats-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-darker));
    padding: 72px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
    position: relative;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
}

/* -----------------------------------------------
   44. DARK THEME ADDITIONAL OVERRIDES
   ----------------------------------------------- */

[data-theme="dark"] .timeline::before {
    background: var(--border);
}

[data-theme="dark"] .timeline-content {
    background: var(--bg-elevated);
    border-color: var(--border);
}

[data-theme="dark"] .timeline-content::before {
    background: var(--bg-elevated);
    border-color: var(--border);
}

[data-theme="dark"] .why-us-item {
    background: var(--bg-elevated);
    border-color: var(--border);
}

[data-theme="dark"] .service-card--detailed {
    border-color: var(--border);
}

[data-theme="dark"] .sidebar-card {
    background: var(--bg-elevated);
    border-color: var(--border);
}

[data-theme="dark"] .service-features {
    background: var(--bg-elevated);
    border-color: var(--border);
}

[data-theme="dark"] .service-detail-info {
    border-color: var(--border);
}

[data-theme="dark"] .service-detail-info .info-item + .info-item {
    border-color: var(--border);
}

[data-theme="dark"] .value-item {
    background: var(--bg-elevated);
    border-color: var(--border);
}

[data-theme="dark"] .section-divider span {
    background: var(--primary);
}

[data-theme="dark"] .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C4B9BE' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

[data-theme="dark"] .footer-cta { background: linear-gradient(135deg, #241D20, #1A1316); }
[data-theme="dark"] .footer-col h4::after { opacity: 0.4; }

/* -----------------------------------------------
   45. RESPONSIVE — 1024px
   ----------------------------------------------- */

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid--detail { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.is-popular { transform: none; }
    .pricing-card.is-popular:hover { transform: translateY(-6px); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .service-detail-grid { grid-template-columns: 1fr 280px; gap: 40px; }
    .contact-grid { gap: 40px; }
    .timeline-item { padding-left: 72px; }
}

/* -----------------------------------------------
   28. RESPONSIVE — 768px
   ----------------------------------------------- */

@media (max-width: 768px) {
    :root { --header-height: 64px; --section-padding: 72px; }
    .container { padding: 0 20px; }

    .main-nav,
    .header-cta { display: none; }
    .mobile-toggle { display: flex; }

    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-shape { display: none; }
    .hero-pattern { display: none; }

    .services-grid,
    .services-grid--detail,
    .testimonials-grid,
    .pricing-grid { grid-template-columns: 1fr; }

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

    .about-grid { grid-template-columns: 1fr; }
    .about-image { max-height: 400px; }
    .about-image-accent { display: none; }

    .contact-grid { grid-template-columns: 1fr; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

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

    .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }

    .timeline::before { left: 24px; }
    .timeline-item { padding-left: 60px; }
    .timeline-year { width: 48px; height: 48px; font-size: 0.85rem; }

    .why-us-item { flex-direction: column; gap: 10px; }
}

/* -----------------------------------------------
   29. RESPONSIVE — 480px
   ----------------------------------------------- */

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    :root { --section-padding: 56px; }

    .team-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .about-values { grid-template-columns: 1fr; }

    .pricing-card { padding: 32px 24px; }
    .service-card { padding: 28px 20px; }
    .service-card-body { padding: 20px; }
    .testimonial-card { padding: 28px 20px; }
    .contact-info { padding: 28px 20px; }

    .hero-subtitle { font-size: 0.6rem; letter-spacing: 0.2em; }
    .hero-desc { font-size: 0.95rem; }

    .cta-section { padding: 60px 0; }
    .footer-cta { padding: 60px 0; }

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

    .timeline::before { left: 16px; }
    .timeline-item { padding-left: 48px; padding-bottom: 32px; }
    .timeline-year { width: 36px; height: 36px; font-size: 0.75rem; }
    .timeline-content { padding: 18px 20px; }

    .sidebar-cta { padding: 20px 16px; }
    .service-features { padding: 20px; }
}
