:root {
    --primary: #5A6D7C;
    --primary-dark: #3d4f5c;
    --primary-light: #7a93a5;
    --accent: #C8A96E;
    --accent-light: #e8d5a8;
    --bg: #f7f5f2;
    --bg2: #edeae5;
    --white: #ffffff;
    --dark: #1a2530;
    --text: #2e3d49;
    --text-light: #6b7f8c;
    --border: rgba(90, 109, 124, 0.15);
    --shadow: 0 8px 40px rgba(90, 109, 124, 0.12);
    --shadow-lg: 0 20px 60px rgba(90, 109, 124, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

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

/* ═══════════════════ NAVBAR ═══════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(247, 245, 242, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 12px 48px;
    background: rgba(247, 245, 242, 0.97);
    box-shadow: 0 4px 30px rgba(90, 109, 124, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-dark);
    text-decoration: none;
}

.nav-logo-icon {
    width: 38px;
    height: 38px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--white);
    border-radius: 50px;
    padding: 6px 8px;
    box-shadow: 0 2px 20px rgba(90, 109, 124, 0.12);
    border: 1px solid var(--border);
}

.nav-pill a {
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s;
}

.nav-pill a:hover,
.nav-pill a.active {
    background: var(--primary);
    color: white;
}

.nav-cta {
    padding: 10px 26px;
    background: var(--primary);
    color: var(--white);
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 2px 12px rgba(200, 169, 110, 0.3);
}

.nav-cta:hover {
    background: var(--primary-dark-light);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 120px 28px 70px;
    border-top: 6px solid #111;
    border-bottom: 6px solid #111;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(17, 17, 17, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17, 17, 17, 0.12) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
    z-index: 0;
}

.hero-statement-no {
    position: absolute;
    top: 24px;
    left: 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(4rem, 11vw, 10rem);
    font-weight: 700;
    line-height: 0.9;
    color: #111;
    letter-spacing: -0.07em;
    z-index: 2;
}

.hero-magnets {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    margin-top: 26px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.magnet-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.magnet-icon-wrap {
    width: 240px;
    height: 165px;
    background: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #111;
    transition: transform 0.2s;
    overflow: hidden;
}

.magnet-icon-wrap:hover {
    transform: translateY(-3px);
}

.magnet-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-feature-image {
    margin-top: 0;
    width: min(88vw, 1100px);
    height: 220px;
}

.magnet-label {
    font-size: 0.78rem;
    color: #111;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
    padding: 6px 10px;
    border: 3px solid #111;
    background: #fff;
}

.hero-center {
    text-align: center;
    max-width: 940px;
    position: relative;
    z-index: 2;
    padding: 32px 24px 20px;
    border: 4px solid #111;
    background: rgba(255, 255, 255, 0.88);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 3px solid #111;
    border-radius: 0;
    padding: 8px 12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 22px;
    letter-spacing: 0.08em;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    fill: #111;
}

.hero-title {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(2.3rem, 8vw, 6rem);
    line-height: 0.95;
    color: #111;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-align: left;
}

.hero-title span {
    font-size: 1.16em;
    letter-spacing: -0.04em;
}

.hero-sub {
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
    color: #111;
    line-height: 1.55;
    margin-bottom: 30px;
    max-width: 680px;
    text-align: left;
}

.hero-btns {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero .btn-primary,
.hero .btn-outline {
    padding: 14px 32px;
    background: transparent;
    color: #111;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 3px solid #111;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero .btn-primary:hover,
.hero .btn-outline:hover {
    background: #111;
    color: #fff;
}

.hero .btn svg {
    width: 18px;
    height: 18px;
}

/* ═══════════════════ STATS ═══════════════════ */
.stats {
    background: var(--primary);
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.stats-track {
    display: flex;
    gap: 0;
    animation: scrollLeft 20s linear infinite;
    white-space: nowrap;
}

.stats-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.stat-item {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
}

.stat-detail {
    line-height: 1.3;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 500;
}

.stat-sub {
    color: var(--accent-light);
    font-size: 0.72rem;
}

.stat-icon {
    width: 36px;
    height: 36px;
    fill: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

/* ═══════════════════ ABOUT (HORIZONTAL SCROLL) ═══════════════════ */
.about {
    padding: 80px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    padding: 0 24px;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg2);
    border-radius: 40px;
    padding: 5px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 14px;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

.h-scroll-wrap {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    padding: 0 48px 20px;
}

.h-scroll-wrap::-webkit-scrollbar {
    display: none;
}

.h-scroll-wrap:active {
    cursor: grabbing;
}

.h-slide {
    flex: 0 0 360px;
    scroll-snap-align: start;
    margin-right: 24px;
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.h-slide-num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--bg2);
    line-height: 1;
}

.h-slide-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.h-slide-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.h-slide h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 12px;
}

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

.h-scroll-nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
    padding: 0 24px;
}

.h-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: var(--shadow);
}

.h-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.h-nav-btn:hover svg {
    fill: white;
}

.h-nav-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
}

/* ═══════════════════ SERVICES (BEAM) ═══════════════════ */
.services {
    padding: 80px 0;
    background: linear-gradient(180deg, #f7f5f2 0%, #edeae5 100%);
}

.services-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

.beam-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    margin-top: 60px;
}

.beam-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 33%, rgba(90, 109, 124, 0.12) 33%, rgba(90, 109, 124, 0.12) 34%, transparent 34%),
        linear-gradient(90deg, transparent 66%, rgba(90, 109, 124, 0.12) 66%, rgba(90, 109, 124, 0.12) 67%, transparent 67%),
        linear-gradient(0deg, transparent 50%, rgba(90, 109, 124, 0.12) 50%, rgba(90, 109, 124, 0.12) 51%, transparent 51%);
    z-index: 0;
}

.service-card {
    position: relative;
    z-index: 1;
    padding: 36px 28px;
    background: white;
    border: 1px solid var(--border);
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    background: var(--primary);
    z-index: 2;
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    border-radius: 16px;
    border-color: var(--primary);
}

.service-card:hover .sc-title {
    color: white;
}

.service-card:hover .sc-desc {
    color: rgba(255, 255, 255, 0.75);
}

.service-card:hover .sc-icon {
    background: rgba(255, 255, 255, 0.15);
}

.service-card:hover .sc-icon svg {
    fill: white;
}

.service-card:hover .sc-arr {
    color: white;
}

.service-img {
    grid-column: span 3;
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
    margin: 30px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img-inner {
    width: 100%;
    height: 100%;
    background: url('../img/hero.jpg') center/cover;
    opacity: 0.4;
    position: absolute;
    inset: 0;
}

.service-img-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.service-img-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.service-img-text p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.sc-icon {
    width: 50px;
    height: 50px;
    background: var(--bg2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.sc-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
    transition: all 0.3s;
}

.sc-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 8px;
    transition: all 0.3s;
}

.sc-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
    transition: all 0.3s;
}

.sc-arr {
    margin-top: 14px;
    color: var(--primary);
    font-size: 1.1rem;
    transition: all 0.3s;
}

/* ═══════════════════ FAQ ═══════════════════ */
.faq {
    padding: 80px 48px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    justify-content: center;
}

.faq-tab {
    padding: 9px 22px;
    border-radius: 40px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
}

.faq-tab.active,
.faq-tab:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.faq-list {
    display: none;
}

.faq-list.active {
    display: block;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.25s;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
    user-select: none;
}

.faq-question .faq-ico {
    font-size: 1.1rem;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-ico {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s;
    padding: 0 24px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 24px 18px;
}

.faq-city {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 6px;
}

/* ═══════════════════ ENERGY RINGS SERVICES ═══════════════════ */
.add-services {
    padding: 80px 0;
    background: var(--bg2);
    overflow: hidden;
}

.energy-rings-wrap {
    position: relative;
    max-width: 1180px;
    margin: 50px auto 0;
    padding: 0 24px;
}

.energy-rings-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.energy-image-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    min-height: 360px;
}

.energy-image-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.energy-rings {
    width: 360px;
    height: 360px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.energy-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(90, 109, 124, 0.35);
    animation: rotateRing 20s linear infinite;
}

.energy-ring.outer-ring {
    width: 330px;
    height: 330px;
}

.energy-ring.inner-ring {
    width: 240px;
    height: 240px;
    border-style: solid;
    border-color: rgba(90, 109, 124, 0.2);
    animation-direction: reverse;
}

.energy-center-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: var(--shadow-lg);
    background: white;
    z-index: 2;
}

.energy-center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.energy-service {
    position: absolute;
    border: 1px solid var(--border);
    background: white;
    color: var(--dark);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 10px 14px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 3;
}

.energy-service:hover,
.energy-service.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: scale(1.04);
}

.energy-service.top {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.energy-service.right {
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
}

.energy-service.bottom {
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.energy-service.left {
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
}

.energy-service-panel {
    background: white;
    border-radius: 22px;
    padding: 30px 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.energy-service-panel h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.energy-service-panel p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ═══════════════════ SERVICE AREAS ═══════════════════ */
.service-areas {
    padding: 80px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
    margin-top: 40px;
}

.area-pill {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.25s;
    cursor: default;
}

.area-pill:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.area-pill:hover svg {
    fill: white;
}

.area-pill svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
    flex-shrink: 0;
    transition: fill 0.25s;
}

/* ═══════════════════ SPLIT IMAGE SERVICES ═══════════════════ */
.split-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px;
}

.split-services-layout {
    margin-top: 42px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.split-services-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    min-height: 420px;
    background: var(--white);
}

.split-main-image {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.split-small-image {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 88px;
    height: 88px;
    border-radius: 18px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: var(--shadow);
    background: var(--white);
}

.split-services-content {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.split-services-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
}

.split-tab {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg);
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 600;
    padding: 12px 10px;
    cursor: pointer;
    transition: all 0.25s;
}

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

.split-services-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.split-services-content p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ═══════════════════ WHY CHOOSE US ═══════════════════ */
.why {
    padding: 80px 48px;
    background: var(--dark);
}

.why-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-img {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    height: 450px;
}

.why-img-bg {
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=800&q=80') center/cover;
}

.why-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(26, 37, 48, 0.5));
}

.why-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 1;
    background: var(--accent);
    color: var(--dark);
    border-radius: 14px;
    padding: 14px 20px;
}

.why-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
}

.why-badge-label {
    font-size: 0.75rem;
    font-weight: 600;
}

.why-content .section-tag {
    background: rgba(255, 255, 255, 0.08);
    color: var(--accent-light);
}

.why-content .section-title {
    color: white;
    text-align: left;
}

.why-content .section-sub {
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    margin: 0 0 30px 0;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.why-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.why-point:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.why-point-icon {
    width: 40px;
    height: 40px;
    background: rgba(90, 109, 124, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-point-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-light);
}

.why-point h4 {
    color: white;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.why-point p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* ═══════════════════ CONTACT ═══════════════════ */
.contact {
    padding: 80px 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

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

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

.contact-card {
    background: white;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s;
}

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

.contact-card-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.contact-card h4 {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-form-wrap {
    background: white;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 20px;
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.form-field label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: all 0.25s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(90, 109, 124, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 90px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}

.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ═══════════════════ INFO BAR ═══════════════════ */
.info-bar {
    background: var(--primary-dark);
    padding: 30px 48px;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-bar-item svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-light);
    flex-shrink: 0;
}

.info-bar-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
}

.info-bar-item a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}

.info-bar-item a:hover {
    color: var(--accent-light);
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer-cta {
    background: linear-gradient(135deg, var(--accent), #b8924a);
    padding: 40px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--dark);
    max-width: 440px;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--dark);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.footer-cta-btn svg {
    width: 18px;
    height: 18px;
    fill: white;
}

footer {
    background: var(--dark);
    padding: 50px 48px 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

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

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    text-decoration: none;
}

.footer-social:hover {
    background: var(--primary);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.6);
}

.footer-social:hover svg {
    fill: white;
}

.footer-col h4 {
    color: white;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.footer-col ul li a::before {
    content: '→';
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.footer-col ul li a:hover::before {
    opacity: 1;
}

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

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.8rem;
}

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

/* ═══════════════════ MOBILE NAV ═══════════════════ */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(247, 245, 242, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: var(--bg2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary);
}

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

    .nav-pill {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 100px 24px 50px;
    }

    .hero-statement-no {
        top: 16px;
        left: 14px;
        font-size: clamp(3rem, 16vw, 7rem);
    }

    .hero-center {
        padding: 24px 16px 18px;
    }

    .hero-title,
    .hero-sub {
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-magnets {
        gap: 30px;
    }

    .hero-feature-image {
        margin-top: 26px;
        width: min(94vw, 360px);
        height: 220px;
    }

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

    .service-img {
        grid-column: span 2;
    }

    .services-inner {
        padding: 0 24px;
    }

    .faq {
        padding: 80px 24px;
    }

    .service-areas {
        padding: 80px 24px;
    }

    .split-services {
        padding: 80px 24px;
    }

    .split-services-layout {
        grid-template-columns: 1fr;
    }

    .split-services-image-wrap,
    .split-main-image {
        min-height: 320px;
    }

    .why {
        padding: 80px 24px;
    }

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

    .contact {
        padding: 80px 24px;
    }

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

    .info-bar {
        padding: 24px;
        gap: 24px;
    }

    .footer-cta {
        padding: 30px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 0 30px;
    }

    footer {
        padding: 40px 24px 0;
    }
}

@media(max-width: 600px) {
    .hero {
        border-top-width: 4px;
        border-bottom-width: 4px;
    }

    .hero-center {
        border-width: 3px;
    }

    .hero .btn-primary,
    .hero .btn-outline {
        width: 100%;
    }

    .hero-feature-image {
        width: min(94vw, 320px);
        height: 200px;
    }

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

    .service-img {
        grid-column: span 1;
    }

    .split-services-tabs {
        grid-template-columns: 1fr;
    }

    .split-small-image {
        width: 72px;
        height: 72px;
        border-radius: 14px;
    }

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

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

    .why-img {
        height: 280px;
    }

    .energy-rings-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .energy-rings {
        width: 300px;
        height: 300px;
    }

    .energy-ring.outer-ring {
        width: 280px;
        height: 280px;
    }

    .energy-ring.inner-ring {
        width: 205px;
        height: 205px;
    }

    .energy-service {
        font-size: 0.75rem;
        padding: 8px 11px;
    }

    .energy-service.right {
        right: -6px;
    }

    .energy-service.left {
        left: -6px;
    }
}

/* scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

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