:root {
    --theme-color: #537668;
    --theme-color2: #6b8f7e;
    --smoke-color2: #eef3f0;
}

.preloader {
    display: none !important;
}

/* Hero */
.gc-hero {
    position: relative;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.gc-hero .hero-inner {
    position: relative;
    z-index: 2;
}

.gc-hero .hero-style2 {
    position: relative;
    z-index: 2;
    padding: 140px 0 120px;
    max-width: 720px;
}

.gc-hero .hero-title {
    color: #fff;
}

.gc-hero .hero-title .text-theme {
    color: #c8ddd2;
}

.gc-hero .hero-title .title1,
.gc-hero .hero-title .title2 {
    display: block;
}

.gc-hero .sub-title {
    color: rgba(255, 255, 255, 0.9);
}

.gc-hero .hero-text,
.gc-hero p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 640px;
}

/* Breadcrumb */
.gc-breadcrumb {
    background: linear-gradient(135deg, #537668 0%, #3d5449 100%);
    padding: 80px 0 70px;
}

.gc-breadcrumb .breadcumb-title,
.gc-breadcrumb .breadcumb-menu,
.gc-breadcrumb .breadcumb-menu a {
    color: #fff;
}

.gc-breadcrumb .breadcumb-menu li:not(:last-child)::after {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.gc-footer {
    background: linear-gradient(180deg, #2f453c 0%, #243830 100%);
}

.gc-footer .widget_title,
.gc-footer .about-text,
.gc-footer .footer-text,
.gc-footer .box-title,
.gc-footer .box-text,
.gc-footer .copyright-text,
.gc-footer .copyright-text a {
    color: #fff;
}

.gc-footer .box-text a:hover,
.gc-footer .copyright-text a:hover {
    color: #c8ddd2;
}

/* Pricing cards */
.gc-price-card {
    background: var(--white-color);
    border: 1px solid var(--th-border-color);
    border-radius: 16px;
    padding: 30px 24px;
}

.gc-price-card:after {
    background-color: #1C372C;
}

.gc-price-card .box-icon {
    background-color: #1C372C;
}

.gc-price-card .box-price {
    color: #1C372C;
}

.gc-price-card.item-active {
    border-color: #1C372C;
    box-shadow: 0 20px 50px rgba(28, 55, 44, 0.15);
    color: #fff;
}

.gc-price-card.item-active .th-btn {
    color: #1C372C;
}

.gc-package-summary {
    background: var(--smoke-color2);
    border: 1px solid var(--th-border-color);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.gc-package-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--theme-color);
}

.gc-package-price span {
    font-size: 18px;
    font-weight: 500;
}

.gc-package-signup .form-select {
    width: 100%;
    height: 56px;
    padding: 0 20px 0 45px;
    border: 1px solid var(--th-border-color);
    border-radius: 8px;
    background-color: var(--white-color);
    color: var(--body-color);
    appearance: none;
}

.gc-package-signup .form-group > i.fa-map {
    pointer-events: none;
}

.gc-plan-label {
    font-size: 14px;
    color: var(--body-color);
    margin-bottom: 4px;
}

.gc-price-suffix {
    font-size: 18px;
    font-weight: 500;
}

.gc-plan-desc {
    margin: 16px 0 20px;
    min-height: 72px;
}
.gc-price-card.item-active .gc-plan-desc {
    color: #c8ddd2;
}

/* Inclusions */
.gc-inclusion-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background: var(--smoke-color2);
    color: var(--theme-color);
    font-size: 22px;
    flex-shrink: 0;
}

.gc-inclusions .about-feature {
    padding: 24px;
    border: 1px solid var(--th-border-color);
    border-radius: 12px;
    height: 100%;
}

/* Intro section */
.gc-intro-img img {
    border-radius: 16px;
    width: 100%;
}

/* Shop */
.gc-product-card {
    border: 1px solid var(--th-border-color);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.gc-product-card:hover {
    box-shadow: 0 16px 40px rgba(83, 118, 104, 0.12);
}

.gc-product-card .product-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.gc-product-card .product-content {
    padding: 24px;
}

.gc-product-card .price {
    color: var(--theme-color);
    font-size: 24px;
    font-weight: 700;
}

/* Gallery before/after */
.gc-gallery-item {
    border: 1px solid var(--th-border-color);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    height: 100%;
}

.gc-gallery-item .gc-ba-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.gc-gallery-item .gc-ba-col img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.gc-gallery-item .gc-ba-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.gc-gallery-item .gc-ba-col {
    position: relative;
}

.gc-gallery-meta {
    padding: 20px 24px;
}

.gc-gallery-meta h3 {
    font-size: 18px;
    margin-bottom: 4px;
}

.gc-gallery-meta span {
    color: var(--theme-color);
    font-weight: 600;
}

/* Contact */
.gc-contact-info .contact-feature {
    height: 100%;
}

.gc-whatsapp-btn {
    background: #25d366;
    border-color: #25d366;
}

.gc-whatsapp-btn:hover {
    background: #1fb855;
    border-color: #1fb855;
}

.contact-map iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
}

/* About mission */
.gc-mission-box {
    background: var(--smoke-color2);
    border-radius: 16px;
    padding: 40px;
    border-left: 4px solid var(--theme-color);
}

/* Logo text sizing in header */
.header-logo img,
.mobile-logo img {
    max-height: 52px;
    width: auto;
}

.about-logo img {
    max-height: 48px;
}

/* Active nav */
.main-menu > ul > li.active > a,
.th-mobile-menu ul li.active > a {
    color: var(--theme-color);
}

/* Testimonials on home */
.gc-testimonials .testi-box {
    border: 1px solid var(--th-border-color);
    border-radius: 16px;
    padding: 32px;
    background: #fff;
}

/* Circle progress theme */
.circleProgress {
    fill: var(--theme-color) !important;
}

@media (max-width: 767px) {
    .gc-hero .hero-style2 {
        padding: 90px 0 70px;
    }

    .gc-gallery-item .gc-ba-col img {
        height: 160px;
    }
}
