/* ========================================
   PSIKODEMY — Immersive Layered Design
   Rich textures, animated accents, depth
   ======================================== */

:root {
    --pink: #E91E63;
    --pink-dark: #C2185B;
    --pink-light: #F06292;
    --pink-pale: #FCE4EC;
    --pink-mist: rgba(233,30,99,0.06);
    --pink-glow: rgba(233,30,99,0.12);
    --mint: #4CAF50;
    --mint-dark: #388E3C;
    --mint-light: #81C784;
    --mint-pale: #E8F5E9;
    --mint-mist: rgba(76,175,80,0.06);
    --black: #111827;
    --black-light: #1F2937;
    --gray-dark: #4B5563;
    --gray: #9CA3AF;
    --gray-light: #F3F4F6;
    --gray-border: #E5E7EB;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --text-muted: #9CA3AF;
    --border: rgba(0,0,0,0.05);
    --border-strong: rgba(0,0,0,0.1);

    --sage: var(--pink); --sage-dark: var(--pink-dark); --sage-light: var(--pink-light);
    --sage-mist: var(--pink-mist); --sage-glow: var(--pink-glow);
    --warm: var(--mint); --warm-dark: var(--mint-dark); --warm-light: var(--mint-light);
    --warm-glow: var(--mint-mist);
    --cream: var(--gray-light); --cream-dark: #E5E5E5; --cream-deep: #D9D9D9;
    --sand: #D1D5DB; --charcoal: var(--black); --charcoal-light: var(--black-light);

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 10px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.04), 0 20px 50px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.05), 0 40px 80px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 40px rgba(233,30,99,0.15), 0 8px 32px rgba(233,30,99,0.12);
    --shadow-mint: 0 0 40px rgba(76,175,80,0.12), 0 8px 32px rgba(76,175,80,0.1);
    --shadow-inner: inset 0 2px 4px rgba(0,0,0,0.04);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-full: 9999px;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0, 1);
    --duration: 0.5s;
    --duration-fast: 0.3s;

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text-primary); line-height: 1.7; background: var(--off-white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: all var(--duration) var(--ease); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--pink); color: var(--white); }

/* ===== PRELOADER ===== */
#preloader { position: fixed; inset: 0; background: var(--white); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.8s var(--ease); }
#preloader.hidden { opacity: 0; pointer-events: none; }
.loader-logo { width: 120px; animation: pulse-spin 2s ease-in-out infinite; }
@keyframes pulse-spin {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.1) rotate(3deg); opacity: 0.6; }
}

.container { max-width: 1260px; margin: 0 auto; padding: 0 36px; }

/* ===== DECORATIVE PATTERNS ===== */
.pattern-dots {
    position: absolute; width: 120px; height: 120px;
    background-image: radial-gradient(var(--pink-glow) 1.5px, transparent 1.5px);
    background-size: 12px 12px; opacity: 0.5; pointer-events: none;
}
.pattern-lines {
    position: absolute; width: 80px; height: 80px;
    background: repeating-linear-gradient(45deg, var(--pink-glow), var(--pink-glow) 1px, transparent 1px, transparent 8px);
    opacity: 0.4; pointer-events: none;
}
.floating-shape {
    position: absolute; border-radius: 50%; pointer-events: none;
    animation: float-gentle 8s ease-in-out infinite;
}
@keyframes float-gentle {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}
.glow-orb {
    position: absolute; border-radius: 50%; filter: blur(60px);
    pointer-events: none; opacity: 0.4;
}

/* ===== SECTION LABELS ===== */
.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 3px; color: var(--pink); margin-bottom: 18px;
    position: relative;
}
.section-label::before {
    content: ''; width: 28px; height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--pink-light));
}
.section-label::after {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--pink); animation: label-pulse 2s ease-in-out infinite;
}
@keyframes label-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.5); opacity: 0.3; }
}
.section-label--light { color: rgba(255,255,255,0.8); }
.section-label--light::before { background: linear-gradient(90deg, rgba(255,255,255,0.5), transparent); }
.section-label--light::after { background: rgba(255,255,255,0.6); }

.section-header { text-align: center; margin-bottom: 72px; position: relative; }
.section-header h2 {
    font-family: var(--font-display); font-size: 3.2rem;
    color: var(--black); margin-bottom: 18px; font-weight: 400;
    line-height: 1.12; position: relative; display: inline-block;
}
.section-header h2::after {
    content: ''; position: absolute; bottom: -8px; left: 50%;
    transform: translateX(-50%); width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--mint));
    border-radius: 2px;
}
.section-header p {
    color: var(--text-secondary); max-width: 520px; margin: 24px auto 0;
    font-size: 1.02rem; line-height: 1.85;
}
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 34px; border-radius: var(--radius-full); font-weight: 600;
    font-size: 0.87rem; transition: all var(--duration) var(--ease);
    position: relative; overflow: hidden;
}
.btn::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: all 0.6s var(--ease); transform: translate(-50%, -50%);
}
.btn:hover::before { width: 300px; height: 300px; }
.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--white); box-shadow: 0 4px 20px rgba(233,30,99,0.25);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(233,30,99,0.3);
}
.btn-secondary {
    background: var(--white); color: var(--pink);
    border: 1.5px solid var(--pink-light);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    background: var(--pink-pale); border-color: var(--pink);
    transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-ghost {
    background: rgba(255,255,255,0.06); color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,0.2);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.25); }
.btn-nav {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--white) !important; padding: 10px 24px;
    border-radius: var(--radius-full); font-size: 0.84rem; font-weight: 600;
    box-shadow: 0 2px 12px rgba(233,30,99,0.2);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(233,30,99,0.25); color: var(--white) !important; background: linear-gradient(135deg, var(--pink-dark), var(--pink)); }

/* ===== HEADER ===== */
.top-bar {
    background: var(--black); color: rgba(255,255,255,0.6);
    font-size: 0.76rem; padding: 10px 0;
    border-bottom: 2px solid var(--pink);
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-left { display: flex; gap: 28px; align-items: center; }
.top-bar-left a, .top-bar-left span { color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 8px; font-size: 0.74rem; }
.top-bar-left a:hover { color: var(--pink-light); }
.top-bar-right { display: flex; gap: 4px; }
.top-bar-right a {
    color: rgba(255,255,255,0.4); width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-full); font-size: 0.78rem;
    transition: all var(--duration-fast) var(--ease);
}
.top-bar-right a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

#header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1010; background: var(--white); transition: all var(--duration) var(--ease-smooth); }
#header.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
#header.scrolled .top-bar { display: none; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 78px; border-top: 1px solid var(--border); }
.logo img { height: 42px; transition: all var(--duration) var(--ease); }
#header.scrolled .logo img { height: 36px; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu > li > a {
    padding: 8px 18px; font-size: 0.87rem; font-weight: 500;
    color: var(--text-primary); border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease);
}
#header.scrolled .nav-menu > li > a { color: var(--text-primary); }
#header.scrolled .nav-menu > li > a:hover { color: var(--pink); background: var(--pink-mist); }
#header.scrolled .nav-menu > li > a.btn-nav:hover { color: var(--white) !important; background: linear-gradient(135deg, var(--pink-dark), var(--pink)); }
.nav-menu > li > a:hover { color: var(--pink); background: var(--pink-mist); }
.nav-menu > li > a.btn-nav:hover { color: var(--white) !important; background: linear-gradient(135deg, var(--pink-dark), var(--pink)); }

.dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%) translateY(0);
    background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl); min-width: 560px; padding: 16px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity var(--duration) var(--ease-smooth), visibility var(--duration) var(--ease-smooth);
    border: 1px solid var(--border);
    padding-top: 24px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.dropdown::after {
    content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 18px;
    display: none;
}
.dropdown:hover::after { display: block; }
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; pointer-events: all; }
.dropdown-menu li a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; font-size: 0.82rem; color: var(--text-primary);
    border-radius: var(--radius-sm); transition: all var(--duration-fast) var(--ease);
    white-space: nowrap;
}
.dropdown-menu li a::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--pink-light); flex-shrink: 0;
    transition: all var(--duration-fast) var(--ease);
}
.dropdown-menu li a:hover { background: var(--pink-mist); color: var(--pink-dark); transform: translateX(4px); }
.dropdown-menu li a:hover::before { background: var(--pink); transform: scale(1.3); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1002; position: relative; }
.nav-toggle span { width: 22px; height: 2px; background: var(--black); transition: all var(--duration) var(--ease); border-radius: 2px; }
#header.scrolled .nav-toggle span { background: var(--black); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-toggle.active span { background: var(--black); }
.nav-backdrop {
    position: fixed; inset: 0; background: rgba(0,0,0,0.5);
    z-index: 999; opacity: 0; visibility: hidden;
    transition: all var(--duration) var(--ease);
}
.nav-backdrop.active { opacity: 1; visibility: visible; }


/* ===== HERO SECTION ===== */
#hero { position: relative; min-height: 100vh; overflow: hidden; }
.hero-slider { position: relative; width: 100%; height: 100vh; }
.hero-slide {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.2s var(--ease-smooth);
    display: flex; align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(17,24,39,0.55) 0%, rgba(17,24,39,0.3) 50%, rgba(233,30,99,0.1) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 600px; padding-top: 120px; text-align: center; }
.hero-slide .container { max-width: 600px; margin: 0; padding-left: 0; padding-right: 0; margin-left: 12%; }

/* Hero randevu widget */
#randevu-widget { position: absolute; right: 15%; top: 50%; transform: translateY(-50%); width: 640px; z-index: 30; }
@media (max-width: 1400px) { #randevu-widget { width: 560px; right: 10%; } }
@media (max-width: 1200px) { #randevu-widget { width: 480px; right: 5%; } }
@media (max-width: 1024px) { #randevu-widget { position: relative; right: auto; top: auto; transform: none; width: 100%; max-width: 520px; margin: 0 auto; padding: 0 20px 40px; } }
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-full);
    padding: 10px 22px; font-size: 0.78rem; font-weight: 600;
    color: rgba(255,255,255,0.85); margin-bottom: 28px;
    animation: badge-float 3s ease-in-out infinite;
}
.hero-badge i { color: var(--pink-light); }
@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.hero-content h1 {
    font-family: var(--font-display); font-size: 4.2rem; color: var(--white);
    line-height: 1.08; margin-bottom: 24px; font-weight: 400;
}
.hero-content h1 em {
    font-style: italic; color: var(--pink-light);
    text-shadow: 0 0 40px rgba(233,30,99,0.3);
}
.hero-content p {
    color: rgba(255,255,255,0.7); font-size: 1.08rem;
    line-height: 1.85; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Hero Trust Badges (mobile only) */
.hero-trust-badges { display: none; }
.hero-mobile-spacer { display: none; }
@media (max-width: 1024px) {
    .hero-content {
        display: flex !important; flex-direction: column; align-items: center;
        justify-content: center; height: auto;
        padding-top: 24px !important; padding-bottom: 80px;
    }
    .hero-mobile-spacer { display: block; height: 40px; }
    .hero-trust-badges {
        display: flex; flex-direction: column; gap: 8px;
        margin-bottom: 16px; align-items: center;
    }
    .hero-trust-badges span {
        display: inline-flex; align-items: center; gap: 8px;
        font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.9);
        letter-spacing: 0.2px;
    }
    .hero-trust-badges i {
        font-size: 0.8rem; color: var(--mint-light);
    }
}

.hero-mobile-btn {
    display: none; align-items: center; justify-content: center; gap: 12px;
    width: 85%; max-width: 320px; margin: 36px auto 0;
    padding: 18px 36px; border-radius: 14px; font-weight: 700;
    font-size: 1.05rem; letter-spacing: 0.3px;
    background: rgba(255,255,255,0.95); color: var(--pink);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    backdrop-filter: blur(8px);
    transition: all var(--duration) var(--ease);
    text-decoration: none;
}
.hero-mobile-btn i {
    font-size: 1.15rem;
}
.hero-mobile-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.hero-mobile-btn-secondary {
    background: rgba(255,255,255,0.15) !important;
    color: var(--white) !important;
    border: 1.5px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-top: 10px !important;
}
.hero-mobile-btn-secondary:hover {
    background: rgba(255,255,255,0.25) !important;
    border-color: rgba(255,255,255,0.6);
}
.hero-dots {
    position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; gap: 10px;
}
.hero-dots .dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.3); cursor: pointer;
    transition: all var(--duration-fast) var(--ease);
}
.hero-dots .dot.active { background: var(--pink); width: 32px; border-radius: 5px; }
.hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll span { color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; }
.scroll-line {
    width: 1px; height: 40px; background: linear-gradient(to bottom, var(--pink), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ===== TRUST RIBBON ===== */
#quick-info {
    position: relative; z-index: 20; margin-top: -60px;
    padding: 0 0 60px;
}
.info-cards {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.info-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 30px 24px;
    display: flex; align-items: center; gap: 18px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
    transition: all var(--duration) var(--ease); position: relative; overflow: hidden;
}
.info-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--mint));
    transform: scaleX(0); transform-origin: left; transition: transform 0.6s var(--ease);
}
.info-card:hover::before { transform: scaleX(1); }
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.info-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--pink-mist), var(--pink-pale));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--pink); flex-shrink: 0;
    transition: all var(--duration) var(--ease);
}
.info-card:hover .info-icon {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--white); transform: scale(1.08) rotate(-3deg);
}
.info-text h3 { font-size: 0.92rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.info-text p { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; }

/* ===== SEO INTRO ===== */
#seo-intro { padding: 60px 0; background: var(--off-white); }
.seo-intro-content {
    max-width: 900px; margin: 0 auto; text-align: center;
    padding: 48px; background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
    position: relative; overflow: hidden;
}
.seo-intro-content::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--mint), var(--pink));
    background-size: 200% 100%; animation: gradient-shift 4s ease infinite;
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.seo-intro-content h2 {
    font-family: var(--font-display); font-size: 1.8rem; color: var(--black);
    margin-bottom: 18px; font-weight: 400;
}
.seo-intro-content p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.9; }

/* ===== EXPERT SECTION ===== */
#expert {
    padding: 120px 0; position: relative; overflow: hidden;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 50%, var(--off-white) 100%);
}
#expert::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, var(--pink-glow), transparent 70%);
    pointer-events: none;
}
.expert-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.expert-image-wrapper {
    position: relative; border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.expert-image-wrapper::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(17,24,39,0.3) 100%);
    pointer-events: none;
}
.expert-image-wrapper img { width: 100%; height: 600px; object-fit: cover; }
.expert-float-card {
    position: absolute; bottom: 24px; left: 24px; z-index: 2;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    border-radius: var(--radius-md); padding: 16px 24px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-lg); animation: badge-float 4s ease-in-out infinite;
}
.expert-float-card i { color: var(--pink); font-size: 1.2rem; }
.expert-float-card span { font-weight: 700; font-size: 0.85rem; color: var(--black); }
.expert-text-col h2 {
    font-family: var(--font-display); font-size: 3rem; color: var(--black);
    line-height: 1.15; margin-bottom: 24px; font-weight: 400;
}
.expert-text-col .lead {
    color: var(--text-secondary); font-size: 1.02rem; line-height: 1.85;
    margin-bottom: 32px;
}
.expertise-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.tag {
    padding: 8px 18px; border-radius: var(--radius-full);
    background: var(--pink-mist); color: var(--pink-dark);
    font-size: 0.78rem; font-weight: 600; border: 1px solid var(--pink-glow);
    transition: all var(--duration-fast) var(--ease);
}
.tag:hover {
    background: var(--pink); color: var(--white);
    transform: translateY(-2px); box-shadow: 0 4px 16px rgba(233,30,99,0.2);
}


/* ===== ABOUT PREVIEW ===== */
#about-preview {
    padding: 120px 0; position: relative; overflow: hidden;
    background: var(--white);
}
#about-preview::before {
    content: ''; position: absolute; bottom: -80px; left: -80px;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(76,175,80,0.08), transparent 70%);
    pointer-events: none;
}
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-main {
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-xl); position: relative;
}
.about-img-main::before {
    content: ''; position: absolute; inset: -4px; border-radius: calc(var(--radius-xl) + 4px);
    background: linear-gradient(135deg, var(--pink), var(--mint));
    z-index: -1; opacity: 0.5;
}
.about-img-main img { width: 100%; height: 500px; object-fit: cover; display: block; }
.about-stat-card {
    position: absolute; bottom: -30px; right: -20px;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--white); border-radius: var(--radius-lg);
    padding: 28px 32px; box-shadow: var(--shadow-glow);
    animation: badge-float 5s ease-in-out infinite;
}
.stat-number { font-family: var(--font-display); font-size: 2.8rem; line-height: 1; }
.stat-text { font-size: 0.82rem; opacity: 0.85; margin-top: 4px; line-height: 1.4; }
.about-content h2 {
    font-family: var(--font-display); font-size: 2.8rem; color: var(--black);
    line-height: 1.15; margin-bottom: 24px; font-weight: 400;
}
.about-content h2 em { font-style: italic; color: var(--pink); }
.about-content p {
    color: var(--text-secondary); font-size: 0.95rem; line-height: 1.85;
    margin-bottom: 16px;
}
.about-checklist { margin: 28px 0 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.88rem; font-weight: 500; color: var(--text-primary);
}
.check-item i { color: var(--mint); font-size: 1rem; }

/* ===== SERVICES SECTION ===== */
#services {
    padding: 120px 0; position: relative; overflow: hidden;
    background: linear-gradient(180deg, var(--off-white) 0%, var(--gray-light) 100%);
}
#services::before {
    content: ''; position: absolute; top: 60px; right: -60px;
    width: 200px; height: 200px;
    background-image: radial-gradient(var(--pink-glow) 1.5px, transparent 1.5px);
    background-size: 14px 14px; opacity: 0.4; pointer-events: none;
}
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px;
    border: 1px solid var(--border); position: relative; overflow: hidden;
    transition: all var(--duration) var(--ease);
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--pink), var(--pink-light));
    transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.service-card::after {
    content: ''; position: absolute; bottom: -50%; right: -50%;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, var(--pink-mist), transparent 70%);
    opacity: 0; transition: opacity 0.5s var(--ease); pointer-events: none;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-icon {
    width: 64px; height: 64px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--pink-mist), var(--pink-pale));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--pink); margin-bottom: 24px;
    transition: all var(--duration) var(--ease);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--white); transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(233,30,99,0.2);
}
.service-card h3 {
    font-family: var(--font-display); font-size: 1.25rem; color: var(--black);
    margin-bottom: 12px; font-weight: 400;
}
.service-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.service-card .service-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--pink); font-weight: 600; font-size: 0.84rem;
    transition: all var(--duration-fast) var(--ease);
}
.service-card .service-link:hover { gap: 14px; }
.services-view-all { text-align: center; margin-top: 48px; }

/* ===== CTA SECTION ===== */
#cta {
    position: relative; padding: 120px 0; background-size: cover;
    background-position: center; background-attachment: fixed;
}
.cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(17,24,39,0.88) 0%, rgba(233,30,99,0.6) 100%);
}
.cta-content {
    position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto;
}
.cta-content h2 {
    font-family: var(--font-display); font-size: 2.8rem; color: var(--white);
    line-height: 1.15; margin-bottom: 20px; font-weight: 400;
}
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 40px; line-height: 1.8; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== TESTIMONIALS ===== */
#testimonials {
    padding: 120px 0; position: relative; overflow: hidden;
    background: var(--white);
}
#testimonials::before {
    content: ''; position: absolute; top: 80px; left: -40px;
    width: 160px; height: 160px;
    background: repeating-linear-gradient(45deg, var(--pink-glow), var(--pink-glow) 1px, transparent 1px, transparent 8px);
    opacity: 0.3; pointer-events: none; border-radius: var(--radius-md);
}
.testimonials-slider-wrapper { position: relative; overflow: hidden; }
.testimonials-slider {
    display: flex; gap: 24px; transition: transform 0.6s var(--ease);
    padding: 10px 0;
}
.testimonial-card {
    min-width: calc(33.333% - 16px); background: var(--white);
    border-radius: var(--radius-lg); padding: 36px 30px;
    border: 1px solid var(--border); flex-shrink: 0;
    transition: all var(--duration) var(--ease); position: relative; overflow: hidden;
}
.testimonial-card::before {
    content: '\201C'; position: absolute; top: 16px; right: 24px;
    font-family: var(--font-display); font-size: 5rem; color: var(--pink-glow);
    line-height: 1; pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--pink-glow); }
.testimonial-stars { margin-bottom: 18px; }
.testimonial-stars i { color: #FBBF24; font-size: 0.85rem; margin-right: 2px; }
.testimonial-text {
    color: var(--text-secondary); font-size: 0.9rem; line-height: 1.8;
    margin-bottom: 24px; font-style: italic;
}
.testimonial-footer { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.82rem;
}
.testimonial-name { font-weight: 700; font-size: 0.88rem; color: var(--black); display: block; }
.testimonial-service { font-size: 0.76rem; color: var(--text-muted); }
.testimonials-nav {
    display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px;
}
.testimonials-prev, .testimonials-next {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--white); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-primary); font-size: 0.9rem;
    transition: all var(--duration-fast) var(--ease); cursor: pointer;
}
.testimonials-prev:hover, .testimonials-next:hover {
    background: var(--pink); color: var(--white); border-color: var(--pink);
    transform: scale(1.08);
}
.testimonials-dots { display: flex; gap: 8px; }
.testimonials-dots .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gray); cursor: pointer;
    transition: all var(--duration-fast) var(--ease);
}
.testimonials-dots .dot.active { background: var(--pink); width: 24px; border-radius: 4px; }


/* ===== WHY US ===== */
#why-us {
    padding: 120px 0; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
}
#why-us::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(233,30,99,0.08), transparent 60%);
    pointer-events: none;
}
#why-us::after {
    content: ''; position: absolute; bottom: -80px; left: -80px;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(76,175,80,0.06), transparent 60%);
    pointer-events: none;
}
.why-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.why-header h2 {
    font-family: var(--font-display); font-size: 2.8rem; color: var(--white);
    line-height: 1.15; margin-bottom: 20px; font-weight: 400;
}
.why-header p { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.8; }
.why-header .section-label { color: var(--pink-light); }
.why-header .section-label::before { background: linear-gradient(90deg, var(--pink-light), transparent); }
.why-header .section-label::after { background: var(--pink-light); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg); padding: 36px 28px;
    transition: all var(--duration) var(--ease); position: relative; overflow: hidden;
}
.why-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
    background: linear-gradient(180deg, var(--pink), var(--mint));
    transition: height 0.5s var(--ease);
}
.why-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.why-card:hover::before { height: 100%; }
.why-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    background: rgba(233,30,99,0.1); display: flex; align-items: center;
    justify-content: center; font-size: 1.2rem; color: var(--pink-light);
    margin-bottom: 20px; transition: all var(--duration) var(--ease);
}
.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--white); transform: scale(1.08);
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; }

/* ===== CONTACT PREVIEW ===== */
#contact-preview {
    padding: 120px 0; position: relative; overflow: hidden;
    background: var(--off-white);
}
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-col h2 {
    font-family: var(--font-display); font-size: 2.8rem; color: var(--black);
    line-height: 1.15; margin-bottom: 36px; font-weight: 400;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-card {
    display: flex; align-items: center; gap: 18px;
    background: var(--white); border-radius: var(--radius-md); padding: 22px 24px;
    border: 1px solid var(--border); transition: all var(--duration) var(--ease);
}
.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); border-color: var(--pink-glow); }
.cc-icon {
    width: 48px; height: 48px; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--pink-mist), var(--pink-pale));
    display: flex; align-items: center; justify-content: center;
    color: var(--pink); font-size: 1.1rem; flex-shrink: 0;
    transition: all var(--duration) var(--ease);
}
.contact-card:hover .cc-icon {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--white);
}
.cc-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 2px; }
.cc-value { font-weight: 600; font-size: 0.9rem; color: var(--black); display: block; line-height: 1.5; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--white); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); font-size: 1rem;
    transition: all var(--duration-fast) var(--ease);
}
.social-links a:hover {
    background: var(--pink); color: var(--white); border-color: var(--pink);
    transform: translateY(-3px) scale(1.05);
}
.contact-map {
    border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow-lg); height: 100%; min-height: 420px;
    border: 4px solid var(--white);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; }

/* ===== FAQ ===== */
#faq {
    padding: 120px 0; position: relative;
    background: var(--white);
}
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-header h2 {
    font-family: var(--font-display); font-size: 2.8rem; color: var(--black);
    line-height: 1.15; margin-bottom: 20px; font-weight: 400;
}
.faq-header p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
    background: var(--off-white); border-radius: var(--radius-md);
    border: 1px solid var(--border); overflow: hidden;
    transition: all var(--duration) var(--ease);
}
.faq-list details[open] { background: var(--white); box-shadow: var(--shadow-md); border-color: var(--pink-glow); }
.faq-list summary {
    padding: 22px 28px; font-weight: 600; font-size: 0.95rem;
    color: var(--text-primary); cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between;
    transition: all var(--duration-fast) var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    font-size: 0.75rem; color: var(--pink); transition: transform var(--duration-fast) var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(180deg); }
.faq-list summary:hover { color: var(--pink); }
.faq-list details p {
    padding: 0 28px 22px; color: var(--text-secondary);
    font-size: 0.9rem; line-height: 1.8;
}

/* ===== FOOTER ===== */
#footer {
    background: var(--black); color: rgba(255,255,255,0.6); padding: 80px 0 0;
    position: relative; overflow: hidden;
}
#footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--mint), var(--pink));
    background-size: 200% 100%; animation: gradient-shift 4s ease infinite;
}
.footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo { height: 40px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 20px; color: rgba(255,255,255,0.45); }
.footer-brand .social-links a {
    background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
}
.footer-brand .social-links a:hover {
    background: var(--pink); border-color: var(--pink); color: var(--white);
}
.footer-nav h4 {
    font-size: 0.88rem; font-weight: 700; color: var(--white);
    margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer-nav h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 24px; height: 2px; background: var(--pink);
}
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a, .footer-nav ul li {
    font-size: 0.84rem; color: rgba(255,255,255,0.45);
    transition: all var(--duration-fast) var(--ease);
    display: flex; align-items: center; gap: 8px;
}
.footer-nav ul li a:hover { color: var(--pink-light); transform: translateX(4px); }
.footer-nav ul li i { font-size: 0.72rem; color: var(--pink); width: 16px; }
.footer-bottom {
    padding: 24px 0; text-align: center;
    font-size: 0.78rem; color: rgba(255,255,255,0.3);
}

/* Legacy footer classes */
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-about p { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.45); }
.footer-links h4, .footer-contact h4 {
    font-size: 0.88rem; font-weight: 700; color: var(--white); margin-bottom: 20px;
}
.footer-links ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.45); }
.footer-links ul li a:hover { color: var(--pink-light); }
.footer-contact p { font-size: 0.84rem; color: rgba(255,255,255,0.45); display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.footer-contact i { color: var(--pink); width: 16px; }


/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bottom-bar {
    display: none;
}
@media (max-width: 1024px) {
    .mobile-bottom-bar {
        display: flex; position: fixed; bottom: 0; left: 0; right: 0;
        z-index: 1000; background: var(--pink);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        padding: 0; height: 60px;
    }
    .mobile-bottom-bar a {
        flex: 1; display: flex; align-items: center; justify-content: center;
        gap: 10px; color: #fff; font-size: 0.92rem; font-weight: 700;
        text-decoration: none; letter-spacing: 0.3px;
        transition: background 0.2s;
    }
    .mobile-bottom-bar a:first-child {
        background: var(--pink);
    }
    .mobile-bottom-bar a:last-child {
        background: #25D366;
    }
    .mobile-bottom-bar a:active {
        opacity: 0.85;
    }
    .mobile-bottom-bar i {
        font-size: 1.1rem;
    }
    .whatsapp-float { display: none; }
    #back-to-top { bottom: 72px; }
    body { padding-bottom: 60px; }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,0.35);
    transition: all var(--duration) var(--ease);
    animation: wp-pulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.4);
}
@keyframes wp-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 6px 24px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ===== BACK TO TOP ===== */
#back-to-top {
    position: fixed; bottom: 100px; right: 28px; z-index: 999;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--white); border: 1px solid var(--border);
    color: var(--pink); display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; box-shadow: var(--shadow-md);
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: all var(--duration) var(--ease); cursor: pointer;
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover {
    background: var(--pink); color: var(--white); border-color: var(--pink);
    transform: translateY(-3px);
}

/* ===== INNER PAGE HERO ===== */
.page-hero {
    padding: 140px 0 60px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
}
.page-hero::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(233,30,99,0.1), transparent 60%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
    font-family: var(--font-display); font-size: 2.6rem; color: var(--white);
    margin-bottom: 12px; font-weight: 400;
}
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 560px; line-height: 1.8; }
.breadcrumb {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 24px; font-size: 0.82rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--pink-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--pink-light); }

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 60px; padding: 80px 0; }
.service-detail-content h2 {
    font-family: var(--font-display); font-size: 2rem; color: var(--black);
    margin: 40px 0 16px; font-weight: 400;
}
.service-detail-content h3 {
    font-size: 1.2rem; font-weight: 700; color: var(--black); margin: 32px 0 12px;
}
.service-detail-content p {
    color: var(--text-secondary); font-size: 0.95rem; line-height: 1.9; margin-bottom: 16px;
}
.service-detail-content ul {
    margin: 16px 0 24px 20px; list-style: disc;
}
.service-detail-content ul li {
    color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8; margin-bottom: 8px;
}
.service-detail-content .service-hero-img {
    width: 100%; height: 400px; object-fit: cover;
    border-radius: var(--radius-lg); margin-bottom: 32px;
}

/* ===== SIDEBAR ===== */
.sidebar { position: sticky; top: 120px; }
.sidebar-widget {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 28px; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.sidebar-widget h4 {
    font-size: 0.95rem; font-weight: 700; color: var(--black);
    margin-bottom: 18px; padding-bottom: 12px;
    border-bottom: 2px solid var(--pink-glow);
}
.sidebar-widget ul li { margin-bottom: 8px; }
.sidebar-widget ul li a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; font-size: 0.85rem; color: var(--text-primary);
    border-radius: var(--radius-sm); transition: all var(--duration-fast) var(--ease);
}
.sidebar-widget ul li a:hover, .sidebar-widget ul li a.active {
    background: var(--pink-mist); color: var(--pink-dark); transform: translateX(4px);
}
.sidebar-cta {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border-radius: var(--radius-lg); padding: 32px 28px; text-align: center;
    color: var(--white);
}
.sidebar-cta h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 12px; border: none; padding: 0; }
.sidebar-cta p { font-size: 0.85rem; opacity: 0.85; margin-bottom: 20px; line-height: 1.6; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

/* ===== ABOUT PAGE ===== */
.about-page-content { padding: 80px 0; }
.about-page-content h2 {
    font-family: var(--font-display); font-size: 2rem; color: var(--black);
    margin: 40px 0 16px; font-weight: 400;
}
.about-page-content p {
    color: var(--text-secondary); font-size: 0.95rem; line-height: 1.9; margin-bottom: 16px;
}
.about-page-content img {
    border-radius: var(--radius-lg); margin: 24px 0;
    box-shadow: var(--shadow-md);
}
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.about-value-card {
    background: var(--off-white); border-radius: var(--radius-lg);
    padding: 32px 24px; text-align: center; border: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
}
.about-value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-value-card i { font-size: 2rem; color: var(--pink); margin-bottom: 16px; }
.about-value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.about-value-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-page-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 80px 0; }
.contact-form {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 40px; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.contact-form h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 24px; font-weight: 400; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.82rem; font-weight: 600;
    color: var(--text-primary); margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 14px 18px; border: 1px solid var(--border);
    border-radius: var(--radius-sm); font-family: var(--font-body);
    font-size: 0.9rem; color: var(--text-primary);
    transition: all var(--duration-fast) var(--ease);
    background: var(--off-white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--pink);
    box-shadow: 0 0 0 3px var(--pink-glow); background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }


/* ===== RESPONSIVE — 1024px ===== */
@media (max-width: 1024px) {
    .hero-content { display: block; max-width: 100%; text-align: center; padding-top: 100px; padding-bottom: 40px; }
    .hero-slide .container { display: flex; align-items: center; justify-content: center; max-width: 100%; margin: 0 auto; padding: 0 20px; }
    .hero-content .hero-buttons { display: none; }
    .hero-mobile-btn { display: inline-flex !important; }
    .hero-dots { display: none; }
    .hero-scroll { display: none; }
    #hero { min-height: auto; position: relative; overflow: visible; }
    #quick-info { margin-top: 0; display: none; }
    .whatsapp-float { display: none !important; }
    .hero-slider { position: relative; height: 100vh; min-height: 600px; }
    .hero-slide { position: absolute; inset: 0; background-position: 30% center; }
    #randevu-widget { display: none; }
    .section-header h2 { font-size: 2.6rem; }
    .hero-content h1 { font-size: 3.2rem; }
    .expert-layout { grid-template-columns: 1fr; gap: 48px; }
    .expert-image-wrapper img { height: 450px; }
    .about-split { grid-template-columns: 1fr; gap: 48px; }
    .about-img-main img { height: 400px; }
    .about-stat-card { right: 20px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-layout { grid-template-columns: 1fr; gap: 48px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .contact-split { grid-template-columns: 1fr; gap: 48px; }
    .faq-layout { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .service-detail-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .contact-page-layout { grid-template-columns: 1fr; }
    .info-cards { grid-template-columns: repeat(2, 1fr); }
    .testimonial-card { min-width: calc(50% - 12px); }
}

/* ===== RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .top-bar { display: none; }
    .navbar .container { height: 64px; }
    .logo img { height: 34px; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 88%; max-width: 380px;
        height: 100vh; background: var(--white); flex-direction: column;
        padding: 0; gap: 0; z-index: 1001;
        box-shadow: -10px 0 60px rgba(0,0,0,0.15);
        transition: right var(--duration) var(--ease);
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-menu.active > li {
        animation: slideInMenuItem 0.3s ease forwards;
        opacity: 0; transform: translateX(20px);
    }
    .nav-menu.active > li:nth-child(1) { animation-delay: 0.05s; }
    .nav-menu.active > li:nth-child(2) { animation-delay: 0.1s; }
    .nav-menu.active > li:nth-child(3) { animation-delay: 0.15s; }
    .nav-menu.active > li:nth-child(4) { animation-delay: 0.2s; }
    .nav-menu.active > li:nth-child(5) { animation-delay: 0.25s; }
    .nav-menu.active > li:nth-child(6) { animation-delay: 0.3s; }
    .nav-menu.active > li:nth-child(7) { animation-delay: 0.35s; }
    .nav-menu.active > li:last-child { animation-delay: 0.4s; }
    @keyframes slideInMenuItem {
        to { opacity: 1; transform: translateX(0); }
    }
    .nav-menu::before {
        content: ''; display: block; height: 4px; flex-shrink: 0;
        background: linear-gradient(90deg, var(--pink), var(--mint), var(--pink));
        background-size: 200% 100%; animation: gradient-shift 4s ease infinite;
    }
    .nav-menu > li { border-bottom: 1px solid var(--border); }
    .nav-menu > li:last-child { border-bottom: none; }
    .nav-menu > li > a {
        color: var(--text-primary); padding: 18px 24px; font-size: 0.95rem;
        font-weight: 500; display: flex; align-items: center; justify-content: space-between;
    }
    .nav-menu > li > a:hover { background: var(--pink-mist); color: var(--pink); }
    .nav-menu > li > a i { color: var(--pink); font-size: 0.7rem; transition: transform var(--duration-fast) var(--ease); }
    .dropdown.open > a i { transform: rotate(180deg); }
    .dropdown-menu {
        position: static; transform: none; box-shadow: none;
        border: none; background: var(--gray-light); border-radius: 0;
        padding: 8px 12px; margin-top: 0; opacity: 1; visibility: visible;
        pointer-events: all; display: none; min-width: unset;
        grid-template-columns: 1fr; gap: 2px;
        max-height: 50vh; overflow-y: auto;
        scrollbar-width: thin; scrollbar-color: var(--pink-light) transparent;
    }
    .dropdown-menu::-webkit-scrollbar { width: 3px; }
    .dropdown-menu::-webkit-scrollbar-thumb { background: var(--pink-light); border-radius: 3px; }
    .dropdown-menu li a { font-size: 0.85rem; padding: 10px 16px; }
    .dropdown-menu li a::before { width: 5px; height: 5px; }
    .dropdown.active .dropdown-menu,
    .dropdown.open .dropdown-menu { display: grid; }
    .btn-nav {
        margin: 16px 24px 24px; text-align: center; justify-content: center;
        padding: 14px 24px; font-size: 0.9rem;
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        padding: 0 !important; border-bottom: none !important;
        background: var(--white);
    }
    .mmh-top {
        display: flex; align-items: center;
        padding: 20px 24px 12px;
    }
    .mmh-logo { padding: 0 !important; border: none !important; }
    .mmh-logo img { height: 36px; }
    .mmh-desc {
        padding: 0 24px; margin: 0;
        font-size: 0.8rem; line-height: 1.5; color: var(--text-secondary);
    }
    .mmh-badge {
        display: inline-flex; align-items: center; gap: 6px;
        margin: 12px 24px 18px; padding: 6px 14px;
        background: var(--white); border: 1px solid var(--mint-light);
        border-radius: 20px; font-size: 0.72rem; font-weight: 600;
        color: var(--mint-dark);
    }
    .mmh-badge i { color: var(--mint); font-size: 0.8rem; }

    /* Mobile Menu Footer */
    .mobile-menu-footer {
        margin-top: auto !important; padding: 0 !important;
        border-top: 1px solid var(--border) !important; border-bottom: none !important;
        background: var(--gray-light);
    }
    .mmf-social {
        display: flex; gap: 10px; justify-content: center;
        padding: 20px 24px 14px;
    }
    .mmf-icon {
        width: 42px; height: 42px; border-radius: 12px;
        display: flex !important; align-items: center; justify-content: center;
        font-size: 1.1rem; padding: 0 !important;
        transition: all 0.25s ease; position: relative; overflow: hidden;
    }
    .mmf-icon::before {
        content: ''; position: absolute; inset: 0;
        border-radius: 12px; opacity: 0;
        transition: opacity 0.25s ease;
    }
    .mmf-instagram {
        background: rgba(225,48,108,0.08); color: #E1306C;
    }
    .mmf-instagram:hover { background: #E1306C; color: var(--white) !important; transform: translateY(-2px); }
    .mmf-youtube {
        background: rgba(255,0,0,0.08); color: #FF0000;
    }
    .mmf-youtube:hover { background: #FF0000; color: var(--white) !important; transform: translateY(-2px); }
    .mmf-spotify {
        background: rgba(30,215,96,0.08); color: #1ED760;
    }
    .mmf-spotify:hover { background: #1ED760; color: var(--white) !important; transform: translateY(-2px); }
    .mmf-whatsapp {
        background: rgba(37,211,102,0.08); color: #25D366;
    }
    .mmf-whatsapp:hover { background: #25D366; color: var(--white) !important; transform: translateY(-2px); }
    .mmf-facebook {
        background: rgba(24,119,242,0.08); color: #1877F2;
    }
    .mmf-facebook:hover { background: #1877F2; color: var(--white) !important; transform: translateY(-2px); }
    .mmf-telegram {
        background: rgba(38,165,219,0.08); color: #26A5DB;
    }
    .mmf-telegram:hover { background: #26A5DB; color: var(--white) !important; transform: translateY(-2px); }
    .mmf-linkedin {
        background: rgba(10,102,194,0.08); color: #0A66C2;
    }
    .mmf-linkedin:hover { background: #0A66C2; color: var(--white) !important; transform: translateY(-2px); }

    .mmf-contact {
        display: flex; flex-direction: column; gap: 8px;
        padding: 0 24px 12px;
    }
    .mmf-phone, .mmf-email {
        display: flex !important; align-items: center; gap: 10px;
        font-size: 0.82rem !important; color: var(--text-secondary) !important;
        padding: 8px 14px !important; background: var(--white);
        border-radius: 10px; border: none !important;
        transition: all 0.2s ease;
    }
    .mmf-phone i, .mmf-email i { color: var(--pink); font-size: 0.85rem; width: 16px; text-align: center; }
    .mmf-phone:hover, .mmf-email:hover { background: var(--pink-pale); color: var(--pink) !important; }

    .mmf-hours {
        text-align: center; font-size: 0.72rem; color: var(--text-muted);
        padding: 10px 24px 18px; display: flex; align-items: center;
        justify-content: center; gap: 6px;
    }
    .mmf-hours i { color: var(--mint); font-size: 0.7rem; }

    .section-header h2 { font-size: 2.2rem; }
    .section-header { margin-bottom: 48px; }
    .hero-slider { height: 100vh; min-height: 500px; }
    .hero-content h1 { font-size: 2.8rem; margin-bottom: 0; }
    .hero-content p { display: none; }
    .hero-content { padding-top: 76px; padding-bottom: 24px; }
    .hero-badge { font-size: 0.75rem; padding: 8px 16px; margin-bottom: 14px; }
    .hero-content .hero-mobile-btn { padding: 16px 32px; font-size: 1rem; margin-top: 20px; }
    .hero-trust-badges { margin-bottom: 16px; gap: 10px; }
    .hero-buttons { flex-direction: row; gap: 10px; justify-content: center; }
    .hero-buttons .btn { width: auto; padding: 12px 20px; font-size: 0.82rem; }
    .info-cards { grid-template-columns: 1fr; }
    .info-card { padding: 22px 20px; }
    .expert-text-col h2 { font-size: 2.2rem; }
    .about-content h2 { font-size: 2.2rem; }
    .about-checklist { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .cta-content h2 { font-size: 2rem; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
    .testimonial-card { min-width: calc(100% - 0px); }
    .why-grid { grid-template-columns: 1fr; }
    .why-header h2 { font-size: 2.2rem; }
    .contact-info-col h2 { font-size: 2.2rem; }
    .contact-map { min-height: 300px; }
    .contact-map iframe { min-height: 300px; }
    .faq-header h2 { font-size: 2.2rem; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .page-hero { padding: 120px 0 50px; }
    .page-hero h1 { font-size: 2rem; }
    .about-values { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
    html { font-size: 15px; }
    .container { padding: 0 16px; }
    .section-header h2 { font-size: 1.9rem; }
    .hero-slider { height: 100vh; min-height: 480px; }
    .hero-content h1 { font-size: 2.4rem; }
    .hero-content p { display: none; }
    .hero-content { padding-top: 80px; padding-bottom: 20px; }
    .hero-badge { font-size: 0.72rem; padding: 7px 14px; margin-bottom: 12px; }
    .hero-content .hero-mobile-btn { padding: 16px 32px; font-size: 1rem; margin-top: 28px; }
    .hero-buttons .btn { padding: 10px 16px; font-size: 0.78rem; }
    .expert-text-col h2 { font-size: 1.8rem; }
    .about-content h2 { font-size: 1.8rem; }
    .about-stat-card { padding: 20px 24px; }
    .stat-number { font-size: 2.2rem; }
    .service-card { padding: 28px 22px; }
    .cta-content h2 { font-size: 1.7rem; }
    .why-header h2 { font-size: 1.8rem; }
    .why-card { padding: 28px 22px; }
    .contact-info-col h2 { font-size: 1.8rem; }
    .faq-header h2 { font-size: 1.8rem; }
    .faq-list summary { padding: 18px 20px; font-size: 0.88rem; }
    .faq-list details p { padding: 0 20px 18px; }
    .page-hero { padding: 110px 0 40px; }
    .page-hero h1 { font-size: 1.7rem; }
    .whatsapp-float { display: none; }
    #back-to-top { width: 40px; height: 40px; bottom: 72px; right: 20px; }
    .testimonials-prev, .testimonials-next { width: 40px; height: 40px; }
}

/* ===== ANIMATIONS & UTILITIES ===== */
.fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.scale-in {
    opacity: 0; transform: scale(0.9);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.scale-in.visible { opacity: 1; transform: scale(1); }


/* ===== LEGACY VARIABLE ALIASES (for sub-pages) ===== */
:root {
    --primary: var(--pink);
    --primary-dark: var(--pink-dark);
    --primary-light: var(--pink-light);
    --secondary: var(--mint);
    --dark: var(--black);
    --dark-light: var(--black-light);
    --text-light: var(--text-secondary);
    --bg-light: var(--gray-light);
    --font-heading: var(--font-display);
    --radius: var(--radius-md);
}

/* ===== SECTION TAG (legacy) ===== */
.section-tag {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 3px; color: var(--pink); margin-bottom: 18px;
}
.section-tag::before {
    content: ''; width: 28px; height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--pink-light));
}

/* ===== ABOUT PAGE — FULL GRID ===== */
.about-section { padding: 80px 0; background: var(--white); }
.about-full-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-full-grid img {
    width: 100%; height: 450px; object-fit: cover;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-form-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 20px 24px; background: var(--off-white);
    border-radius: var(--radius-md); border: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
}
.contact-item:hover {
    transform: translateX(6px); box-shadow: var(--shadow-md);
    border-color: var(--pink-glow);
}
.contact-item i {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--pink-mist), var(--pink-pale));
    display: flex; align-items: center; justify-content: center;
    color: var(--pink); font-size: 1rem; flex-shrink: 0;
}
.contact-item:hover i {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--white);
}
.contact-item h4 {
    font-size: 0.85rem; font-weight: 700; color: var(--black); margin-bottom: 4px;
}
.contact-item p, .contact-item a {
    font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6;
}
.contact-item a:hover { color: var(--pink); }

/* ===== TRANSPORT GRID ===== */
.transport-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.transport-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 36px 28px; text-align: center;
    border: 1px solid var(--border); transition: all var(--duration) var(--ease);
    position: relative; overflow: hidden;
}
.transport-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--mint));
    transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.transport-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.transport-card:hover::before { transform: scaleX(1); }
.transport-card i {
    width: 60px; height: 60px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--pink-mist), var(--pink-pale));
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--pink); margin-bottom: 20px;
    transition: all var(--duration) var(--ease);
}
.transport-card:hover i {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--white); transform: scale(1.08);
}
.transport-card h4 {
    font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 10px;
}
.transport-card p {
    font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7;
}

/* ===== SERVICE DETAIL PAGE (legacy classes) ===== */
.service-detail { padding: 80px 0; background: var(--white); }
.service-detail-grid {
    display: grid; grid-template-columns: 1fr 340px; gap: 60px;
}
.service-content h2 {
    font-family: var(--font-display); font-size: 1.8rem; color: var(--black);
    margin: 32px 0 16px; font-weight: 400; line-height: 1.2;
}
.service-content h2:first-of-type { margin-top: 0; }
.service-content p {
    color: var(--text-secondary); font-size: 0.95rem; line-height: 1.9; margin-bottom: 16px;
}
.service-content ul {
    margin: 16px 0 24px 20px; list-style: none;
}
.service-content ul li {
    color: var(--text-secondary); font-size: 0.92rem; line-height: 1.8;
    margin-bottom: 10px; padding-left: 20px; position: relative;
}
.service-content ul li::before {
    content: ''; position: absolute; left: 0; top: 10px;
    width: 8px; height: 8px; border-radius: 50%;
    background: linear-gradient(135deg, var(--pink), var(--pink-light));
}
.service-content img {
    width: 100%; height: 400px; object-fit: cover;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}

/* ===== SERVICE SIDEBAR (legacy) ===== */
.service-sidebar { position: sticky; top: 120px; }
.sidebar-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 28px; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.sidebar-card h4 {
    font-size: 0.95rem; font-weight: 700; color: var(--black);
    margin-bottom: 18px; padding-bottom: 12px;
    border-bottom: 2px solid var(--pink-glow);
}
.sidebar-services {
    display: flex; flex-direction: column; gap: 4px;
}
.sidebar-services a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 14px; font-size: 0.85rem; color: var(--text-primary);
    border-radius: var(--radius-sm); transition: all var(--duration-fast) var(--ease);
}
.sidebar-services a:hover, .sidebar-services a.active {
    background: var(--pink-mist); color: var(--pink-dark); transform: translateX(4px);
}
.sidebar-services a i { font-size: 0.7rem; color: var(--gray); transition: color var(--duration-fast) var(--ease); }
.sidebar-services a:hover i { color: var(--pink); }

/* sidebar-cta already defined above, add btn style for legacy */
.sidebar-cta .btn {
    background: rgba(255,255,255,0.15); color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
    width: 100%; justify-content: center;
    backdrop-filter: blur(4px);
}
.sidebar-cta .btn:hover {
    background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* ===== WHY NUMBER (legacy) ===== */
.why-number {
    font-family: var(--font-display); font-size: 3rem;
    color: var(--pink-glow); line-height: 1; margin-bottom: 16px;
    font-weight: 400;
}

/* ===== RESPONSIVE ADDITIONS FOR SUB-PAGES ===== */
@media (max-width: 1024px) {
    .about-full-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-full-grid img { height: 350px; }
    .contact-form-grid { grid-template-columns: 1fr; gap: 40px; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
    .transport-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .about-full-grid img { height: 280px; }
    .transport-grid { grid-template-columns: 1fr; }
    .service-content img { height: 260px; }
}


/* ===== ABOUT CONTENT TITLE ===== */
.about-content-title {
    font-family: var(--font-display); font-size: 2rem; color: var(--black);
    margin-bottom: 20px; font-weight: 400; line-height: 1.2;
}
.about-section p {
    color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px;
    font-size: 0.95rem;
}

/* ===== CONTACT FORM TITLE ===== */
.contact-form h3 {
    font-family: var(--font-display); font-size: 1.4rem;
    margin-bottom: 8px; color: var(--black); font-weight: 400;
}
