:root {
    --navy: #1F1F1F;
    --teal: #E6007E;
    --gold: #E6007E;
    --gold-light: #FF4DA6;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --gray: #4F4F4F;
    --light-gray: #EEEEEE;
    --dark: #1F1F1F;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

/* ─── NAVBAR ─── */
#mainNav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
    padding: 18px 0;
}

#mainNav.scrolled {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
}

#mainNav.scrolled .navbar-brand {
    color: var(--dark) !important;
}

.brand-logo {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--navy);
    font-family: 'Playfair Display', serif;
    flex-shrink: 0;
}

.brand-text span {
    color: var(--gold);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px !important;
    position: relative;
    transition: color 0.3s;
}

#mainNav.scrolled .navbar-nav .nav-link {
    color: rgba(31, 31, 31, 0.88) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--teal) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar-toggler {
    border-color: rgba(31, 31, 31, 0.35);
    transition: border-color 0.3s;
}

#mainNav:not(.scrolled) .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    filter: invert(1);
    transition: filter 0.3s;
}

#mainNav.scrolled .navbar-toggler-icon {
    filter: invert(0);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--navy);
        margin-top: 12px;
        border-radius: 12px;
        padding: 10px 6px 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .navbar-nav .nav-link {
        padding: 10px 18px !important;
        border-radius: 8px;
        margin: 2px 0;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.07);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }
}

/* ─── HERO ─── */
#home {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, rgba(31, 31, 31, 0.95) 40%, var(--teal) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: repeating-linear-gradient(45deg, var(--teal) 0, var(--teal) 1px, transparent 0, transparent 50%);
    background-size: 30px 30px;
}

.hero-glow {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 0, 126, 0.22) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 0, 126, 0.12);
    border: 1px solid rgba(230, 0, 126, 0.35);
    color: var(--teal);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease both;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 22px;
    animation: fadeInUp 0.9s ease 0.1s both;
}

.hero-title span {
    color: var(--teal);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 2vw, 1.18rem);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-btns {
    animation: fadeInUp 1.1s ease 0.3s both;
}

.btn-gold {
    background: linear-gradient(135deg, var(--teal), var(--gold-light));
    color: var(--white);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 4px;
    border: none;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(230, 0, 126, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 0, 126, 0.5);
    color: var(--white);
    background: #C4006B;
}

.btn-outline-white {
    background: transparent;
    border: 1.5px solid var(--teal);
    color: var(--teal);
    padding: 13px 30px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-outline-white:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 1.2s ease 0.4s both;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-image-side {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-elevator-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
}

.hero-elevator-visual {
    width: 180px;
    height: 280px;
    margin: 0 auto 20px;
    background: linear-gradient(180deg, rgba(230, 0, 126, 0.18), rgba(31, 31, 31, 0.16));
    border-radius: 90px 90px 20px 20px;
    border: 2px solid rgba(230, 0, 126, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-elevator-visual::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100px;
    background: linear-gradient(var(--gold), transparent);
    border-radius: 2px;
}

.hero-iso-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-decoration: none;
}

.scroll-indicator i {
    font-size: 1.2rem;
}

/* ─── SECTION STYLES ─── */
section {
    padding: 90px 0;
}

.section-label {
    display: inline-block;
    color: var(--teal);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--teal);
}

.section-desc {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 600px;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--gold-light));
    border-radius: 2px;
    margin: 16px 0 24px;
}

/* ─── CLIENT LOGOS TICKER ─── */
.clients-bar {
    background: var(--navy);
    padding: 28px 0;
    overflow: hidden;
    position: relative;
}

.clients-bar::before,
.clients-bar::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.clients-bar::before {
    left: 0;
    background: linear-gradient(90deg, var(--navy), transparent);
}

.clients-bar::after {
    right: 0;
    background: linear-gradient(-90deg, var(--navy), transparent);
}

.clients-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: ticker 70s linear infinite;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 26px;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    transition: all 0.3s;
}

.client-logo-item i {
    color: var(--teal);
    font-size: 1.1rem;
}

.client-logo-item:hover {
    background: rgba(230, 0, 126, 0.12);
    border-color: rgba(230, 0, 126, 0.35);
    color: var(--white);
}

/* ─── ABOUT ─── */
#about {
    background: var(--off-white);
}

.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--dark), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
}

.about-cert-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--teal), var(--gold-light));
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(230, 0, 126, 0.4);
}

.about-cert-badge .cert-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.about-cert-badge .cert-sub {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
}

.about-feature {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--light-gray);
}

.about-feature:last-child {
    border-bottom: none;
}

.about-feature-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: rgba(230, 0, 126, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.2rem;
}

.about-feature h6 {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--navy);
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

/* ─── SERVICES ─── */
#services {
    background: var(--white);
}

.service-card {
    background: var(--white);
    border: 1.5px solid var(--light-gray);
    border-radius: 14px;
    padding: 32px 26px;
    height: 100%;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.service-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(31, 31, 31, 0.12);
    transform: translateY(-6px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(230, 0, 126, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--teal);
    margin-bottom: 20px;
}

.service-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.18rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* ─── CLIENTS PAGE ─── */
#clients-hero {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--dark) 0%, rgba(31, 31, 31, 0.95) 45%, var(--teal) 100%);
    position: relative;
    overflow: hidden;
}

.clients-section {
    padding-top: 70px;
}

.client-card {
    background: var(--white);
    border: 1px solid rgba(31, 31, 31, 0.08);
    border-radius: 22px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(31, 31, 31, 0.12);
}

.client-logo-badge {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--teal), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.55rem;
    box-shadow: 0 12px 28px rgba(230, 0, 126, 0.25);
}

.client-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.client-location {
    color: var(--gray);
    font-size: 0.94rem;
    line-height: 1.7;
}

#clients-hero .hero-title {
    color: var(--white);
}

#clients-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.78);
}

#clients-hero .hero-btns .btn-outline-white {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
}

#clients-hero .hero-btns .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.12);
}

.builder-section {
    background: rgba(230, 0, 126, 0.05);
    padding: 70px 0;
}

.builder-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(230, 0, 126, 0.12);
    border-radius: 24px;
    padding: 32px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.builder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(31, 31, 31, 0.1);
}

.builder-logo {
    width: 130px;
    height: 130px;
    margin: 0 auto 18px;
    border-radius: 26px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(31, 31, 31, 0.08);
    box-shadow: 0 12px 25px rgba(31, 31, 31, 0.08);
    overflow: hidden;
}

.builder-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    background: transparent;
}

.builder-card h5 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-size: 1.05rem;
    margin: 0;
    letter-spacing: 0.02em;
}

.builder-card h5::after {
    content: '';
    display: block;
    width: 42px;
    height: 3px;
    margin: 14px auto 0;
    background: linear-gradient(90deg, var(--teal), var(--gold-light));
    border-radius: 2px;
}

/* ─── PRODUCTS ─── */
#products {
    background: var(--off-white);
}

#products .section-title {
    color: var(--dark);
}

#products .section-desc {
    color: var(--gray);
}

#products .gold-divider {
    background: linear-gradient(90deg, var(--teal), var(--gold-light));
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(31, 31, 31, 0.08);
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.4s ease;
    background: linear-gradient(135deg, var(--dark), var(--teal));
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.85);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(31, 31, 31, 0.92) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay div {
    width: auto;
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
}

.product-name {
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.product-badge {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-card:hover .product-card-placeholder,
.product-card:hover .product-card-img {
    transform: scale(1.06);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-name {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
}

.product-badge {
    background: var(--teal);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    display: inline-block;
}

.product-zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-zoom {
    opacity: 1;
}

/* Product Modal */
.product-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal-overlay.active {
    display: flex;
}

.product-modal-box {
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.98), rgba(230, 0, 126, 0.95));
    border-radius: 18px;
    max-width: 540px;
    width: 100%;
    overflow: hidden;
    position: relative;
    animation: modalIn 0.35s ease;
    color: var(--white);
}

.product-modal-img {
    width: 100%;
    height: 300px;
    position: relative;
    background: linear-gradient(135deg, rgba(31, 31, 31, 0.24), rgba(230, 0, 126, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-modal-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 31, 31, 0.15), rgba(31, 31, 31, 0.65));
    pointer-events: none;
}

.product-modal-body {
    padding: 28px;
    background: rgba(0, 0, 0, 0.12);
}

.product-modal-body .product-badge {
    display: inline-block;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 6px 12px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

.product-modal-body h4 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    margin-bottom: 12px;
}

.product-modal-body p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
}

.modal-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* ─── PORTFOLIO ─── */
#portfolio {
    background: var(--off-white);
}

.portfolio-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s;
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--dark), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    overflow: hidden;
    position: relative;
}

.portfolio-img-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(31, 31, 31, 0.9));
    padding: 30px 18px 18px;
}

.portfolio-caption h6 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    margin: 0;
    font-size: 0.98rem;
}

.portfolio-caption small {
    color: var(--gold-light);
    font-size: 0.78rem;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    border: 1.5px solid var(--light-gray);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    position: relative;
    transition: all 0.35s;
}

.testimonial-card:hover {
    border-color: var(--teal);
    box-shadow: 0 10px 40px rgba(230, 0, 126, 0.1);
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--teal);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--gray);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 22px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.82rem;
    color: var(--gray);
}

/* ─── WHY US ─── */
#why-us {
    background: linear-gradient(135deg, var(--dark) 0%, rgba(31, 31, 31, 0.95) 50%, var(--teal) 100%);
    padding: 90px 0;
}

#why-us .section-title {
    color: var(--white);
}

.why-card {
    text-align: center;
    padding: 30px 20px;
}

.why-icon-wrap {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(230, 0, 126, 0.35);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.8rem;
    color: var(--teal);
    transition: all 0.3s;
}

.why-card:hover .why-icon-wrap {
    background: rgba(230, 0, 126, 0.15);
    border-color: var(--teal);
    transform: translateY(-4px);
}

.why-card h5 {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ─── CONTACT ─── */
#contact {
    background: var(--off-white);
}

.contact-info-card {
    background: linear-gradient(135deg, var(--dark), rgba(31, 31, 31, 0.95));
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    color: var(--white);
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: rgba(230, 0, 126, 0.15);
    border: 1px solid rgba(230, 0, 126, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1rem;
}

.contact-info-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.contact-info-value {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.contact-form-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-form-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 26px;
}

.form-control {
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.92rem;
    transition: border-color 0.3s;
    background: var(--off-white);
}

.form-control:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(230, 0, 126, 0.12);
    background: var(--white);
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

/* ─── FOOTER ─── */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand span {
    color: var(--gold);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    color: var(--white);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid rgba(230, 0, 126, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--gold);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom span {
    color: var(--gold);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── SCROLL TO TOP ─── */
#scrollTopBtn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal), var(--gold-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(230, 0, 126, 0.45);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.25s;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollTopBtn.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

#scrollTopBtn:hover {
    box-shadow: 0 10px 32px rgba(230, 0, 126, 0.65);
    transform: translateY(-3px) scale(1.05);
}

#scrollTopBtn:active {
    transform: translateY(0) scale(0.96);
}

#floatingContactActions {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.floating-contact-btn {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
}

.floating-contact-btn.call {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.floating-contact-btn.call i {
    transform: rotate(90deg);
}

.floating-contact-btn.whatsapp {
    background: #25D366;
}

/* ─── GALLERY FILTERS ─── */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}

.gf-btn {
    background: var(--off-white);
    border: 1.5px solid var(--light-gray);
    color: var(--gray);
    padding: 8px 22px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'DM Sans', sans-serif;
}

.gf-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.gf-btn.active {
    background: linear-gradient(135deg, var(--teal), var(--gold-light));
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(230, 0, 126, 0.3);
}

/* ─── GALLERY GRID ─── */
.gallery-item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--light-gray);
    min-height: 260px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.gallery-item-meta {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 16px 18px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
    color: var(--white);
}

.gallery-item-category {
    display: inline-block;
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(230, 0, 126, 0.9);
}

.gallery-item-meta .gallery-item-label {
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 31, 31, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    flex-direction: column;
    gap: 8px;
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-hover-overlay i {
    font-size: 1.6rem;
    color: var(--gold-light);
}

.gallery-hover-overlay span {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.gallery-item.hidden {
    display: none;
}

/* ─── LIGHTBOX ─── */
#lightboxOverlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: lbFadeIn 0.3s ease;
}

#lightboxOverlay.open {
    display: flex;
}

@keyframes lbFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lb-content {
    max-width: 780px;
    width: 100%;
    animation: lbSlideIn 0.35s ease;
}

@keyframes lbSlideIn {
    from {
        opacity: 0;
        transform: scale(0.88) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.lb-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark), var(--teal));
    min-height: 340px;
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    border: 2px solid rgba(230, 0, 126, 0.25);
}

.lb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.lb-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 4px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.lb-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

.lb-sub {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    margin-top: 3px;
}

.lb-counter {
    background: rgba(230, 0, 126, 0.15);
    border: 1px solid rgba(230, 0, 126, 0.3);
    color: var(--gold-light);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.lb-close {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10001;
}

.lb-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lb-prev,
.lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10001;
}

.lb-prev {
    left: 16px;
}

.lb-next {
    right: 16px;
}

.lb-prev:hover,
.lb-next:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

@media (max-width: 576px) {
    .lb-prev {
        left: 6px;
    }

    .lb-next {
        right: 6px;
    }

    .lb-img-wrap {
        min-height: 240px;
        font-size: 5rem;
    }

    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 992px) {
    .about-cert-badge {
        right: 0;
        bottom: -15px;
    }

    .hero-stats {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .contact-info-card {
        margin-bottom: 24px;
    }
}