/* ============================================================
   HAPPY NAN – Main Stylesheet
   Colors from Logo: Crimson Red, Rose, Leaf Green, Cream
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
    --red-deep:   #9B0026;
    --red-main:   #C0073D;
    --red-bright: #E0193A;
    --red-light:  #F94060;
    --red-pale:   #FFE8ED;
    --green:      #5A9E2F;
    --green-light:#78C840;
    --cream:      #FFF8F0;
    --warm-white: #FFFBF7;
    --dark:       #1A0A0E;
    --dark-mid:   #2D1219;
    --text:       #3D1C22;
    --text-light: #7A4A54;
    --border:     #F0D5DB;
    --shadow-sm:  0 2px 12px rgba(192,7,61,0.10);
    --shadow-md:  0 8px 32px rgba(192,7,61,0.18);
    --shadow-lg:  0 20px 60px rgba(192,7,61,0.22);
    --radius-sm:  10px;
    --radius-md:  18px;
    --radius-lg:  28px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', sans-serif;
    background: var(--warm-white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--red-main); border-radius: 99px; }

/* ---------- REUSABLE UTILITIES ---------- */
.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}
.section {
    padding: 96px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-tag {
    display: inline-block;
    background: var(--red-pale);
    color: var(--red-main);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 99px;
    margin-bottom: 14px;
    border: 1px solid rgba(192,7,61,0.15);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-sub {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--red-main), var(--red-bright));
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 99px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(192,7,61,0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
    opacity: 0;
    transition: var(--transition);
    border-radius: inherit;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(192,7,61,0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary > :not(::before) { position: relative; z-index: 1; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 99px;
    border: 2px solid rgba(255,255,255,0.7);
    letter-spacing: 0.02em;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--red-main);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 99px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 99px;
    border: 2px solid rgba(255,255,255,0.8);
    transition: var(--transition);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

/* ============================================================
   TOP SOCIAL BAR
   ============================================================ */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background: linear-gradient(90deg, var(--dark) 0%, var(--dark-mid) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    height: 38px;
    display: flex;
    align-items: center;
}
.top-bar-inner {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.top-bar-msg {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.top-bar-follow {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-right: 4px;
}
.top-social-btn {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    flex-shrink: 0;
}
.top-social-btn svg {
    width: 13px;
    height: 13px;
    display: block;
}
.top-social-btn:hover { transform: translateY(-1px); color: #fff; }
.top-social-fb:hover { background: #1877F2; border-color: #1877F2; }
.top-social-tt:hover { background: #000; border-color: #333; }
.top-social-ig:hover { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-color: transparent; }
.top-social-wa:hover { background: #25D366; border-color: #25D366; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 38px;  /* sits below top-bar */
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 250, 247, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 24px rgba(192,7,61,0.12);
}
.nav-container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.nav-logo-img {
    height: 120px;
    width: auto;
    transition: var(--transition);
}
.navbar.scrolled .nav-logo-img {
    height: 64px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}
.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 99px;
    color: rgba(255,255,255,0.9);
    transition: var(--transition);
    position: relative;
}
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link:hover, .nav-link.active {
    color: var(--red-main);
    background: var(--red-pale);
}
.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active {
    color: var(--red-main);
    background: rgba(255,255,255,0.9);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red-main);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 99px;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(192,7,61,0.4);
}
.nav-cta:hover { background: var(--red-bright); transform: translateY(-1px); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 99px;
    transition: var(--transition);
    display: block;
}
.navbar.scrolled .hamburger span { background: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 158px 5% 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        110deg,
        rgba(26, 10, 14, 0.84) 0%,
        rgba(155, 0, 38, 0.72) 45%,
        rgba(192, 7, 61, 0.45) 70%,
        rgba(192, 7, 61, 0.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    animation: fadeInUp 0.9s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.95);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 99px;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}
.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(120, 200, 64, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(120, 200, 64, 0); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero-title-accent {
    background: linear-gradient(120deg, #FF8099, #FFB3C0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    font-size: 0.8em;
}
.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    margin-bottom: 36px;
    line-height: 1.75;
    font-weight: 300;
}
.hero-br { display: inline; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 52px;
    animation: fadeInUp 0.9s 0.2s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    animation: fadeInUp 0.9s 0.35s both;
}
.stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.stat span {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
}

/* Hero floating image cards */
.hero-visuals {
    position: absolute;
    right: 5%;
    bottom: 80px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInRight 1s 0.4s both;
}
.hero-card {
    width: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    position: relative;
    border: 3px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    cursor: pointer;
}
.hero-card:hover { transform: scale(1.04) translateY(-4px); }
.hero-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    object-position: top center;
}
.hero-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 8px 10px 6px;
    letter-spacing: 0.02em;
}
.hero-card-1 { transform: rotate(-3deg); }
.hero-card-2 { transform: rotate(2deg); margin-left: 24px; }
.hero-card-3 { transform: rotate(-2deg); }

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 2;
    animation: fadeIn 1.5s 1s both;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
    animation: scrollPulse 2s infinite;
}
.hero-scroll span {
    color: rgba(255,255,255,0.55);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(1.4); opacity: 1; }
}

/* ============================================================
   VALUES STRIP
   ============================================================ */
.values-strip {
    background: linear-gradient(135deg, var(--red-deep), var(--red-main));
    padding: 22px 0;
    overflow: hidden;
}
.values-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.value-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 99px;
    letter-spacing: 0.02em;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}
.value-pill:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-2px);
}
.value-icon { font-size: 1rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--cream); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    opacity: 0;
    animation: fadeInUp 0.7s var(--delay, 0s) both;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(192,7,61,0.2);
}
.service-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.7s ease;
}
.service-card:hover .service-img { transform: scale(1.07); }
.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,10,14,0.6) 0%, transparent 60%);
}
.service-icon {
    position: absolute;
    bottom: 12px;
    right: 14px;
    font-size: 2rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.service-body { padding: 24px 26px 28px; }
.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.service-desc {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.6;
    margin-bottom: 18px;
}
.service-link {
    color: var(--red-main);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.service-link:hover { gap: 10px; color: var(--red-bright); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--warm-white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 560px;
}
.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    height: 52%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--warm-white);
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.about-badge-float {
    position: absolute;
    top: 50%;
    right: -24px;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--red-main), var(--red-deep));
    color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--warm-white);
    z-index: 3;
}
.about-badge-float strong {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}
.about-badge-float span {
    font-size: 0.62rem;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.03em;
}

.about-content { padding-left: 20px; }
.about-content .section-title { text-align: left; }
.about-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 18px;
}
.about-text strong { color: var(--dark); }
.about-why { margin: 28px 0 34px; }
.about-why h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--dark);
}
.why-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}
.check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
    background: linear-gradient(160deg, var(--dark) 0%, var(--dark-mid) 100%);
}
.how-section .section-tag {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.15);
}
.how-section .section-title { color: #fff; }
.how-section .section-sub { color: rgba(255,255,255,0.6); }

.steps-track {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.step-item {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 10px;
    opacity: 0;
    animation: fadeInUp 0.6s var(--delay, 0s) both;
}
.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-main), var(--red-bright));
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(192,7,61,0.5);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.step-item:hover .step-num { transform: scale(1.12); }
.step-connector {
    position: absolute;
    top: 36px;
    left: calc(50% + 36px);
    right: calc(-50% + 36px);
    height: 2px;
    background: linear-gradient(to right, var(--red-main), rgba(192,7,61,0.2));
    display: none;
}
.step-connector.visible { display: block; }
.step-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.step-body p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--cream); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 16px;
}
.gallery-grid .gallery-item:nth-child(1),
.gallery-grid .gallery-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(155,0,38,0.85), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--red-main) 0%, var(--red-deep) 50%, var(--dark-mid) 100%);
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 16px;
}
.cta-banner p {
    color: rgba(255,255,255,0.78);
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--cream); }

/* Two-column layout: details + image */
.contact-two-col {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}
.contact-info .section-title { text-align: left; }
.contact-intro {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 28px;
}
/* 2×2 card grid on the left */
.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}
.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    transition: var(--transition);
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(192,7,61,0.2);
}
.contact-card-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
}
.contact-card strong {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}
.contact-card span,
.contact-card a {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
    word-break: break-word;
}
.contact-card a:hover { color: var(--red-main); }

/* Email card highlighted */
.contact-card-highlight {
    background: linear-gradient(145deg, var(--red-pale), #fff);
    border-color: rgba(192,7,61,0.25);
    gap: 4px;
}
.contact-card-highlight a {
    color: var(--red-main) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    word-break: break-all;
    line-height: 1.4;
}
.contact-card-highlight a + a {
    padding-top: 2px;
    border-top: 1px dashed rgba(192,7,61,0.15);
}
.contact-cta-btn { font-size: 1rem; }

/* WhatsApp card */
.contact-card-whatsapp {
    border-left: 3px solid #25D366;
    background: linear-gradient(145deg, #f0fff4, #fff);
}
.contact-card-whatsapp a {
    color: #128C7E;
    font-weight: 700;
    font-size: 0.95rem;
}
.contact-card-whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 4px 20px rgba(37,211,102,0.18);
}

/* Image side */
.contact-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.contact-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.7s ease;
}
.contact-image-wrap:hover .contact-image { transform: scale(1.03); }
.contact-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(192,7,61,0.15);
    color: var(--dark);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 99px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Shared detail-icon */
.detail-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-sm);
    background: var(--red-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    padding: 70px 0 0;
    color: rgba(255,255,255,0.7);
}
.footer-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 16px 0 22px;
    max-width: 280px;
}
.footer-logo { height: 120px; width: auto; margin-bottom: 4px; }
.footer-social {
    display: flex;
    gap: 10px;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.social-btn svg {
    width: 17px;
    height: 17px;
    display: block;
}
.social-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}
.social-fb:hover { background: #1877F2; border-color: #1877F2; box-shadow: 0 4px 16px rgba(24,119,242,0.4); }
.social-tt:hover { background: #111; border-color: #333; box-shadow: 0 4px 16px rgba(0,0,0,0.5); }
.social-ig:hover { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-color: transparent; box-shadow: 0 4px 16px rgba(214,36,159,0.4); }
.social-wa:hover { background: #25D366; border-color: #25D366; box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
.footer-links h4, .footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--red-light); padding-left: 4px; }
.footer-contact p {
    font-size: 0.88rem;
    margin-bottom: 10px;
    line-height: 1.5;
}
.footer-contact a:hover { color: var(--red-light); }

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Scroll-triggered reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .about-grid { grid-template-columns: 1fr; gap: 56px; }
    .about-images { height: 380px; }
    .about-badge-float { right: 16px; }
    .about-content { padding-left: 0; }
    .contact-two-col { grid-template-columns: 1fr; gap: 48px; }
    .contact-image { height: 380px; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 36px; }
    .hero-visuals { display: none; }
}
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .gallery-grid .gallery-item:nth-child(1),
    .gallery-grid .gallery-item:nth-child(5) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .steps-track { flex-direction: column; align-items: center; }
    .step-connector { display: none; }
}
@media (max-width: 768px) {
    .top-bar-msg, .top-bar-follow { display: none; }
    .top-bar-inner { justify-content: flex-end; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .nav-logo-img { height: 64px; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26,10,14,0.97);
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 1099;
    }
    .nav-links.open .nav-link {
        font-size: 1.5rem;
        color: #fff;
    }
    .services-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
    .hero-br { display: none; }
    .hero-stats { gap: 18px; }
    .contact-cards { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
    .section { padding: 64px 0; }
    .hero { padding: 138px 5% 60px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions a { text-align: center; justify-content: center; }
}
