/* =========================================================
   ROOT
========================================================= */

:root {

    --green: #0b3b2d;
    --green-dark: #06271e;
    --green-light: #155a45;

    --gold: #c9a45c;
    --gold-light: #fef7e4;

    --cream: #fef1cd;
    --white: #ffffff;

    --heading: #17352b;
    --text: #68716c;

    --border: rgba(11,59,45,.23);

    --serif: "Cormorant Garamond", serif;
    --sans: "DM Sans", sans-serif;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}

.container {
    max-width: 1200px;
}


/* =========================================================
   COMMON
========================================================= */

.section-padding {
    padding: 80px 0;
}

.section-label {

    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--gold);

    font-size: 16px;
    font-weight: 700;

    letter-spacing: 2.5px;

    margin-bottom: 15px;

}

.section-label::before {

    content: "";

    width: 35px;
    height: 1px;

    background: var(--gold);

}

.section-title {

    font-family: var(--serif);

    color: var(--heading);

    font-size: clamp(43px,5vw,67px);

    font-weight: 600;

    line-height: .98;

}

.section-title span {
    color: var(--gold);
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    background: var(--green-dark);

    color: rgba(255,255,255,.75);

    font-size: 16px;

    padding: 9px 0;

}

.top-bar-inner {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.top-left {

    display: flex;

    gap: 25px;

}

.top-left i,
.top-right i {

    color: var(--gold);

    margin-right: 5px;

}

.top-right a {

    color: white;

    font-weight: 600;

}


/* =========================================================
   NAVBAR
========================================================= */

.main-navbar {

    background: rgba(255,255,255,.97);

    border-bottom: 1px solid var(--border);

    padding: 16px 0;

    position: sticky;

    top: 0;

    z-index: 1000;

    transition: .3s;

}

.navbar-brand {

    display: flex;

    align-items: center;

    gap: 12px;

}

.brand-symbol {

    width: 48px;
    height: 48px;

    border: 1px solid var(--gold);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-size: 20px;

}

.brand-text img {

    display: block;
	height: 80px;
    color: var(--green);

    font-family: var(--serif);

    font-size: 26px;

    line-height: 1;

}

.brand-text small {

    font-size: 8px;

    letter-spacing: 2px;

    color: #777;

}

.navbar-nav {

    gap: 5px;

}

.nav-link {

    color: var(--heading) !important;

    font-size: 16px;

    font-weight: 600;

    padding: 12px 14px !important;

}

.nav-link:hover {

    color: var(--gold) !important;

}

.nav-cta {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 12px 20px;

    background: var(--green);

    color: white;

    border-radius: 3px;

    font-size: 16px;

    font-weight: 700;

}

.nav-cta:hover {

    background: var(--gold);

    color: var(--green-dark);

}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

}

.heroSwiper {

/*    height: 720px;*/

}

.hero-slide {

    position: relative;

    background-position: center;

    background-size: cover;

    display: flex;

    align-items: center;

}

.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,28,21,.94),
            rgba(3,28,21,.77) 48%,
            rgba(3,28,21,.20)
        );

}

.hero-container {

    position: relative;

    z-index: 3;

}

.hero-content {

    max-width: 720px;

    padding-top: 20px;

}

.hero-label {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--gold-light);

    font-size: 16px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 22px;

}

.hero-label span {

    width: 38px;

    height: 1px;

    background: var(--gold);

}

.hero-content h1 {

    font-family: var(--serif);

    font-size: clamp(54px,7vw,88px);

    line-height: .91;

    font-weight: 600;

    color: white;

    margin-bottom: 27px;

}

.hero-content h1 strong {

    color: var(--gold-light);

    font-weight: 600;

}

.hero-content p {

    max-width: 650px;

    color: rgba(255,255,255,.76);

    font-size: 15px;

    line-height: 1.85;

    margin-bottom: 32px;

}

.hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}

.btn-primary-custom {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    background: var(--gold);

    color: var(--green-dark);

    padding: 15px 24px;

    font-size: 16px;

    font-weight: 700;

    border-radius: 3px;

    transition: .3s;

}

.btn-primary-custom:hover {

    background: white;

    color: var(--green);

    transform: translateY(-2px);

}

.btn-outline-custom {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 14px 23px;

    border: 1px solid rgba(255,255,255,.4);

    color: white;

    font-size: 16px;

    font-weight: 700;

    border-radius: 3px;

    transition: .3s;

}

.btn-outline-custom:hover {

    background: white;

    color: var(--green);

}

.hero-trust {

    display: flex;

    gap: 25px;

    margin-top: 35px;

}

.hero-trust div {

    color: rgba(255,255,255,.7);

    font-size: 16px;

}

.hero-trust i {

    color: var(--gold);

    margin-right: 6px;

}


/* HERO PAGINATION */

.hero-pagination {

    bottom: 135px !important;

    text-align: left;

    padding-left: max(
        calc((100vw - 1200px) / 2),
        20px
    );

}

.hero-pagination .swiper-pagination-bullet {

    width: 30px;

    height: 3px;

    border-radius: 0;

    background: white;

    opacity: .35;

}

.hero-pagination .swiper-pagination-bullet-active {

    background: var(--gold);

    opacity: 1;

}


/* HERO ARROWS */

.hero-navigation {

    position: absolute;

    right: max(
        calc((100vw - 1200px) / 2),
        20px
    );

    bottom: 45px;

    z-index: 10;

    display: flex;

}

.hero-navigation div {

    width: 52px;
    height: 52px;

    border: 1px solid rgba(255,255,255,.3);

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    cursor: pointer;

    transition: .3s;

}

.hero-navigation div:hover {

    background: var(--gold);

    color: var(--green-dark);

}


/* =========================================================
   HERO BOTTOM
========================================================= */

.hero-bottom {

    position: relative;

	background: var(--green-dark);
	
    bottom: 0;

    left: 0;

    right: 0;

    z-index: 5;
}

.hero-bottom-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    background: rgba(5,36,27,.95);

}

.hero-bottom-grid > div {

    min-height: 100px;

    padding: 20px 24px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-right: 1px solid rgba(255,255,255,.1);

}

.hero-bottom-grid i {

    color: var(--gold);

    margin-bottom: 7px;

}

.hero-bottom-grid strong {

    color: white;

    font-family: var(--serif);

    font-size: 21px;

    font-weight: 600;

}

.hero-bottom-grid span {

    color: rgba(255,255,255,.5);

    font-size: 16px;

}


/* =========================================================
   ABOUT
========================================================= */

.about-section {

    background: var(--cream);

}

.about-image-wrap {

    position: relative;

    padding-right: 35px;

}

.about-image {

    height: 570px;

    object-fit: cover;

}

.experience-box {

    position: absolute;

    right: 0;

    bottom: 40px;

    width: 165px;

    height: 165px;

    background: var(--green);

    border: 8px solid var(--cream);

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

    border-radius: 50%;

}

.experience-box strong {

    color: var(--gold);

    font-family: var(--serif);

    font-size: 46px;

    line-height: 1;

}

.experience-box span {

    font-size: 16px;

    letter-spacing: 1px;

}

.about-pattern {

    position: absolute;

    left: -25px;

    top: 30px;

    width: 100px;

    height: 100px;

    border: 1px solid var(--gold);

    opacity: .4;

    z-index: -1;

}

.about-content p {

    line-height: 1.9;

    font-size: 16px;

    margin-top: 20px;

}

.about-points {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 14px;

    margin: 25px 0 30px;

}

.about-points div {

    display: flex;

    gap: 10px;

    font-size: 16px;

    color: var(--heading);

}

.about-points i {

    color: var(--gold);

}


/* =========================================================
   SERVICES
========================================================= */

.services-section {

    background: white;

}

.section-heading-row {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 45px;

}

.service-arrows,
.testimonial-arrows {

    display: flex;

}

.service-arrows button,
.testimonial-arrows button {

    width: 48px;

    height: 48px;

    border: 1px solid var(--border);

    background: white;

    color: var(--green);

    cursor: pointer;

    transition: .3s;

}

.service-arrows button:hover,
.testimonial-arrows button:hover {

    background: var(--green);

    color: white;

}

.serviceSwiper {

    overflow: hidden;

}

.service-card {

    background: var(--gold-light);
    border: 1px solid var(--border);
	border-radius: 10px;
    transition: .35s;

}

.service-card:hover {

    box-shadow: 0 10px 20px rgba(102,102,102,.92);
    transform: translateY(-6px);

}

.service-image {

    height: 245px;

    position: relative;

    overflow: hidden;
	border-radius: 10px 10px 0px 0px;

}

.service-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;
	border-radius: 10px 10px 0px 0px;

}

.service-card:hover .service-image img {

    transform: scale(1.06);

}

.service-image span {

    position: absolute;

    top: 18px;

    right: 18px;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--gold);

    color: var(--green-dark);

    font-family: var(--serif);

    font-weight: 700;

    font-size: 17px;

}

.service-content {

    padding: 30px;

    position: relative;

}

.service-icon {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: rgba(201,164,92,.12);

    color: var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    position: absolute;

    right: 25px;

    top: -25px;

}

.service-content h3 {

    font-family: var(--serif);

    color: var(--heading);

    font-size: 28px;

    margin-bottom: 12px;

}

.service-content p {

    font-size: 16px;

    line-height: 1.8;

    min-height: 65px;

    margin-bottom: 18px;

}

.service-content a {

    color: var(--green);

    font-size: 16px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

}

.service-content a i {

    margin-left: 5px;

}

.service-pagination {

    position: relative !important;

    margin-top: 30px;

}

.service-pagination
.swiper-pagination-bullet {

    background: var(--green);

}


/* =========================================================
   DARK CTA
========================================================= */

.dark-cta {

    background: var(--green-dark);

    padding: 70px 0;

}

.dark-cta-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}

.light-label {

    color: var(--gold-light);

}

.dark-cta h2 {

    color: white;

    font-family: var(--serif);

    font-size: clamp(40px,5vw,60px);

    line-height: 1;

}

.dark-cta h2 span {

    color: var(--gold);

}

.dark-cta p {

    color: rgba(255,255,255,.6);

    margin-top: 12px;

}

.btn-gold {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    background: var(--gold);

    color: var(--green-dark);

    padding: 15px 25px;

    font-size: 16px;

    font-weight: 700;

    border-radius: 3px;

}


/* =========================================================
   WHY US
========================================================= */

.why-section {

    background: var(--cream);

}

.why-image {

    position: relative;

}

.why-image img {

    height: 540px;

    object-fit: cover;

}

.why-quote {

    position: absolute;

    left: 30px;

    right: 30px;

    bottom: 30px;

    background: rgba(6,39,30,.93);

    padding: 25px;

}

.why-quote i {

    color: var(--gold);

    font-size: 24px;

}

.why-quote p {

    color: white;

    font-family: var(--serif);

    font-size: 22px;

    line-height: 1.3;

    margin-top: 8px;

}

.why-intro {

    line-height: 1.8;

    margin: 20px 0 30px;

}

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 25px;

}

.why-item {

    display: flex;

    gap: 15px;

}

.why-icon {

    min-width: 48px;

    height: 48px;

    background: white;

    display: flex;

    align-items: center;
    justify-content: center;
	background: var(--green);
    color: var(--gold);

}

.why-item h3 {

    font-family: var(--serif);

    color: var(--heading);

    font-size: 22px;

}

.why-item p {

    font-size: 16px;

    line-height: 1.7;

}


/* =========================================================
   STATS
========================================================= */

.stats-section {

    background: var(--green);

    padding: 65px 0;

}

.stat-box {

    text-align: center;

    border-right: 1px solid rgba(255,255,255,.12);

}

.col-lg-3:last-child .stat-box {

    border: 0;

}

.stat-box strong {

    display: block;

    font-family: var(--serif);

    font-size: 54px;

    color: var(--gold);

    line-height: 1;

}

.stat-box span {

    color: rgba(255,255,255,.65);

    font-size: 16px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

}
.stats-section { 
    background: var(--green); 
    padding: 65px 0; 
}

.stat-box { 
    text-align: center; 
    border-right: 1px solid rgba(255,255,255,.12); 
}

.col-lg-3:last-child .stat-box { 
    border: 0; 
}

.stat-box strong { 
    display: block; 
    font-family: var(--serif); 
    font-size: 54px; 
    color: var(--gold); 
    line-height: 1; 
}

.stat-box strong span{ 
    font-family: var(--serif); 
    font-size: 54px; 
    color: var(--gold); 
    line-height: 1; 
}

.stat-box span { 
    color: rgba(255,255,255,.65); 
    font-size: 16px; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
}

/* =========================================================
   TESTIMONIAL
========================================================= */

.testimonial-section {

    background: white;

}

.testimonialSwiper {

    padding-bottom: 50px;

	padding: 20px;
}

.testimonial-card {

    background: var(--cream);

    border: 1px solid var(--border);
	
    padding: 20px;

    min-height: 380px;
	border-radius: 10px;
    position: relative;

}

.testimonial-card:hover {

	box-shadow: 2px 2px 15px 2px #999;
}

.stars {

    color: var(--gold);

    font-size: 16px;

    display: flex;

    gap: 4px;

}

.quote-mark {

    position: absolute;

    right: 30px;

    top: 20px;

    color: rgba(201,164,92,.18);

    font-family: Georgia,serif;

    font-size: 90px;

    line-height: 1;

}

.testimonial-card > p {

    font-family: var(--serif);

    color: var(--heading);

    font-size: 21px;

    line-height: 1.55;

    margin: 30px 0;

}

.testimonial-author {

    display: flex;

    align-items: center;

    gap: 12px;

    padding-top: 20px;

    border-top: 1px solid var(--border);

}

.author-avatar {

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: var(--green);

    color: var(--gold);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 16px;

    font-weight: 700;

}

.testimonial-author strong {

    display: block;

    color: var(--heading);

    font-size: 16px;

}

.testimonial-author span {

    display: block;

    color: #8a908c;

    font-size: 16px;

    margin-top: 3px;

}

.testimonial-pagination {

    bottom: 0 !important;

}

.testimonial-pagination
.swiper-pagination-bullet-active {

    background: var(--green);

}


/* =========================================================
   FAQ
========================================================= */

.faq-section {

    background: var(--cream);

}

.accordion-item {

    border: 1px solid var(--border) !important;

    margin-bottom: 12px;

    background: white;

}

.accordion-button {

    padding: 20px;

    background: white !important;

    box-shadow: none !important;

    color: var(--heading) !important;

    font-size: 16px;

    font-weight: 700;

}

.accordion-body {

    padding: 0 20px 22px;

    color: var(--text);

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background: var(--green-dark);

    padding: 80px 0;

}

.contact-inner {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

}

.contact-content h2 {

    font-family: var(--serif);

    color: white;

    font-size: clamp(42px,5vw,62px);

    line-height: .95;

}

.contact-content p {

    color: rgba(255,255,255,.6);

    margin-top: 15px;

}

.contact-buttons {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

}

.btn-white {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: white;

    color: var(--green);

    padding: 15px 25px;

    font-size: 16px;

    font-weight: 700;

}

.btn-white:hover {

    color: var(--green);

}


/* =========================================================
   FOOTER
========================================================= */

footer {

    background: #031a13;

    padding: 25px 0;

}

.footer-grid {

    display: grid;

    grid-template-columns:
        1.3fr 1fr 1fr;

    align-items: center;

    gap: 30px;

}

.footer-brand {

    display: flex;

    align-items: center;

    gap: 10px;

}

.footer-brand .brand-symbol {

    width: 40px;
    height: 40px;

}

.footer-brand strong {

    display: block;

    font-family: var(--serif);

    color: white;

    font-size: 22px;

}

.footer-brand small {

    color: rgba(255,255,255,.4);

    font-size: 7px;

    letter-spacing: 1px;

}

footer p {

    color: rgba(255,255,255,.4);

    font-size: 16px;

    line-height: 1.7;

    margin: 0;

}


/* =========================================================
   FLOATING BUTTONS
========================================================= */

.floating-contact {

    position: fixed;

    right: 20px;

    bottom: 20px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    z-index: 9999;

}

.floating-contact a {

    width: 52px;
    height: 52px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    color: white;

    box-shadow:
        0 8px 25px rgba(0,0,0,.2);

}

.floating-phone {

    background: var(--gold);

    color: var(--green-dark) !important;

}

.floating-whatsapp {

    background: #25D366;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {


    .heroSwiper {

        height: auto;

    }


    .hero-bottom {

        display: none;

    }


    .hero-pagination {

        bottom: 30px !important;

    }


    .hero-navigation {

        bottom: 20px;

    }


    .about-content {

        padding-top: 20px;

    }


    .dark-cta-inner,
    .contact-inner {

        flex-direction: column;

        align-items: flex-start;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }


    .stat-box {

        border: 0;

        margin-bottom: 30px;

    }

}


@media(max-width:767px) {


    .section-padding {

        padding: 65px 0;

    }


    .top-left {

        display: none;

    }


    .top-bar-inner {

        justify-content: center;

    }


    .heroSwiper {

        height: auto;

    }


    .hero-content h1 {

        font-size: 56px;

    }


    .hero-content p {

        font-size: 16px;

    }


    .hero-trust {

        flex-direction: column;

        gap: 9px;

    }


    .hero-navigation {

        display: none;

    }


    .section-heading-row {

        display: block;

    }


    .service-arrows,
    .testimonial-arrows {

        margin-top: 20px;

    }


    .about-image {

        height: 420px;

    }


    .about-points,
    .why-grid {

        grid-template-columns: 1fr;

    }


    .why-image img {

        height: 420px;

    }


    .contact-content h2 {

        font-size: 45px;

    }


}