/* CSS Variables for Premium Aesthetic */
:root {
    --primary-color: #1a1a1a;
    --accent-color: #C5A66E;
    --accent-hover: #b3945a;
    --text-color: #e2e8f0;
    --light-bg: #121212;
    --white: #ffffff;
    --success: #10b981;
    --error: #ef4444;
    --title-color: #C5A66E;
    --radius-btn: 10px;
    --font-heading: "DM Sans", system-ui, sans-serif;
    --font-body: "Noto Sans", system-ui, sans-serif;
    --shadow-cta: 0 4px 16px rgba(197, 166, 110, 0.28);
    --shadow-cta-hover: 0 8px 24px rgba(197, 166, 110, 0.38);
    /* 8px spacing scale — use for new components */
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 64px;
    --radius-card: 20px;
    /* Subtle grid for layered section backgrounds (works without raster images) */
    --bg-pattern-faint: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

html {
    overflow-x: hidden;
    scroll-padding-top: 88px;
}

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

/* Heading Titles Color */
h1,
h2,
h3,
h4,
h5,
h6,
.panel-header h2 {
    color: var(--title-color);
}

a {
    color: #fff;
    text-decoration: none;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

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

.pb-0 {
    padding-bottom: 0 !important;
}

/* Global Reset & Typography */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    background-color: var(--light-bg);
    background-image:
        radial-gradient(ellipse 100% 60% at 50% -15%, rgba(197, 166, 110, 0.07), transparent 55%),
        linear-gradient(180deg, #141414 0%, #0d0d0d 45%, #121212 100%);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 1024px) {
    body {
        background-attachment: scroll;
    }
}

/* App Header */
.app-header {
    background-color: rgba(26, 26, 26, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 32px rgba(0, 0, 0, 0.25);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Mobile menu is `position: absolute` — anchor via .header-container */
    isolation: isolate;
}

.app-header .header-container {
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: max(24px, calc(140px + env(safe-area-inset-left, 0px)));
    padding-right: max(24px, calc(140px + env(safe-area-inset-right, 0px)));
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.brand-logo:hover {
    opacity: 0.9;
}

.brand-logo img {
    height: 60px;
    width: auto;
    border-radius: 6px;
}

/* Navigation */
.main-navigation {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-item {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nav-item:hover,
.active-nav {
    color: #C5A66E;
}

/* CTA Button — matches .btn-theme system */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    padding: 14px 26px;
    border-radius: var(--radius-btn);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    box-shadow: var(--shadow-cta);
    transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-hover);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-cta-hover);
}

/* Toggle Button */
.nav-toggle-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
}


.hero-segment {
    color: var(--white);
}

.hero-inner {
    padding: 120px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.splide__pagination {
    bottom: 1.25rem !important;
}

.splide__pagination__page {
    background: rgba(255, 255, 255, 0.35) !important;
    opacity: 1 !important;
}

.splide__pagination__page.is-active {
    background: var(--accent-color) !important;
    transform: scale(1.15);
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 4.5vw, 3.15rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.15;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    padding: 0 12px;
}

/* Home hero: photo + gradient + pattern (pattern shows if image is missing) */
.slide-bg-1 {
    background-color: #080c12;
    background-image:
        linear-gradient(165deg, rgba(6, 10, 18, 0.9) 0%, rgba(8, 12, 20, 0.5) 42%, rgba(4, 6, 12, 0.92) 100%),
        radial-gradient(ellipse 85% 55% at 78% 18%, rgba(197, 166, 110, 0.16), transparent 58%),
        var(--bg-pattern-faint),
        url("../image/hero-slide-1.png");
    background-size: cover, cover, 72px 72px, cover;
    background-position: center, center, center, center;
    background-repeat: no-repeat, no-repeat, repeat, no-repeat;
    min-height: clamp(520px, 78vh, 920px);
}

.slide-bg-2 {
    background-color: #080c12;
    background-image:
        linear-gradient(165deg, rgba(6, 10, 18, 0.88) 0%, rgba(8, 12, 20, 0.48) 45%, rgba(4, 6, 12, 0.9) 100%),
        radial-gradient(ellipse 70% 50% at 22% 75%, rgba(197, 166, 110, 0.12), transparent 60%),
        var(--bg-pattern-faint),
        url("../image/hero-slide-2.png");
    background-size: cover, cover, 72px 72px, cover;
    background-position: center, center, center, center;
    background-repeat: no-repeat, no-repeat, repeat, no-repeat;
    min-height: clamp(520px, 78vh, 920px);
}

/* Home hero: full slide height + fallback if images load slowly */
#hero-slider.splide,
#hero-slider .splide__track,
#hero-slider .splide__list,
#hero-slider .splide__slide {
    min-height: clamp(520px, 78vh, 920px);
}

#hero-slider .splide__slide > .hero-inner {
    min-height: clamp(520px, 78vh, 920px);
}

/* Inner pages: background comes from .about-hero / .service-hero — no second image layer */
.hero-inner--page {
    min-height: 100%;
    background-image: none !important;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
}

.btn-theme-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
    color: var(--white) !important;
    border: 2px solid rgba(197, 166, 110, 0.85);
    background: transparent;
    text-decoration: none;
    transition: all 0.35s ease;
}

.btn-theme-outline:hover {
    background: rgba(197, 166, 110, 0.15);
    border-color: var(--accent-color);
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* WhatsApp quick contact (left side — back-to-top stays right) */
.whatsapp-float {
    position: fixed;
    bottom: calc(92px + env(safe-area-inset-bottom, 0px));
    left: calc(20px + env(safe-area-inset-left, 0px));
    right: auto;
    z-index: 998;
    width: 54px;
    height: 54px;
    max-width: 54px;
    max-height: 54px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45);
    color: #fff !important;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: calc(88px + env(safe-area-inset-bottom, 0px));
        left: calc(14px + env(safe-area-inset-left, 0px));
        width: 50px;
        height: 50px;
    }
}

/* Status Panel */
.content-pad {
    padding: 60px 20px;
}

.status-panel {
    max-width: 800px;
    margin: -40px auto 40px;
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.panel-header {
    margin-bottom: 25px;
    text-align: center;
}

.sub-label {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.panel-header h2 {
    margin: 5px 0 0 0;
    color: var(--primary-color);
}

.alert-box {
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 15px;
}

.success-box {
    background: #ecfdf5;
    color: #065f46;
    border-left: 4px solid var(--success);
}

.error-box {
    background: #fef2f2;
    color: #991b1b;
    border-left: 4px solid var(--error);
}

/* Footer Section */
.app-footer.site-footer {
    background: var(--primary-color);
    color: #94a3b8;
    text-align: left;
    padding: 56px 0 0;
    font-size: 15px;
    border-top: 1px solid #1e293b;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: max(24px, calc(100px + env(safe-area-inset-left, 0px)));
    padding-right: max(24px, calc(100px + env(safe-area-inset-right, 0px)));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
}

.footer-grid .footer-col {
    text-align: left;
}

.footer-brand-link {
    font-family: "DM Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color) !important;
    text-decoration: none;
}

.footer-brand-link:hover {
    color: var(--white) !important;
}

.footer-tagline {
    margin: 10px 0 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-color);
    margin: 0 0 18px;
    font-weight: 700;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.footer-nav a {
    color: #cbd5e1 !important;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--accent-color) !important;
    border-bottom-color: rgba(197, 166, 110, 0.35);
}

.footer-contact-line {
    margin: 0 0 8px;
}

.footer-contact-line a {
    color: #e2e8f0 !important;
    text-decoration: none;
}

.footer-contact-line a:hover {
    color: var(--accent-color) !important;
}

.footer-meta {
    margin: 12px 0 0;
    font-size: 0.9rem;
    color: #64748b;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0 28px;
    font-size: 13px;
    color: #64748b;
}

.footer-bottom p {
    margin: 0;
}

@media screen and (max-width: 900px) {
    .footer-inner {
        padding-left: max(20px, calc(35px + env(safe-area-inset-left, 0px)));
        padding-right: max(20px, calc(35px + env(safe-area-inset-right, 0px)));
    }

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

    .footer-brand-block {
        grid-column: 1 / -1;
    }
}

@media screen and (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* About / Who we are band */
.who-we-are-segment {
    position: relative;
    overflow: hidden;
}

.who-we-are-segment::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: min(50vw, 520px);
    height: min(50vw, 520px);
    background: radial-gradient(circle, rgba(197, 166, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.who-we-are-segment .inner-container,
.who-we-are-segment .row {
    position: relative;
    z-index: 1;
}

/* === Why Choose Us Section === */
.why-us-segment {
    background-color: var(--light-bg);
    /* #121212 */
    color: var(--white);
    padding: 80px 20px;
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--title-color);
    /* #C5A66E */
    margin: 0 0 15px 0;
}

.feature-item {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.feature-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.feature-title h3 {
    margin: 0;
    font-size: 1.4rem;
    color: var(--white);
}

.feature-desc p {
    margin: 0;
    color: #ffffff30;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

/* === Who We Are Section === */
.dark-bg {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.dark-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 12% 45%, rgba(197, 166, 110, 0.06), transparent 62%),
        var(--bg-pattern-faint);
    background-size: cover, 64px 64px;
    background-repeat: no-repeat, repeat;
    pointer-events: none;
    z-index: 0;
}

.dark-bg > .inner-container {
    position: relative;
    z-index: 1;
}

.pill-back {
    z-index: 1;
    right: 18%;
    top: 0px;
    height: 440px;
    border: 6px solid var(--primary-color);
}

.who-text-content {
    padding-left: 20px;
}

.who-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.heading-underline-left {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    /* Theme accent color */
    margin-bottom: 30px;
    border-radius: 2px;
}

.who-subtitle {
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
}

.who-desc {
    color: #cbd5e1;
    margin-bottom: 35px;
}

.btn-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: var(--white) !important;
    padding: 14px 26px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: var(--shadow-cta);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 15px;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
}

.btn-theme::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
    border-radius: var(--radius-btn);
}

.btn-theme:hover {
    color: var(--accent-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 166, 110, 0.4);
}

.btn-theme:hover::before {
    width: 100%;
}


.section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-padding {
    padding-left: max(24px, calc(100px + env(safe-area-inset-left, 0px)));
    padding-right: max(24px, calc(100px + env(safe-area-inset-right, 0px)));
}



.feature-item:hover p {
    color: #fff;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: calc(30px + env(safe-area-inset-bottom, 0px));
    right: calc(24px + env(safe-area-inset-right, 0px));
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

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

.back-to-top:hover {
    background-color: var(--accent-hover);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 768px) {
    .back-to-top {
        bottom: calc(20px + env(safe-area-inset-bottom, 0px));
        right: calc(16px + env(safe-area-inset-right, 0px));
    }
}

/* === Team Section === */

.team-card {
    text-align: center;
    cursor: pointer;
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-img-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 25px;
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 1;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background-color: #1a1a1a;
    border: 4px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.08);
    border-color: var(--title-color);
    box-shadow: 0 15px 30px rgba(197, 166, 110, 0.2);
}

.team-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    color: var(--white);
    transition: color 0.3s ease;
}

.team-card:hover .team-info h3 {
    color: var(--title-color);
    /* Turns gold rapidly */
}

.team-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #cbd5e1;
    transition: color 0.3s ease;
}

.team-card:hover .team-info p {
    color: var(--white);
}

/* === Services Section (Glassmorphism) === */
.services-segment {
    position: relative;
    background-color: var(--light-bg);
    overflow: hidden;
}

.services-segment::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 40% at 80% 20%, rgba(197, 166, 110, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 166, 110, 0.15) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 0;
    animation: blob-pulse 8s infinite alternate;
}

@keyframes blob-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.relative-z {
    position: relative;
    z-index: 1;
}

.glass-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-card {
    padding: 30px;
    border-radius: 16px;
    height: 100%;
    /* Make them stretch to equal height in bootstrap cols */
    transition: all 0.4s ease;
}

.service-card.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--title-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-number {
    color: var(--success);
    /* Cyan color to match image */
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--title-color);
}

.service-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid var(--white);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.service-card:hover .read-more {
    color: var(--title-color);
    border-color: var(--title-color);
}

@media screen and (max-width: 900px) {
    .glass-container {
        padding: 40px 20px;
    }
}

/* === Our Journey Section (Premium Dark) === */
.journey-segment {
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Add a sleek ambient glow behind the timeline */
.journey-segment::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.journey-segment::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-pattern-faint);
    background-size: 72px 72px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.journey-segment > .inner-container {
    position: relative;
    z-index: 1;
}

.journey-left-box {
    position: sticky;
}

.heading-overline {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    /* Gold accent */
    margin-bottom: 25px;
    border-radius: 2px;
}

.journey-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0;
}


/* Premium Timeline Cards */
.year-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 35px 30px;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    height: 100%;
}

.year-item:hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(197, 166, 110, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(197, 166, 110, 0.05);
    z-index: 3;
}

.year-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.year-item:hover .year-title {
    color: var(--accent-color);
    /* Turns Gold on hover */
}

.year-underline {
    width: 0%;
    /* Animate to full width on hover */
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
    margin-bottom: 25px;
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.year-item:hover .year-underline {
    width: 100%;
}

.year-item::after {
    /* Fallback initial underline */
    content: '';
    display: block;
    position: absolute;
    top: 80px;
    left: 30px;
    width: 50px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.year-desc {
    color: #cbd5e1;
}

.section-name h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    display: block;
    line-height: 1.2;
    color: var(--title-color);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.section-name {
    margin-bottom: 50px;
    display: block;
}

.title-block {
    margin-top: 15px;
    max-width: 940px;
    font-size: 16px;
    line-height: 26px;
    display: block;
}

.counter {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 6px;
}

.counter-block h3 {
    font-size: 32px;
    font-weight: 600;
}

.counter-block p {
    margin-top: 6px;
}

.counter-item:not(:last-child) {
    border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.counter-section {
    position: relative;
    background-color: #06080e;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.72) 100%),
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(197, 166, 110, 0.09), transparent 58%),
        var(--bg-pattern-faint),
        url(../image/bg-counter.png);
    background-size: cover, cover, 64px 64px, cover;
    background-position: center, center, center, center;
    background-repeat: no-repeat, no-repeat, repeat, no-repeat;
}

.counter-section .container {
    position: relative;
    z-index: 1;
}

.about-hero {
    background-color: #0a0e14;
    background-image:
        linear-gradient(165deg, rgba(10, 14, 20, 0.82) 0%, rgba(10, 14, 20, 0.55) 40%, rgba(10, 14, 20, 0.88) 100%),
        radial-gradient(ellipse 75% 55% at 70% 22%, rgba(197, 166, 110, 0.11), transparent 55%),
        var(--bg-pattern-faint),
        url(../image/hero-inner-about.png);
    background-size: cover, cover, 72px 72px, cover;
    background-position: center, center, center, center;
    background-repeat: no-repeat, no-repeat, repeat, no-repeat;
    min-height: clamp(480px, 88dvh, 960px);
}

.service-hero {
    background-color: #0a0e14;
    background-image:
        linear-gradient(165deg, rgba(10, 14, 20, 0.82) 0%, rgba(10, 14, 20, 0.55) 45%, rgba(10, 14, 20, 0.9) 100%),
        radial-gradient(ellipse 65% 50% at 30% 70%, rgba(197, 166, 110, 0.1), transparent 58%),
        var(--bg-pattern-faint),
        url(../image/hero-inner-service.png);
    background-size: cover, cover, 72px 72px, cover;
    background-position: center, center, center, center;
    background-repeat: no-repeat, no-repeat, repeat, no-repeat;
    min-height: clamp(480px, 88dvh, 960px);
}

.contact-hero {
    background-color: #0a0e14;
    background-image:
        linear-gradient(165deg, rgba(10, 14, 20, 0.82) 0%, rgba(10, 14, 20, 0.55) 45%, rgba(10, 14, 20, 0.9) 100%),
        radial-gradient(ellipse 80% 45% at 50% 100%, rgba(197, 166, 110, 0.08), transparent 55%),
        var(--bg-pattern-faint),
        url(../image/hero-inner-contact.png);
    background-size: cover, cover, 72px 72px, cover;
    background-position: center, center, center, center;
    background-repeat: no-repeat, no-repeat, repeat, no-repeat;
    min-height: clamp(480px, 88dvh, 960px);
}

.connect-inner h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.connect-inner:not(:last-child) {
    margin-bottom: 20px;
}

.connect-inner a:hover {
    color: #C5A66E;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icone {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icone:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Scoped CodePen CSS */
#codepen-wrapper {
    --primary: var(--light-bg);
    --accent: var(--accent-color);
    --accent-light: var(--accent-hover);
    --text-primary: var(--white);
    --text-secondary: #cbd5e1;
    --surface: var(--primary-color);
    --surface-light: rgba(255, 255, 255, 0.05);

    font-family: "Noto Sans", sans-serif;
    background: var(--primary);
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
    padding-bottom: 2rem;
}

#codepen-wrapper * {
    box-sizing: border-box;
}

#codepen-wrapper .grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" /%3E%3C/svg%3E');
}

#codepen-wrapper .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

#codepen-wrapper .orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -200px;
}

#codepen-wrapper .orb-2 {
    width: 400px;
    height: 400px;
    background: var(--title-color);
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

#codepen-wrapper .cp-hero {
    padding: 8rem 4rem 8rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

#codepen-wrapper .cp-hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom, var(--white) 30%, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#codepen-wrapper .cp-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

#codepen-wrapper .contact-container {
    max-width: 1400px;
    margin: -4rem auto 0;
    padding: 0 4rem;
    position: relative;
    z-index: 20;
}

#codepen-wrapper .contact-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

#codepen-wrapper .info-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    position: sticky;
    top: 100px;
}

#codepen-wrapper .info-section {
    margin-bottom: 3rem;
}

#codepen-wrapper .info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

#codepen-wrapper .info-content {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.8;
}

#codepen-wrapper .info-content a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

#codepen-wrapper .info-content a:hover {
    color: var(--text-primary);
}

#codepen-wrapper .social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

#codepen-wrapper .social-link {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s;
    color: var(--text-secondary);
}

#codepen-wrapper .social-link:hover {
    background: rgba(197, 166, 110, 0.1);
    border-color: rgba(197, 166, 110, 0.3);
    transform: translateY(-2px);
    color: var(--text-primary);
}

#codepen-wrapper .social-link-whatsapp {
    color: #25d366;
}

#codepen-wrapper .social-link-whatsapp:hover {
    color: #1ebe57;
    border-color: rgba(37, 211, 102, 0.4);
}

#codepen-wrapper .form-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 4rem;
}

#codepen-wrapper .form-header {
    margin-bottom: 3rem;
}

#codepen-wrapper .form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

#codepen-wrapper .form-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

#codepen-wrapper .form-group {
    margin-bottom: 2rem;
}

#codepen-wrapper .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

#codepen-wrapper .required {
    color: var(--accent-light);
}

#codepen-wrapper .form-group input,
#codepen-wrapper .form-group select,
#codepen-wrapper .form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s;
}

#codepen-wrapper .form-group input:focus,
#codepen-wrapper .form-group select:focus,
#codepen-wrapper .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(197, 166, 110, 0.1);
}

#codepen-wrapper .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

#codepen-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

#codepen-wrapper .priority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.75rem;
}

#codepen-wrapper .priority-option {
    position: relative;
}

#codepen-wrapper .priority-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

#codepen-wrapper .priority-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    color: var(--text-primary);
}

#codepen-wrapper .priority-option input:checked+.priority-label {
    background: rgba(197, 166, 110, 0.15);
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

#codepen-wrapper .priority-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

#codepen-wrapper .dot-low {
    background: #10B981;
}

#codepen-wrapper .dot-medium {
    background: #F59E0B;
}

#codepen-wrapper .dot-high {
    background: #EF4444;
}

#codepen-wrapper .file-zone {
    margin-top: 0.75rem;
    position: relative;
    padding: 3rem 2rem;
    background: rgba(26, 26, 26, 0.6);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
}

#codepen-wrapper .file-zone input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

#codepen-wrapper .file-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.5;
}

#codepen-wrapper .submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-btn);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-cta);
}

#codepen-wrapper .submit-btn:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

#codepen-wrapper .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 6rem;
    padding-bottom: 4rem;
}

#codepen-wrapper .stat-card {
    text-align: center;
    padding: 2rem;
}


#codepen-wrapper .alert {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
}

#codepen-wrapper .alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

#codepen-wrapper .alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.thankyou-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: var(--light-bg, #121212);
    color: var(--white, #ffffff);
    text-align: center;
    padding: 20px;
}

.thankyou-text {
    font-size: 4rem;
    font-weight: 700;
    color: var(--title-color, #C5A66E);
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-in-out;
}

.thankyou-logo img {
    width: 200px;
    max-width: 100%;
    height: auto;
    animation: fadeInUp 1s ease-in-out;
}

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

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-segment::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-segment {
    position: relative;
}

/* Inner page heroes: image already has gradient — lighter overlay for readability */
.hero-segment.about-hero::before,
.hero-segment.service-hero::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-segment .hero-inner {
    position: relative;
    z-index: 1;
}

/* === What We Offer — Intro Section === */
.offer-intro-segment {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.offer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(197, 166, 110, 0.10) 0%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    animation: blob-pulse 10s infinite alternate;
}

.offer-inner-wrap {
    position: relative;
    z-index: 1;
}

/* Centered Heading */
.offer-heading-block {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 70px;
}

.offer-tagline {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 18px;
}

.offer-heading-block h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white) !important;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.offer-highlight {
    color: var(--accent-color) !important;
    font-style: italic;
}

.offer-center-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    border-radius: 2px;
    margin: 0 auto 24px;
}

.offer-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: #94a3b8;
    max-width: 580px;
    margin: 0 auto;
}

/* Feature Highlights Row */
.offer-features {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 44px 40px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.offer-feat-item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0 30px;
    transition: transform 0.3s ease;
}

.offer-feat-item:first-child {
    padding-left: 0;
}

.offer-feat-item:last-child {
    padding-right: 0;
}

.offer-feat-item:hover {
    transform: translateY(-4px);
}

.offer-feat-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    background: rgba(197, 166, 110, 0.12);
    border: 1px solid rgba(197, 166, 110, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.offer-feat-item:hover .offer-feat-icon {
    background: rgba(197, 166, 110, 0.22);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(197, 166, 110, 0.2);
}

.offer-feat-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.offer-feat-item:hover .offer-feat-text h4 {
    color: var(--accent-color) !important;
}

.offer-feat-text p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0;
}

.offer-feat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    align-self: stretch;
    flex-shrink: 0;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .offer-features {
        flex-direction: column;
        gap: 30px;
        padding: 32px 26px;
    }

    .offer-feat-item {
        padding: 0;
    }

    .offer-feat-divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }
}

@media screen and (max-width: 768px) {
    .offer-intro-segment.section-padding {
        padding-left: 20px;
        padding-right: 20px;
    }

    .offer-heading-block {
        margin-bottom: 44px;
    }
}

/* === Services Grid Section === */
.srv-grid-segment {
    background-color: var(--light-bg);
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.srv-grid-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.srv-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(197, 166, 110, 0.35);
}

.srv-grid-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.srv-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.srv-grid-card:hover .srv-grid-img img {
    transform: scale(1.06);
}

.srv-grid-body {
    padding: 30px 28px 34px;
    flex: 1;
}

.srv-grid-num {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.srv-grid-body h3 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.srv-grid-card:hover .srv-grid-body h3 {
    color: var(--accent-color) !important;
}

.srv-grid-underline {
    width: 42px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
    margin-bottom: 18px;
    transition: width 0.4s ease;
}

.srv-grid-card:hover .srv-grid-underline {
    width: 80px;
}

.srv-grid-body p {
    font-size: 0.93rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0;
}

/* Responsive – tablet */
@media screen and (max-width: 992px) {
    .srv-grid {
        gap: 22px;
    }

    .srv-grid-img {
        height: 200px;
    }
}

/* Responsive – mobile */
@media screen and (max-width: 640px) {
    .srv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .srv-grid-img {
        height: 220px;
    }

    .srv-grid-body {
        padding: 22px 20px 26px;
    }

    .srv-grid-body h3 {
        font-size: 1.3rem;
    }
}

/* Responsive – section padding override for mobile */
@media screen and (max-width: 768px) {
    .srv-grid-segment.section-padding {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* === CTA Close + Process Section === */
.cta-close-segment {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-glow-left {
    position: absolute;
    top: 10%;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 166, 110, 0.09) 0%, transparent 70%);
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

.cta-glow-right {
    position: absolute;
    bottom: 5%;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

.cta-inner-wrap {
    position: relative;
    z-index: 1;
}

/* Process Block */
.cta-process-block {
    margin-bottom: 80px;
}

.cta-process-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.process-num {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(197, 166, 110, 0.1);
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.process-step:hover .process-num {
    background: var(--accent-color);
    color: var(--primary-color);
    box-shadow: 0 0 25px rgba(197, 166, 110, 0.4);
    transform: scale(1.1);
}

.process-connector {
    position: absolute;
    top: 31px;
    left: calc(50% + 31px);
    width: calc(100% - 62px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), rgba(197,166,110,0.2));
    z-index: 1;
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.process-step:hover h4 {
    color: var(--accent-color) !important;
}

.process-step p {
    font-size: 0.87rem;
    line-height: 1.65;
    color: #94a3b8;
}

/* CTA Bottom Block */
.cta-bottom-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 56px 60px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

.cta-bottom-block::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(197, 166, 110, 0.1) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.cta-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    min-height: 5.5rem;
}

.cta-bottom-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white) !important;
    margin-bottom: 12px;
    max-width: 560px;
}

.cta-bottom-text p {
    font-size: 0.97rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 500px;
    margin: 0;
}

.cta-btn-large {
    white-space: nowrap;
    padding: 16px 32px !important;
    font-size: 1rem !important;
    border-radius: var(--radius-btn) !important;
    box-shadow: var(--shadow-cta) !important;
}

.cta-btn-large:hover {
    box-shadow: var(--shadow-cta-hover) !important;
}

/* Responsive */
@media screen and (max-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }

    .process-connector {
        display: none;
    }
}

@media screen and (max-width: 700px) {
    .cta-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .cta-bottom-block {
        padding: 36px 24px;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 36px 10px;
    }
}

@media screen and (max-width: 480px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media screen and (max-width: 768px) {
    .cta-close-segment.section-padding {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* === Professional layout & polish === */
.inner-container {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.home-cta-strip {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.home-cta-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 70% 100%, rgba(197, 166, 110, 0.08), transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.home-cta-strip .inner-container {
    position: relative;
    z-index: 1;
}

.home-cta-strip .cta-bottom-block {
    margin: 0;
}

/* Hero / background imagery: crisp cover, no banding on scroll */
.slide-bg-1,
.slide-bg-2,
.about-hero,
.service-hero,
.contact-hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.hero-inner--page {
    min-height: min(78vh, 820px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-segment .hero-text h1 {
    color: var(--white);
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-segment .hero-text .hero-subtext {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

/* Buttons: focus rings & touch targets */
.btn-theme,
.btn-theme-outline,
.cta-button,
.read-more,
.back-to-top,
.whatsapp-float,
#codepen-wrapper .submit-btn {
    min-height: 44px;
    box-sizing: border-box;
}

.btn-theme:focus-visible,
.btn-theme-outline:focus-visible,
.cta-button:focus-visible,
.read-more:focus-visible,
.back-to-top:focus-visible,
.whatsapp-float:focus-visible,
#codepen-wrapper .submit-btn:focus-visible,
.nav-toggle-btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 3px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
    font-weight: 600;
}

.service-card .read-more {
    margin-top: 4px;
}

/* Content images */
.who-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.who-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: middle;
}

.counter-block h3,
.counter-block p {
    color: var(--white);
}

.counter-block p {
    opacity: 0.88;
}

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

.map-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 100px 40px;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
    border-radius: 16px;
    min-height: 420px;
}

@media screen and (max-width: 1024px) {
    .map-container {
        padding-left: 35px;
        padding-right: 35px;
    }
}

@media screen and (max-width: 768px) {
    .map-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .map-container iframe {
        min-height: 320px;
    }
}

#codepen-wrapper .alert {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

#codepen-wrapper .alert-danger {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
}

#codepen-wrapper .alert-success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #a7f3d0;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .blob-bg,
    .offer-glow,
    .cta-glow-left,
    .cta-glow-right {
        animation: none;
    }
}

/* === FAQ (homepage local SEO, visible content + FAQPage schema) === */
.faq-segment {
    position: relative;
    background: var(--light-bg);
    overflow: hidden;
}

.faq-segment::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 45% at 20% 30%, rgba(197, 166, 110, 0.06), transparent 55%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.faq-segment .inner-container {
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    margin-bottom: 14px;
    background: rgba(26, 26, 26, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(197, 166, 110, 0.25);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.faq-item[open] {
    border-color: rgba(197, 166, 110, 0.35);
}

.faq-summary {
    padding: 20px 52px 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    font-family: var(--font-heading);
    color: var(--white) !important;
    list-style: none;
    position: relative;
}

.faq-summary::-webkit-details-marker,
.faq-summary::marker {
    display: none;
}

.faq-summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    line-height: 1;
    color: var(--accent-color);
    font-weight: 400;
    border: 1px solid rgba(197, 166, 110, 0.4);
    border-radius: 8px;
    background: rgba(197, 166, 110, 0.08);
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item[open] .faq-summary::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
    background: rgba(197, 166, 110, 0.18);
}

.faq-summary:hover {
    color: var(--accent-color) !important;
}

.faq-answer {
    padding: 0 22px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-answer p {
    margin: 14px 0 0;
    color: #94a3b8;
    line-height: 1.7;
    font-size: 0.96rem;
}

.faq-segment #faq-heading {
    color: var(--title-color);
}

.footer-legal-line {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.footer-sitemap-link {
    color: #64748b !important;
    text-decoration: none;
    font-size: 13px;
}

.footer-sitemap-link:hover {
    color: var(--accent-color) !important;
}

.footer-dot {
    color: #475569;
    font-size: 13px;
}

@media screen and (max-width: 480px) {
    .footer-legal-line {
        flex-direction: column;
    }

    .footer-dot {
        display: none;
    }
}

/* === Portfolio (homepage) — card system aligned with services === */
.portfolio-segment {
    position: relative;
    background: var(--light-bg);
    overflow: hidden;
}

.portfolio-segment::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(197, 166, 110, 0.07), transparent 55%),
        var(--bg-pattern-faint);
    background-size: cover, 72px 72px;
    background-repeat: no-repeat, repeat;
    pointer-events: none;
    z-index: 0;
}

.portfolio-segment .inner-container {
    position: relative;
    z-index: 1;
}

.portfolio-intro {
    max-width: 42rem;
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.portfolio-grid {
    margin-top: var(--space-2);
}

.portfolio-card {
    height: 100%;
    padding: var(--space-4);
    border-radius: var(--radius-card);
    background: rgba(26, 26, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    border-color: rgba(197, 166, 110, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.portfolio-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white) !important;
    margin: var(--space-2) 0 var(--space-2);
    line-height: 1.35;
}

.portfolio-card > p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 0 var(--space-3);
}

.portfolio-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(197, 166, 110, 0.12);
    border: 1px solid rgba(197, 166, 110, 0.25);
}

.portfolio-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1);
}

.portfolio-meta li {
    font-size: 0.8rem;
    color: #cbd5e1;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.portfolio-footnote {
    text-align: center;
    margin-top: var(--space-5);
    color: #64748b;
    font-size: 0.95rem;
}

.portfolio-footnote a {
    color: var(--accent-color) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.portfolio-footnote a:hover {
    color: var(--accent-hover) !important;
}