/* ==================================================
   ANKITA FLOWERS & JD EVENTS
   GLOBAL + HEADER + FOOTER
================================================== */

/* ---------- RESET ---------- */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #2f2f2f;
    background: #ffffff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: calc(100% - 40px);
    max-width: 1280px;
    margin: 0 auto;
}


/* ==================================================
   ACCESSIBILITY
================================================== */

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    z-index: 99999;
    padding: 12px 20px;
    background: #ffffff;
    color: #174c3c;
    font-weight: 600;
    border-radius: 4px;
}

.skip-link:focus {
    top: 20px;
}


/* ==================================================
   SITE HEADER
================================================== */

.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
}


/* ==================================================
   TOP BAR
================================================== */

.top-bar {
    width: 100%;
    background: #174c3c;
    color: #ffffff;
}

.top-bar-wrapper {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-left a,
.top-bar-right span {
    font-size: 13px;
    line-height: 1.4;
}

.top-bar-left a {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.25s ease;
}

.top-bar-left a:hover {
    opacity: 0.8;
}

.top-icon {
    margin-right: 6px;
}


/* ==================================================
   MAIN HEADER
================================================== */

.main-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.header-wrapper {
    min-height: 90px;
    display: flex;
    align-items: center;
    gap: 24px;
}


/* ==================================================
   LOGO
================================================== */

.site-branding {
    flex: 0 0 auto;
}

.site-branding .custom-logo-link {
    display: block;
}

.site-branding .custom-logo {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 70px;
    object-fit: contain;
}

.text-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-primary {
    color: #174c3c;
    font-size: 24px;
    font-weight: 700;
}

.brand-secondary {
    margin-top: 4px;
    color: #c6923e;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* ==================================================
   DESKTOP NAVIGATION
================================================== */

.main-navigation {
    margin-left: auto;
    min-width: 0;
}

.primary-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: nowrap;
}

.primary-menu > li {
    position: relative;
    flex: 0 0 auto;
}

.primary-menu > li > a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 90px;
    color: #303030;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.primary-menu > li > a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    width: 0;
    height: 2px;
    margin: auto;
    background: #d94f70;
    transition: width 0.25s ease;
}

.primary-menu > li > a:hover,
.primary-menu > .current-menu-item > a,
.primary-menu > .current_page_item > a {
    color: #d94f70;
}

.primary-menu > li > a:hover::after,
.primary-menu > .current-menu-item > a::after,
.primary-menu > .current_page_item > a::after {
    width: 100%;
}


/* ==================================================
   HEADER CTA
================================================== */

.header-cta {
    flex: 0 0 auto;
}

.btn-header {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 21px;
    border-radius: 50px;
    background: #d94f70;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(217, 79, 112, 0.2);
    transition:
        background-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-header:hover {
    background: #174c3c;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(23, 76, 60, 0.2);
}


/* ==================================================
   MOBILE MENU BUTTON
================================================== */

.mobile-menu-toggle {
    display: none;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 8px;
    border: 0;
    background: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    margin: 6px auto;
    border-radius: 10px;
    background: #174c3c;
}


/* ==================================================
   MOBILE OFF-CANVAS NAVIGATION
================================================== */

.mobile-navigation {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;

    width: min(380px, 88vw);
    height: 100vh;
    

    padding: 25px;
    padding-bottom: 50px;

    background: #ffffff;

    overflow-x: hidden;
    overflow-y: auto;

    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    touch-action: pan-y;

    visibility: hidden;
    transform: translateX(100%);

    transition:
        transform 0.35s ease,
        visibility 0.35s ease;
}

.mobile-navigation.active {
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu {
    display: block;
    width: 100%;
    margin-top: 15px;
}

.mobile-menu-contact {
    margin-top: 30px;
    padding-top: 25px;
    padding-bottom: 30px;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eeeeee;
}

.mobile-menu-title {
    color: #174c3c;
    font-size: 21px;
    font-weight: 700;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #333333;
    font-size: 34px;
    line-height: 1;
}


/* Mobile Menu */

.mobile-menu {
    margin-top: 15px;
}

.mobile-menu > li {
    border-bottom: 1px solid #eeeeee;
}

.mobile-menu > li > a {
    display: block;
    padding: 14px 0;
    color: #333333;
    font-size: 16px;
    font-weight: 600;
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.mobile-menu > li > a:hover,
.mobile-menu > .current-menu-item > a,
.mobile-menu > .current_page_item > a {
    padding-left: 5px;
    color: #d94f70;
}


/* Mobile Contact */

.mobile-menu-contact {
    margin-top: 30px;
    padding-top: 25px;
}

.mobile-menu-contact p {
    margin-bottom: 15px;
    color: #666666;
    font-size: 14px;
}

.mobile-call-btn,
.mobile-whatsapp-btn {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
}

.mobile-call-btn {
    border: 1px solid #174c3c;
    color: #174c3c;
}

.mobile-whatsapp-btn {
    background: #174c3c;
    color: #ffffff;
}


/* ==================================================
   MENU OVERLAY
================================================== */

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.55);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ==================================================
   FOOTER
================================================== */

.site-footer {
    width: 100%;
    background: #102f27;
    color: rgba(255, 255, 255, 0.75);
}

.footer-main {
    padding: 75px 0 55px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr;
    gap: 50px;
}


/* Footer Logo */

.footer-logo {
    margin-bottom: 22px;
}

.footer-logo .custom-logo-link {
    display: inline-block;
}

.footer-logo .custom-logo {
    width: auto;
    max-width: 190px;
    max-height: 75px;
    object-fit: contain;
}

.footer-about p {
    max-width: 400px;
    font-size: 14px;
    line-height: 1.9;
}


/* Footer Titles */

.footer-title {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 12px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42px;
    height: 2px;
    background: #d94f70;
}


/* Footer Menu */

.footer-menu {
    display: block;
}

.footer-menu li {
    display: block;
    margin-bottom: 10px;
}

.footer-menu li a {
    display: inline-block;
    font-size: 14px;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-menu li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}


/* Footer Services */

.footer-services {
    display: block;
}

.footer-services li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 16px;
    font-size: 14px;
}

.footer-services li::before {
    content: "›";
    position: absolute;
    top: 0;
    left: 0;
    color: #d94f70;
    font-weight: 700;
}


/* Footer Contact */

.footer-contact li {
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact strong {
    display: block;
    margin-bottom: 2px;
    color: #ffffff;
    font-weight: 600;
}

.footer-contact a {
    transition: color 0.25s ease;
}

.footer-contact a:hover {
    color: #ffffff;
}


/* ==================================================
   FOOTER BOTTOM
================================================== */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-wrapper {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
}

.footer-bottom a {
    color: #ffffff;
    font-weight: 600;
}

/* ==================================================
   HOMEPAGE HERO
================================================== */

.home-hero {
    position: relative;
    min-height: calc(100vh - 130px);
    

    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(8, 34, 27, 0.92) 0%,
            rgba(8, 34, 27, 0.75) 45%,
            rgba(8, 34, 27, 0.25) 75%,
            rgba(8, 34, 27, 0.10) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    width: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 720px;
}


/* Subtitle */

.hero-subtitle {
    display: inline-block;
    margin-bottom: 18px;

    color: #f4c66d;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* Main Title */

.hero-title {
    margin: 0;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 76px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-title span {
    display: block;
    color: #f5c8d2;
}


/* Description */

.hero-description {
    max-width: 650px;

    margin-top: 25px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 17px;
    line-height: 1.9;
}


/* Buttons */

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-top: 35px;
}

.hero-btn {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 28px;

    border-radius: 50px;

    font-size: 15px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

.hero-btn-primary {
    background: #d94f70;
    color: #ffffff;
}

.hero-btn-primary:hover {
    background: #ffffff;
    color: #174c3c;
}

.hero-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.hero-btn-secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #174c3c;
}


/* Scroll Indicator */

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    z-index: 3;

    transform: translateX(-50%);
}

.hero-scroll a {
    width: 28px;
    height: 45px;

    display: flex;
    justify-content: center;

    padding-top: 8px;

    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
}

.hero-scroll span {
    width: 4px;
    height: 8px;

    background: #ffffff;
    border-radius: 10px;

    animation: heroScroll 1.8s infinite;
}

@keyframes heroScroll {

    0% {
        opacity: 0;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(15px);
    }

}

/* ==================================================
   HOME SERVICES
================================================== */

.home-services {
    position: relative;
    background: #f7f8f5;
}


/* Heading */

.services-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 55px;
}

.services-heading .section-title {
    margin-bottom: 0;
}

.services-heading-text {
    padding-bottom: 7px;
}

.services-heading-text p {
    max-width: 500px;
    color: #6d6d6d;
    font-size: 16px;
    line-height: 1.8;
}


/* Services Grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Service Card */

.service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(20, 60, 48, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(20, 60, 48, 0.13);
}


/* Service Image */

.service-image {
    position: relative;
    display: block;
    height: 260px;
    overflow: hidden;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(10, 40, 31, 0.4),
            transparent 60%
        );

    opacity: 0.5;
    transition: opacity 0.35s ease;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.07);
}


/* Service Number */

.service-number {
    position: absolute;
    right: 20px;
    bottom: 18px;
    z-index: 2;

    color: rgba(255, 255, 255, 0.95);

    font-size: 42px;
    line-height: 1;
    font-weight: 700;
}


/* Service Content */

.service-content {
    padding: 28px;
}

.service-content h3 {
    margin-bottom: 12px;
    color: #173c32;
    font-size: 21px;
    line-height: 1.35;
}

.service-content h3 a {
    transition: color 0.25s ease;
}

.service-content h3 a:hover {
    color: #d94f70;
}

.service-content p {
    min-height: 78px;
    margin-bottom: 20px;

    color: #737373;

    font-size: 14px;
    line-height: 1.8;
}


/* Read More */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #d94f70;

    font-size: 14px;
    font-weight: 700;

    transition:
        color 0.25s ease,
        gap 0.25s ease;
}

.service-link:hover {
    gap: 13px;
    color: #174c3c;
}
/* =========================================
   STICKY HEADER
========================================= */

.site-header{
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    transition: all .35s ease;
}

.site-header.scrolled{

    background:#ffffff;

    box-shadow:
        0 10px 30px rgba(0,0,0,.10);

}

.admin-bar .site-header{

    top:32px;

}

@media(max-width:782px){

    .admin-bar .site-header{

        top:46px;

    }

}

/*=====================================
 FLOATING CALL BUTTON
======================================*/

.floating-call-btn{

    position:fixed;

    right:20px;

    bottom:90px;

    width:62px;

    height:62px;

    border-radius:50%;

    background:#16a34a;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    z-index:999999;

    box-shadow:0 8px 25px rgba(22,163,74,.35);

    animation:pulse-ring 1.8s infinite;

}

.floating-call-btn svg{

    width:28px;

    height:28px;

}

.floating-call-btn:hover{

    color:#fff;

    background:#15803d;

}

/* Ring */

.floating-call-btn::after{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    border-radius:50%;

    border:2px solid #16a34a;

    animation:ring 1.8s infinite;

}

@keyframes pulse-ring{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.08);

    }

    100%{

        transform:scale(1);

    }

}

@keyframes ring{

    0%{

        transform:scale(1);

        opacity:.8;

    }

    100%{

        transform:scale(1.6);

        opacity:0;

    }

}

/* Desktop */

@media(min-width:769px){

    .floating-call-btn{

        top:50%;

        right:20px;

        bottom:auto;

        transform:translateY(-50%);

    }

}