/* =============================================
   MS BIRD NETTING - style.css
   Color: #242249 (brand dark)
   Font: Playfair Display + DM Sans
============================================= */

/* ---- CSS VARIABLES ---- */
:root {
    --brand: #242249;
    --brand-light: #2d2b5e;
    --brand-faint: #f0f0f8;
    --accent: #e8a020;
    --accent-light: #fdf3e3;
    --text-dark: #1a1a2e;
    --text-body: #555566;
    --text-light: #888899;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --border: #e2e4f0;
    --shadow-sm: 0 2px 12px rgba(36, 34, 73, 0.08);
    --shadow-md: 0 6px 30px rgba(36, 34, 73, 0.12);
    --shadow-lg: 0 15px 50px rgba(36, 34, 73, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--text-dark);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-pad {
    padding: 90px 0;
}

.bg-light-custom {
    background: var(--off-white);
}

/* ---- SHARED ELEMENTS ---- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    background: var(--accent-light);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
    border-left: 3px solid var(--accent);
}

.section-heading {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.section-heading span {
    color: var(--brand);
}

.section-text {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.section-subtext {
    color: var(--text-body);
    font-size: 15px;
    max-width: 550px;
    margin: 0 auto;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 2px solid var(--brand);
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--brand);
}

/* =============================================
   TOP BAR
============================================= */
.top-bar {
    background: var(--brand);
    padding: 9px 0;
    position: relative;
    z-index: 200;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.top-bar-link:hover {
    color: var(--accent);
}

.top-bar-link i {
    font-size: 12px;
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.top-bar-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.top-bar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    transition: var(--transition);
}

.top-bar-social:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* =============================================
   HEADER / NAVBAR
============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

#mainNav {
    padding: 4px 0;
    transition: var(--transition);
}

.nav-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 8px 14px !important;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover {
    color: var(--brand) !important;
}

.btn-nav-cta {
    background: var(--brand) !important;
    color: var(--white) !important;
    padding: 9px 22px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
}

.btn-nav-cta:hover {
    background: var(--brand-light) !important;
}

.btn-nav-cta::after {
    display: none !important;
}

/* Custom Toggler */
.custom-toggler {
    border: none;
    outline: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    background: transparent;
}

.custom-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
    transition: var(--transition);
}

/* Dropdown */
.custom-dropdown {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}

.custom-dropdown .dropdown-item {
    font-size: 14px;
    padding: 8px 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.custom-dropdown .dropdown-item:hover {
    background: var(--brand-faint);
    color: var(--brand);
    padding-left: 26px;
}

/* =============================================
   HERO CAROUSEL
============================================= */
.hero-section {
    position: relative;
}

.hero-slide {
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slide-1 {
    background:
        linear-gradient(rgba(0, 0, 0, 0.753), rgba(0, 0, 0, 0.822)),
        url('../images/b1.webp') center center / cover no-repeat;
}

.hero-slide-2 {
    background:
        linear-gradient(rgba(0, 0, 0, 0.753), rgba(0, 0, 0, 0.822)),
        url('../images/b2.jpg') center center / cover no-repeat;
}



.hero-net-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-net-overlay.dark {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(232, 160, 32, 0.15);
    color: var(--accent);
    border: 1px solid rgba(232, 160, 32, 0.4);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--accent);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--accent);
    color: var(--brand);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 2px solid var(--accent);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--accent);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

/* Hero image frame */
.hero-img-frame {
    position: relative;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    backdrop-filter: blur(5px);
}

.hero-float-img {
    border-radius: calc(var(--radius) - 4px);
    max-height: 440px;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

/* Carousel Controls */
.hero-ctrl {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.hero-ctrl:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
}

.hero-ctrl i {
    font-size: 18px;
    color: white;
}

.carousel-control-prev.hero-ctrl {
    left: 20px;
}

.carousel-control-next.hero-ctrl {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

.hero-indicators {
    bottom: 24px;
}

.hero-indicators button {
    width: 28px !important;
    height: 4px !important;
    border-radius: 3px !important;
    background: rgba(255, 255, 255, 0.4) !important;
    border: none !important;
    transition: var(--transition) !important;
    margin: 0 4px !important;
}

.hero-indicators button.active {
    width: 48px !important;
    background: var(--accent) !important;
}

/* =============================================
   MARQUEE
============================================= */
.marquee-strip {
    background: var(--brand);
    padding: 14px 0;
    overflow: hidden;
    border-top: 3px solid var(--accent);
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 500;
    padding: 0 32px;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.marquee-track span i {
    color: var(--accent);
    font-size: 12px;
}

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

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

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

/* =============================================
   ABOUT SECTION
============================================= */
.about-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-main-img {
    border-radius: var(--radius);
    width: 100%;
    height: 460px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-badge-box {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--accent);
    color: var(--brand);
    padding: 18px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.about-img-accent {
    position: absolute;
    top: -14px;
    left: -14px;
    width: 80px;
    height: 80px;
    border: 3px solid var(--brand);
    border-radius: var(--radius);
    opacity: 0.15;
    z-index: 0;
}

.about-features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feat-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--brand);
    transition: var(--transition);
}

.about-feat-item:hover {
    background: var(--brand-faint);
    transform: translateX(4px);
}

.feat-icon {
    min-width: 40px;
    height: 40px;
    background: var(--brand);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.about-feat-item h5 {
    font-size: 15px;
    margin-bottom: 2px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 600;
}

.about-feat-item p {
    font-size: 13px;
    color: var(--text-body);
    margin: 0;
}

/* =============================================
   SERVICES SECTION
============================================= */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
}

.service-img-wrap {
    position: relative;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

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

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(36, 34, 73, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.btn-service-overlay {
    background: var(--accent);
    color: var(--brand);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transform: translateY(10px);
    transition: var(--transition);
}

.service-card:hover .btn-service-overlay {
    transform: translateY(0);
}

.service-body {
    padding: 22px;
}

.service-icon {
    width: 44px;
    height: 44px;
    background: var(--brand-faint);
    color: var(--brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--brand);
    color: var(--white);
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-text {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.65;
    margin-bottom: 14px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-body);
}

.service-list li i {
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
}

/* =============================================
   COUNTER SECTION
============================================= */
.counter-section {
    padding: 70px 0;
    background: var(--brand);
    position: relative;
    overflow: hidden;
}

.counter-bg-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 35px 35px;
    pointer-events: none;
}

.counter-box {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.counter-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.counter-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.counter-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: inline;
}

.counter-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    display: inline;
}

.counter-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

/* =============================================
   WHY CHOOSE US
============================================= */
.why-img-grid {
    position: relative;
}

.why-main-img {
    border-radius: var(--radius);
    width: 100%;
    height: 480px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.why-img-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--brand);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
}

.why-img-badge i {
    font-size: 1.8rem;
    color: var(--accent);
}

.why-img-badge span {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--off-white);
    transition: var(--transition);
}

.why-item:hover {
    border-color: var(--brand);
    background: var(--brand-faint);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.why-icon {
    min-width: 38px;
    height: 38px;
    background: var(--brand);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.why-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
    font-family: var(--font-body);
}

.why-content p {
    font-size: 12.5px;
    color: var(--text-body);
    margin: 0;
    line-height: 1.5;
}

/* =============================================
   GALLERY
============================================= */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.88);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
    filter: brightness(0.6);
}

.gallery-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(36, 34, 73, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
    gap: 6px;
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

.gallery-hover i {
    font-size: 1.8rem;
}

.gallery-hover span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* =============================================
   FAQ SECTION
============================================= */
.faq-contact-card {
    background: var(--brand-faint);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-contact-item i {
    color: var(--brand);
    font-size: 18px;
    min-width: 20px;
}

.faq-contact-item small {
    display: block;
    color: var(--text-light);
    font-size: 11px;
}

.faq-contact-item strong {
    font-size: 13.5px;
    color: var(--text-dark);
}

.custom-acc-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.custom-acc-btn {
    background: var(--white) !important;
    color: var(--text-dark) !important;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 18px 20px !important;
    box-shadow: none !important;
}

.custom-acc-btn:not(.collapsed) {
    background: var(--brand) !important;
    color: var(--white) !important;
}

.custom-acc-btn::after {
    filter: invert(0);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23242249'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.custom-acc-btn:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.custom-acc-body {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.75;
    padding: 16px 20px !important;
    background: var(--off-white) !important;
    border-top: 1px solid var(--border);
}

/* =============================================
   CONTACT SECTION
============================================= */
.contact-info-box {
    background: var(--brand);
    color: var(--white);
    border-radius: var(--radius);
    padding: 36px 30px;
    height: 100%;
}

.contact-info-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.cinfo-icon {
    min-width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent);
}

.contact-info-item strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.contact-info-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    line-height: 1.6;
}

.contact-info-item a {
    color: rgba(255, 255, 255, 0.88);
}

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

.contact-social-links {
    display: flex;
    gap: 8px;
}

.csocial-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
}

.csocial-link:hover {
    background: var(--accent);
    color: var(--brand);
}

.contact-form-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    height: 100%;
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 26px;
}

.form-group-custom {
    margin-bottom: 4px;
}

.form-group-custom label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: block;
}

.custom-input {
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    padding: 11px 14px !important;
    font-size: 14px !important;
    color: var(--text-dark) !important;
    background: var(--off-white) !important;
    transition: var(--transition) !important;
    font-family: var(--font-body) !important;
}

.custom-input:focus {
    border-color: var(--brand) !important;
    background: var(--white) !important;
    box-shadow: 0 0 0 3px rgba(36, 34, 73, 0.08) !important;
}

/* =============================================
   MAP SECTION
============================================= */
.map-section {
    line-height: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 380px;
    display: block;
    border: none;
    filter: grayscale(20%);
}

/* =============================================
   FOOTER
============================================= */
.site-footer {
    background: var(--text-dark);
    color: var(--white);
}

.footer-top {
    padding: 70px 0 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 18px;
    filter: brightness(10);
}

.footer-about {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--brand);
}

.footer-widget-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a::before {
    content: '›';
    color: var(--accent);
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.25);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13.5px;
    margin: 0;
}

/* =============================================
   FLOATING ICONS
============================================= */
.floating-icons {
    position: fixed;
    right: 18px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.float-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-md);
}

.float-icon.whatsapp {
    background: #25D366;
}

.float-icon.phone {
    background: var(--brand);
}

.float-icon.email {
    background: var(--accent);
    color: var(--brand);
}

.float-icon.scroll-top {
    background: rgba(36, 34, 73, 0.8);
    opacity: 0;
    pointer-events: none;
}

.float-icon.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.float-icon:hover {
    transform: scale(1.12) translateX(4px);
}

.float-tooltip {
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-dark);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.float-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: var(--text-dark);
}

.float-icon:hover .float-tooltip {
    opacity: 1;
}

/* =============================================
   ANIMATIONS
============================================= */
[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"] {
    transform: translateX(-24px);
}

[data-aos="fade-left"] {
    transform: translateX(24px);
}

[data-aos="zoom-in"] {
    transform: scale(0.92);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 991px) {
    .section-pad {
        padding: 65px 0;
    }

    .hero-slide {
        min-height: 75vh;
    }

    .about-badge-box {
        right: 10px;
    }

    .why-img-badge {
        left: 10px;
    }

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

    .hero-ctrl {
        display: none !important;
    }
}

@media (max-width: 767px) {
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important;
		
	}
    .section-pad {
        padding: 50px 0;
    }

    .hero-slide {
        min-height: 90vh;
        padding: 20px 0;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        text-align: center;
        width: 100%;
        padding: 13px 20px;
    }

    .about-badge-box {
        position: static;
        margin-top: 16px;
        display: inline-flex;
        gap: 12px;
        align-items: center;
    }

    .about-badge-number {
        font-size: 1.6rem;
    }

    .about-main-img {
        height: 320px;
    }

    .about-img-accent {
        display: none;
    }

    .why-main-img {
        height: 280px;
    }

    .why-img-badge {
        top: 16px;
        left: 10px;
    }

    .counter-number {
        font-size: 2.1rem;
    }

    .contact-form-box {
        padding: 24px 18px;
    }

    .contact-info-box {
        padding: 24px 18px;
    }

    .footer-top {
        padding: 50px 0 30px;
    }

    .floating-icons {
        right: 12px;
        bottom: 80px;
    }

    .float-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .map-wrapper iframe {
        height: 280px;
    }

    .section-heading {
        font-size: 1.7rem;
    }
}

@media (max-width: 575px) {
    .hero-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .top-bar {
        
    }

    .site-header {
        top: 0;
    }

    .gallery-item {
        border-radius: 6px;
    }

    .service-img {
        height: 170px;
    }

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

    .footer-bottom .col-md-6:last-child {
        margin-top: 6px;
    }
}