:root {
    --coral: #E8735A;
    --coral-dark: #C4513A;
    --coral-light: #F0A090;
    --coral-pale: #FDF0ED;
    --white: #FFFFFF;
    --off-white: #FAFAF8;
    --dark: #1C1410;
    --mid: #4A3328;
    --text: #2E1F18;
    --border: rgba(232, 115, 90, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

/* ═══════════════════════════════════
NAVBAR
═══════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    background: transparent;
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 14px 48px;
    box-shadow: 0 2px 30px rgba(232, 115, 90, 0.12);
}

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

.nav-logo-icon {
    width: 44px;
    height: 44px;
}

.nav-logo-text {
    line-height: 1.1;
}

.nav-logo-text .top {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--coral);
    display: block;
}

.nav-logo-text .bottom {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coral-dark);
    display: block;
}

.hamburger {
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    z-index: 1100;
    position: relative;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--coral-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--white);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--white);
}

/* ═══════════════════════════════════
FULL SCREEN MENU
═══════════════════════════════════ */
#fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: var(--coral-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: circle(0% at calc(100% - 66px) 42px);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

#fullscreen-menu.open {
    clip-path: circle(150% at calc(100% - 66px) 42px);
    pointer-events: all;
}

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

.menu-inner nav a {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    text-decoration: none;
    line-height: 1.15;
    letter-spacing: -1px;
    transition: color 0.3s ease, transform 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

#fullscreen-menu.open .menu-inner nav a {
    opacity: 1;
    transform: translateY(0);
    color: rgba(255, 255, 255, 0.9);
}

.menu-inner nav a:nth-child(1) {
    transition-delay: 0.2s;
}

.menu-inner nav a:nth-child(2) {
    transition-delay: 0.28s;
}

.menu-inner nav a:nth-child(3) {
    transition-delay: 0.36s;
}

.menu-inner nav a:nth-child(4) {
    transition-delay: 0.44s;
}

.menu-inner nav a:nth-child(5) {
    transition-delay: 0.52s;
}

.menu-inner nav a:nth-child(6) {
    transition-delay: 0.6s;
}

.menu-inner nav a:nth-child(7) {
    transition-delay: 0.68s;
}

.menu-inner nav a:hover {
    color: var(--white) !important;
    transform: translateX(12px) !important;
}

.menu-contact {
    margin-top: 48px;
    opacity: 0;
    transition: opacity 0.4s ease 0.6s;
}

#fullscreen-menu.open .menu-contact {
    opacity: 1;
}

.menu-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 20px;
    transition: color 0.3s;
}

.menu-contact a:hover {
    color: white;
}

/* ═══════════════════════════════════
HERO - VERTICAL STACK SCROLL
═══════════════════════════════════ */
#hero {
    height: 300vh;
    position: relative;
}

.hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--coral-pale) 0%, #FDE8E2 50%, #FDF4F2 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(232, 115, 90, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(196, 81, 58, 0.06) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 32px;
}

/* Screen 1: Heading */
.hero-screen-1 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 0 40px;
    text-align: center;
    transition: opacity 0.4s, transform 0.4s;
}

.hero-screen-1 .badge {
    display: inline-block;
    background: rgba(232, 115, 90, 0.12);
    border: 1px solid rgba(232, 115, 90, 0.3);
    color: var(--coral-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
}

.hero-screen-1 h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    color: var(--coral-dark);
}

.hero-screen-1 h1 em {
    font-style: italic;
    color: var(--coral);
}

/* Screen 2: Description */
.hero-screen-2 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 0 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s, transform 0.5s;
}

.hero-screen-2 p {
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 300;
    line-height: 1.7;
    color: var(--mid);
    max-width: 680px;
}

.hero-screen-2 .stats {
    display: flex;
    gap: 48px;
    margin-top: 12px;
}

.hero-screen-2 .stat-item {
    text-align: center;
}

.hero-screen-2 .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--coral);
    display: block;
}

.hero-screen-2 .stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mid);
}

/* Screen 3: Button + Image */
.hero-screen-3 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 80px;
    padding: 0 80px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s, transform 0.5s;
}

.hero-screen-3 .hero-cta-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 380px;
}

.hero-screen-3 h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    color: var(--coral-dark);
    line-height: 1.2;
}

.hero-screen-3 p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--mid);
}

.hero-image-mock {
    width: 340px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(145deg, var(--coral) 0%, var(--coral-dark) 100%);
    position: relative;
    box-shadow: 0 40px 80px rgba(196, 81, 58, 0.3);
}

.hero-image-mock::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("../img/hero.jpeg") center/cover;
}

.hero-image-mock::after {
    content: '✓ Trained Inspector';
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--coral-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    display: inline-block;
    background: var(--coral-dark);
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: 2px solid var(--coral-dark);
}

.btn-primary:hover {
    background: transparent;
    color: var(--coral-dark);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--coral-dark);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--coral-dark);
}

.btn-outline:hover {
    background: var(--coral-dark);
    color: white;
}

.btn-ghost {
    display: inline-block;
    background: rgba(232, 115, 90, 0.1);
    color: var(--coral-dark);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 115, 90, 0.3);
}

.btn-ghost:hover {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
}

/* ═══════════════════════════════════
ABOUT SECTION
═══════════════════════════════════ */
#about {
    padding: 120px 0;
    background: var(--white);
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.about-left {
    position: relative;
}

.about-img-wrap {
    position: relative;
    padding-bottom: 60px;
    padding-right: 60px;
}

.about-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, var(--coral-pale), #FDE0D8);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.about-img-main svg {
    width: 100%;
    height: 100%;
}

.about-img-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: var(--coral-dark);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-img-badge .num {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

.about-img-badge .label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0.85;
    padding: 0 16px;
    margin-top: 4px;
}

.about-right .section-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 16px;
    display: block;
}

.about-right h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--coral-dark);
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.about-right p {
    font-size: 16px;
    line-height: 1.85;
    color: #5A3D34;
    margin-bottom: 18px;
}

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

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.about-feature::before {
    content: '◆';
    color: var(--coral);
    font-size: 8px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════
SERVICES SECTION
═══════════════════════════════════ */
#services {
    padding: 120px 0;
    background: var(--off-white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
    padding: 0 32px;
}

.section-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--coral);
    display: block;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 900;
    color: var(--coral-dark);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--mid);
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 40px rgba(232, 115, 90, 0.06);
    border: 1px solid var(--border);
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse>* {
    direction: ltr;
}

.service-image {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.service-image-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-img-1 {
    background: linear-gradient(135deg, #F0C4B8, var(--coral-light));
}

.svc-img-2 {
    background: linear-gradient(135deg, #F8D8D0, #E8A090);
}

.svc-img-3 {
    background: linear-gradient(135deg, #EAB8A8, #D87060);
}

.svc-img-4 {
    background: linear-gradient(135deg, #F4C8BC, var(--coral));
}

.service-icon-large {
    width: 100px;
    height: 100px;
    opacity: 0.6;
}

.service-content .service-num {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 900;
    color: rgba(232, 115, 90, 0.1);
    line-height: 1;
    margin-bottom: -20px;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--coral-dark);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.service-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 24px;
}

/* ═══════════════════════════════════
WHY CHOOSE US
═══════════════════════════════════ */
#why-choose {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 45%, var(--off-white) 100%);
    border-top: 1px solid var(--border);
}

.why-choose-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

#why-choose .section-header {
    margin-bottom: 64px;
}

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

.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 24px rgba(232, 115, 90, 0.05);
}

.why-card:hover {
    border-color: rgba(232, 115, 90, 0.45);
    box-shadow: 0 12px 40px rgba(232, 115, 90, 0.12);
    transform: translateY(-4px);
}

.why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--coral-pale);
    border: 1px solid rgba(232, 115, 90, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--coral-dark);
    font-size: 22px;
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--coral-dark);
    margin-bottom: 12px;
    line-height: 1.25;
}

.why-card p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--mid);
    margin: 0;
}

/* ═══════════════════════════════════
PREMIUM SERVICE
═══════════════════════════════════ */
#premium-service {
    padding: 100px 0 120px;
    background: var(--off-white);
}

.premium-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.premium-panel {
    background: linear-gradient(145deg, var(--dark) 0%, #2A1C14 42%, var(--coral-dark) 100%);
    border-radius: 20px;
    padding: 48px 48px 52px;
    box-shadow: 0 28px 80px rgba(28, 20, 16, 0.35);
    border: 1px solid rgba(232, 115, 90, 0.25);
    position: relative;
    overflow: hidden;
}

.premium-panel::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 55%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(232, 115, 90, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.premium-badge-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 20px;
    margin-bottom: 28px;
}

.premium-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark);
    background: linear-gradient(135deg, #F5E6C8 0%, #E8D4A8 100%);
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.premium-badge-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
}

.premium-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 48px;
    align-items: start;
}

.premium-copy h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.premium-lead {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 28px;
    max-width: 560px;
}

.premium-list {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.premium-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.premium-list strong {
    color: var(--white);
    font-weight: 600;
}

.premium-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(232, 115, 90, 0.25);
    border: 1px solid rgba(232, 115, 90, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coral-light);
    font-size: 11px;
    margin-top: 2px;
}

.premium-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.premium-cta .btn-primary {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
}

.premium-cta .btn-primary:hover {
    background: transparent;
    color: var(--coral-light);
    border-color: var(--coral-light);
}

.premium-btn-outline {
    border-color: rgba(255, 255, 255, 0.45) !important;
    color: var(--white) !important;
}

.premium-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--white) !important;
    color: var(--white) !important;
}

.premium-aside {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 28px 24px;
}

.premium-stat {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-stat:last-of-type {
    border-bottom: none;
    padding-bottom: 8px;
}

.premium-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--coral-light);
    display: block;
    line-height: 1;
}

.premium-stat-label {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
    display: block;
}

.premium-quote {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.premium-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-style: italic;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.premium-quote-src {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

/* ═══════════════════════════════════
SERVICE AREAS
═══════════════════════════════════ */
#service-areas {
    padding: 100px 0 120px;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.service-areas-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 48px;
}

#service-areas .section-header {
    margin-bottom: 48px;
}

.service-area-accordion {
    border-top: 1px solid rgba(232, 115, 90, 0.2);
}

.service-area-item {
    border-bottom: 1px solid rgba(232, 115, 90, 0.2);
    overflow: hidden;
}

.service-area-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.service-area-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--coral-dark);
    line-height: 1.3;
}

.service-area-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coral);
    display: block;
    margin-top: 6px;
}

.service-area-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--coral);
    font-size: 18px;
    line-height: 1;
}

.service-area-item.open .service-area-icon {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    color: var(--white);
    transform: rotate(45deg);
}

.service-area-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.45s ease;
    padding: 0;
}

.service-area-item.open .service-area-answer {
    max-height: 320px;
    padding-bottom: 22px;
}

.service-area-cities {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.service-area-cities li {
    font-size: 15px;
    line-height: 1.5;
    color: var(--mid);
    padding-left: 18px;
    position: relative;
}

.service-area-cities li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    opacity: 0.85;
}

.service-area-footnote {
    margin-top: 36px;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    color: var(--mid);
}

.service-area-footnote a {
    color: var(--coral-dark);
    font-weight: 600;
    text-decoration: none;
}

.service-area-footnote a:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════
FAQ SECTION
═══════════════════════════════════ */
#faq {
    padding: 120px 0;
    background: var(--coral-pale);
}

.faq-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 48px;
}

.faq-item {
    border-bottom: 1px solid rgba(232, 115, 90, 0.2);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 28px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq-question-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--coral-dark);
    line-height: 1.3;
}

.faq-city {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coral);
    display: block;
    margin-top: 4px;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--coral);
    font-size: 18px;
    line-height: 1;
}

.faq-item.open .faq-icon {
    background: var(--coral-dark);
    border-color: var(--coral-dark);
    color: white;
    transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--mid);
}

/* ═══════════════════════════════════
ADDITIONAL SERVICES
═══════════════════════════════════ */
#additional-services {
    padding: 120px 0;
    background: var(--white);
}

.additional-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 48px;
}

.service-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-list-item:hover {
    border-color: var(--coral);
    background: var(--coral-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 115, 90, 0.12);
}

.service-check {
    width: 28px;
    height: 28px;
    background: var(--coral-pale);
    border: 2px solid var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--coral-dark);
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
}

.service-list-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--coral-dark);
    margin-bottom: 6px;
}

.service-list-content p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--mid);
}

/* ═══════════════════════════════════
CONTACT SECTION
═══════════════════════════════════ */
#contact {
    padding: 120px 0;
    background: var(--off-white);
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--coral-dark);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.contact-info>p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--mid);
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--coral);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(232, 115, 90, 0.12);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    background: var(--coral-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.contact-card-text .label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--coral);
    display: block;
    margin-bottom: 2px;
}

.contact-card-text .value {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
}

/* Map */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
    position: relative;
    box-shadow: 0 20px 60px rgba(232, 115, 90, 0.15);
    border: 1px solid var(--border);
}

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

/* ═══════════════════════════════════
FOOTER
═══════════════════════════════════ */
#footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px 60px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 900;
    color: var(--coral-light);
    display: block;
    margin-bottom: 4px;
}

.footer-brand .logo-sub {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--coral);
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 32px;
    max-width: 320px;
}

.footer-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 260px;
}

.footer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.footer-btn-primary {
    background: var(--coral);
    color: white;
}

.footer-btn-primary:hover {
    background: var(--coral-light);
}

.footer-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-btn-tertiary {
    background: rgba(232, 115, 90, 0.12);
    color: var(--coral-light);
    border: 1px solid rgba(232, 115, 90, 0.25);
}

.footer-btn-tertiary:hover {
    background: rgba(232, 115, 90, 0.22);
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--coral-light);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--coral-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom p span {
    color: var(--coral);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--coral-light);
}

/* ═══════════════════════════════════
SCROLL REVEAL
═══════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ═══════════════════════════════════
RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 900px) {
    #navbar {
        padding: 18px 24px;
    }

    #navbar.scrolled {
        padding: 12px 24px;
    }

    .about-inner,
    .contact-inner,
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-screen-3 {
        flex-direction: column;
        padding: 40px 24px;
        gap: 32px;
    }

    .hero-image-mock {
        width: 100%;
        height: 260px;
    }

    .service-block {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px;
    }

    .service-block.reverse {
        direction: ltr;
    }

    .service-list-grid {
        grid-template-columns: 1fr;
    }

    .footer-btns {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .why-choose-inner,
    .premium-wrap {
        padding: 0 24px;
    }

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

    .premium-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .premium-panel {
        padding: 36px 28px 40px;
    }

    .services-list,
    .faq-inner,
    .additional-inner,
    .service-areas-inner {
        padding: 0 24px;
    }

    .service-area-cities {
        grid-template-columns: 1fr;
    }

    .about-inner,
    .contact-inner,
    .footer-top,
    .footer-bottom {
        padding-left: 24px;
        padding-right: 24px;
    }
}