/* =============================================
   NIRVAN DRUG DE-ADDICTION & REHABILITATION
   Custom Stylesheet — style.css
   ============================================= */



:root {
    --primary: #0F7A45;
    --primary-dark: #0A5C33;
    --primary-light: #1FA463;
    --secondary-bg: #F4F6F5;
    --secondary-dark: #1F2D2A;
    --accent: #E8B96A;
    --accent-hover: #D9A955;
    --white: #FFFFFF;
    --border: #E0E0E0;
    --text-dark: #1F2D2A;
    --text-light: #6B7280;
    --shadow-sm: 0 2px 12px rgba(15, 122, 69, .10);
    --shadow-md: 0 6px 28px rgba(15, 122, 69, .14);
    --shadow-lg: 0 16px 56px rgba(15, 122, 69, .18);
    --radius: 14px;
    --radius-lg: 24px;
    --transition: all .3s cubic-bezier(.4, 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: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.75;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Lora', serif;
    line-height: 1.25;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ── Scrollbar ────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* ── Utility Classes ──────────────────────── */
.section-pad {
    padding: 90px 0;
}

.section-pad-sm {
    padding: 60px 0;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
}

.bg-section {
    background: var(--secondary-bg);
}

.text-primary {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.section-badge {
    display: inline-block;
    background: rgba(15, 122, 69, .10);
    color: var(--primary);
    font-family: 'Nunito', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary);
}

.section-sub {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 560px;
}

.divider-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    margin: 18px 0 24px;
}

/* ── Buttons ──────────────────────────────── */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    border: 2px solid rgba(255, 255, 255, .7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: var(--secondary-dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .95rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 185, 106, .4);
}

/* ── Topbar ───────────────────────────────── */
.topbar {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, .85);
    font-size: .82rem;
    font-weight: 500;
    padding: 8px 0;
}

.topbar a {
    color: rgba(255, 255, 255, .85);
}

.topbar a:hover {
    color: var(--accent);
}

.topbar-info {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.topbar-info span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.topbar-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.topbar-cta a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 700;
    transition: var(--transition);
}

.topbar-cta a:hover {
    background: var(--accent);
    color: var(--secondary-dark);
}

.topbar-cta a.whatsapp-top:hover {
    background: #25D366;
    color: var(--white);
}

/* ── Navbar ───────────────────────────────── */
#mainNavbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    transition: var(--transition);
    position: sticky;
    top: 0;
    z-index: 999;
}

#mainNavbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(15, 122, 69, .15);
}

.navbar-brand img {
    height: 80px;
    transition: var(--transition);
}

#mainNavbar.scrolled .navbar-brand img {
    height: 52px;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-brand-name {
    font-family: 'Poppins', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    max-width: 220px;
    line-height: 1.2;
}

.navbar-brand-tagline {
    font-size: .72rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: .04em;
}

.nav-link-custom {
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link-custom:hover,
.nav-link-custom.active {
    color: var(--primary) !important;
    background: rgba(15, 122, 69, .07);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-size: .88rem;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}

.nav-cta::after {
    display: none;
}

/* ── Hero ─────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 94vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--secondary-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/building-img.jpeg');
    background-size: cover;
    background-position: center;
    filter: brightness(.38);
    transition: transform 8s ease-out;
}

.hero-section:hover .hero-bg {
    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(10, 92, 51, .88) 0%,
            rgba(15, 122, 69, .62) 50%,
            rgba(31, 165, 99, .30) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 185, 106, .18);
    border: 1px solid rgba(232, 185, 106, .4);
    color: var(--accent);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: .9rem;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--white);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 22px;
}

.hero-title .highlight {
    color: var(--accent);
    display: block;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .82);
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 56px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {    
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .6);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: bounceScroll 2s infinite;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, .7);
    border-radius: 2px;
    animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 18px;
    }
}

@keyframes bounceScroll {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ── Trust Strip ──────────────────────────── */
.trust-strip {
    background: var(--primary);
    padding: 20px 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.trust-item i {
    font-size: 1.6rem;
    color: var(--accent);
    flex-shrink: 0;
}

.trust-item-title {
    font-weight: 700;
    font-size: .95rem;
}

.trust-item-sub {
    font-size: .78rem;
    opacity: .75;
}

/* ── About Section ────────────────────────── */
.about-image-wrap {
    position: relative;
}

.about-main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-main-img img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.about-main-img:hover img {
    transform: scale(1.04);
}

.about-badge-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 140px;
}

.about-badge-card .big-num {
    font-family: 'Poppins', serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.about-badge-card p {
    font-size: .8rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
}

.about-feature {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius);
    background: var(--secondary-bg);
    margin-bottom: 14px;
    transition: var(--transition);
}

.about-feature:hover {
    background: rgba(15, 122, 69, .08);
    transform: translateX(6px);
}

.about-feat-icon {
    width: 48px;
    height: 48px;
    background: rgba(15, 122, 69, .12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feat-title {
    font-weight: 700;
    font-size: .93rem;
    color: var(--text-dark);
}

.about-feat-text {
    font-size: .83rem;
    color: var(--text-light);
    margin: 0;
}

/* ── Services Section ─────────────────────── */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: rgba(15, 122, 69, .2);
}

.service-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-card:hover .service-img-wrap img {
    transform: scale(1.08);
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 92, 51, .75) 0%, transparent 60%);
}

.service-num {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: var(--secondary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .85rem;
    font-family: 'Poppins', serif;
}

.service-body {
    padding: 22px;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    background: rgba(15, 122, 69, .10);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 14px;
}

.service-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-desc {
    font-size: .86rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 14px;
}

.service-link {
    font-size: .85rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* ── Why Choose Us ────────────────────────── */
.why-section {
    background: var(--secondary-dark);
    color: var(--white);
}

.why-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.why-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-6px);
    border-color: rgba(232, 185, 106, .4);
}

.why-icon {
    width: 68px;
    height: 68px;
    background: rgba(15, 122, 69, .3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.8rem;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary);
    transform: rotate(6deg) scale(1.1);
}

.why-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-text {
    font-size: .84rem;
    color: rgba(255, 255, 255, .65);
    margin: 0;
}

/* ── Gallery Section ──────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 14px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-column: span 2;
}

.gallery-item:nth-child(4) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.gallery-item:first-child img {
    height: 280px;
}

.gallery-item:nth-child(4) img {
    height: 220px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 122, 69, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
}

/* ── Testimonials ─────────────────────────── */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-card::before {
    content: '\201C';
    font-family: 'Poppins', serif;
    font-size: 5rem;
    color: var(--primary);
    opacity: .12;
    position: absolute;
    top: 8px;
    left: 20px;
    line-height: 1;
}

.testimonial-stars {
    color: var(--accent);
    font-size: .9rem;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: .92rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: 'Poppins', serif;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: .9rem;
    color: var(--text-dark);
}

.author-role {
    font-size: .78rem;
    color: var(--text-light);
}

/* ── CTA Banner ───────────────────────────── */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, .06);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
}

.cta-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: 14px;
}

.cta-sub {
    color: rgba(255, 255, 255, .8);
    font-size: 1rem;
    margin-bottom: 32px;
}

.cta-phone {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Poppins', serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ── Contact Section ──────────────────────── */
.contact-info-card {
    background: var(--secondary-dark);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    color: var(--white);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.ci-icon {
    width: 46px;
    height: 46px;
    background: rgba(15, 122, 69, .4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ci-label {
    font-size: .76rem;
    color: rgba(255, 255, 255, .55);
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ci-value {
    font-size: .93rem;
    font-weight: 600;
    margin-top: 2px;
}

.ci-value a {
    color: var(--white);
}

.ci-value a:hover {
    color: var(--accent);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.form-label-custom {
    font-weight: 700;
    font-size: .85rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.form-control-custom {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Nunito', sans-serif;
    font-size: .92rem;
    color: var(--text-dark);
    background: var(--secondary-bg);
    transition: var(--transition);
    outline: none;
}

.form-control-custom:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(15, 122, 69, .12);
}

/* ── Map ──────────────────────────────────── */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

/* ── Footer ───────────────────────────────── */
.footer {
    background: var(--secondary-dark);
    color: rgba(255, 255, 255, .75);
    padding-top: 70px;
}

.footer-brand img {
    height: 70px;
    margin-bottom: 16px;
}

.footer-brand-text {
    font-size: .9rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.75;
    max-width: 280px;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .75);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-heading {
    font-family: 'Poppins', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, .65);
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    gap: 12px;
}

.footer-links a i {
    font-size: .7rem;
    color: var(--primary-light);
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: .95rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: .87rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .4);
    margin: 0;
}

.footer-bottom a {
    color: var(--accent);
}

/* ── Floating Buttons ─────────────────────── */
.float-buttons {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
    transition: var(--transition);
    white-space: nowrap;
}

.float-btn:hover {
    transform: translateX(-4px) scale(1.04);
    color: var(--white);
}

.float-call {
    background: var(--primary);
}

.float-call:hover {
    background: var(--primary-dark);
}

.float-wa {
    background: #25D366;
}

.float-wa:hover {
    background: #1da851;
}

.float-btn i {
    font-size: 1.1rem;
}

.float-btn .btn-label {
    max-width: 0;
    overflow: hidden;
    transition: max-width .4s ease, opacity .3s ease;
    opacity: 0;
}

.float-btn:hover .btn-label {
    max-width: 120px;
    opacity: 1;
}

/* ── Back to Top ──────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 1040;
    cursor: pointer;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* ── Page Hero (inner pages) ──────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, .06);
    border-radius: 50%;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

.page-hero .breadcrumb-item {
    font-size: .88rem;
    color: rgba(255, 255, 255, .65);
}

.page-hero .breadcrumb-item.active {
    color: var(--accent);
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, .7);
}

.page-hero .breadcrumb-item a:hover {
    color: var(--white);
}

/* ── Animations ───────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .65s ease, transform .65s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) {
    transition-delay: .12s;
}

.fade-up:nth-child(3) {
    transition-delay: .22s;
}

.fade-up:nth-child(4) {
    transition-delay: .32s;
}

.fade-up:nth-child(5) {
    transition-delay: .42s;
}

.fade-up:nth-child(6) {
    transition-delay: .52s;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 991.98px) {
    .section-pad {
        padding: 60px 0;
    }

    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-stats {
        gap: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:first-child {
        grid-column: span 2;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .float-btn .btn-label {
        display: none;
    }

    .float-btn {
        padding: 12px 16px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }

    .about-badge-card {
        right: 0;
        bottom: -20px;
    }
}

@media (max-width: 767.98px) {
    .topbar-info {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item:first-child,
    .gallery-item:nth-child(4) {
        grid-column: span 2;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 28px 20px;
    }
}


.fa-phone-alt{
    transform: rotate(90deg);
}