:root {
  color-scheme: light;
}

html,
body {
  background: #ffffff !important;
  color: #111827 !important;
}

input,
textarea,
select,
button {
  color-scheme: light;
}

















:root {
    --primary: #064e5f;
    --dark: #073642;
    --gold: #c9aa63;
    --green: #138a52;
    --light: #f4faf8;
    --text: #24434a
}

* {
    box-sizing: border-box
}







/* --- Creative Styling Variables --- */
:root {
  --color-primary: #1e3932;       /* Rich Island Emerald Green */
  --color-gold: #e2c293;          /* Bright Luxury Gold for dark backgrounds */
  --color-gold-hover: #f3dcb8;
  --color-whatsapp: #10b981;      /* Clean WhatsApp Emerald */
}

/* Hero Container Background Image setup */
.hero {
  background-image: url('your-image-path/image_f85d47.jpg'); /* Your uploaded Maldives background */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Crucial overlay gradient to make left text readable while revealing right image */
.hero-bg-overlay {
  background: linear-gradient(to right, rgba(15, 32, 27, 0.0) 0%, rgba(15, 32, 27, 0.0) 50%, rgba(15, 32, 27, 0.0) 100%);
}

@media (max-width: 991.98px) {
  .hero-bg-overlay {
    background: linear-gradient(to bottom, rgba(15, 32, 27, 0.0) 0%, rgba(15, 32, 27, 0.0) 100%);
  }
}

/* Typography Custom Styling */
.text-dark-blue { color: var(--color-primary); }
.text-gold { color: var(--color-gold); }
.tracking-wider { letter-spacing: 0.08rem; }

.text-light-muted {
  color: rgba(255, 255, 255, 0.85);
}

/* Bright Gold Gradient for Headline emphasis */
.text-gradient-gold {
  background: linear-gradient(45deg, #ffe3bb, var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Anti-aliasing text shadow tweaks for readability on high-res panels */
.text-shadow-sm {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.text-shadow-sub {
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Premium Badge styling adjusted for dark backdrop */
.badge-premium {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
}

/* Luxury Card Right-Side Styling */
.hero-card-premium {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 1) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15) !important;
}

.card-glow-effect {
  width: 180px;
  height: 180px;
  background: var(--color-gold);
  filter: blur(90px);
  opacity: 0.25;
  top: -30px;
  right: -30px;
}

/* List Icon Architecture */
.bg-success-soft {
  background-color: rgba(30, 57, 50, 0.08);
}
.feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}
.feature-icon-wrapper i {
  font-size: 0.95rem;
  color: var(--color-primary) !important;
}

/* Re-styled Call To Actions */
.btn-main {
  background-color: var(--color-whatsapp);
  color: #fff;
  border: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-main:hover {
  background-color: #059669;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.btn-outline-gold {
  border: 2px solid var(--color-gold);
  color: #ffffff;
  background: red;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-outline-gold:hover {
  background-color: var(--color-gold);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(226, 194, 147, 0.2);
}




















body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--text);
    overflow-x: hidden
}

.topbar {
    background: var(--primary);
    color: #fff;
    padding: 8px 0
}

.navbar-brand img {
    height: 54px;
    max-width: 170px;
    object-fit: contain
}

.navbar-brand span {
    line-height: 1;
    display: flex;
    flex-direction: column;
    color: var(--primary);
    font-size: 18px
}

.navbar-brand small {
    font-size: 11px;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--gold)
}

.nav-link {
    font-weight: 700;
    color: var(--dark) !important
}

.nav-link:hover {
    color: var(--gold) !important
}

.btn-whatsapp,
.btn-main {
    background: linear-gradient(135deg, #11a85b, #0b7b43);
    color: #fff !important;
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 800;
    border: 0;
    box-shadow: 0 12px 25px rgba(17, 168, 91, .22)
}

.btn-gold {
    background: linear-gradient(135deg, #e4c77d, #b7923b);
    color: #073642 !important;
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 800;
    border: 0
}

.hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    background: linear-gradient(110deg, rgba(6, 79, 95, 0.425), rgba(6, 78, 95, .74)), url('../img/hero-produce.jpg') center/cover no-repeat;

    color: #fff;
    overflow: hidden
}

.hero:before {
    content: "";
    position: absolute;
    inset: auto -10% -25% -10%;
    height: 340px;
    background: #fff;
    border-radius: 50% 50% 0 0/100% 100% 0 0
}

.badge-soft {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 9px 16px;
    border-radius: 40px;
    color: #fff
}

.hero h1 {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.02
}

.hero p {
    font-size: 18px;
    max-width: 720px
}

.hero-card {
    background: #fff;
    color: var(--dark);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .18)
}

.hero-card li {
    margin: 10px 0
}

.section {
    padding: 90px 0
}

.section-title {
    font-weight: 900;
    color: var(--primary);
    font-size: clamp(30px, 4vw, 46px)
}

.sub-title {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px
}

.cat-card,
.feature-card,
.product-card,
.service-card {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 45px rgba(7, 54, 66, .09);
    transition: .35s
}

.cat-card:hover,
.feature-card:hover,
.product-card:hover,
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(7, 54, 66, .16)
}

.cat-icon {
    font-size: 52px
}

.feature-card {
    padding: 28px;
    height: 100%
}

.feature-card i {
    font-size: 32px;
    color: var(--green)
}

.bg-soft {
    background: var(--light)
}

.product-card img {
    height: 230px;
    width: 100%;
    object-fit: cover
}

.price {
    font-weight: 900;
    color: var(--green);
    font-size: 20px
}

.hide-price {
    color: var(--gold);
    font-weight: 800
}

.service-card {
    padding: 34px;
    height: 100%;
    background: linear-gradient(180deg, #fff, #f7fbfa)
}

.service-card i {
    font-size: 42px;
    color: var(--primary)
}

.cta {
    background: linear-gradient(135deg, var(--primary), #0a7185);
    color: #fff;
    border-radius: 36px;
    padding: 55px;
    position: relative;
    overflow: hidden
}

.cta:after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(201, 170, 99, .22)
}

.footer {
    background: #052d36;
    color: #dcecef
}

.footer a {
    display: block;
    color: #dcecef;
    text-decoration: none;
    margin: 8px 0
}

.footer a:hover {
    color: var(--gold)
}

.footer-logo {
    max-height: 70px;
    max-width: 240px;
    background: #fff;
    padding: 8px;
    border-radius: 10px
}

.float-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    font-size: 32px;
    z-index: 999;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .22);
    text-decoration: none
}

.page-hero {
    background: linear-gradient(135deg, var(--primary), #0c7184);
    color: #fff;
    padding: 95px 0
}

.breadcrumb a {
    color: #d8f7ef
}

.gallery-main {
    height: 430px;
    object-fit: cover;
    border-radius: 26px;
    width: 100%
}

.thumb {
    height: 95px;
    object-fit: cover;
    border-radius: 16px;
    cursor: pointer
}

.contact-box {
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 14px 45px rgba(7, 54, 66, .09);
    padding: 30px
}

.form-control,
.form-select {
    border-radius: 14px;
    padding: 13px
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: all .8s ease
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:991px) {
    .hero {
        min-height: auto;
        padding: 90px 0 120px
    }

    .section {
        padding: 60px 0
    }

    .hero-card {
        margin-top: 30px
    }

    .navbar-brand img {
        height: 44px
    }

    .navbar-brand span {
        font-size: 15px
    }

    .cta {
        padding: 32px
    }

    .gallery-main {
        height: 300px
    }
}

@media(max-width:575px) {
    .hero h1 {
        font-size: 38px
    }

    .btn-main,
    .btn-gold,
    .btn-whatsapp {
        width: 100%;
        margin-top: 8px
    }

    .product-card img {
        height: 190px
    }

    .float-wa {
        width: 54px;
        height: 54px;
        font-size: 28px
    }
}

/* SEO product browsing + responsive product slider upgrade */
.product-browser-hero {
    background: linear-gradient(135deg, rgba(6, 78, 95, .94), rgba(8, 117, 91, .88)), url('../img/hero-produce.jpg') center/cover;
    color: #fff;
    padding: 82px 0;
}

.product-browser-hero h1 {
    font-weight: 800;
    letter-spacing: -.04em;
}

.product-filter-bar {
    position: sticky;
    top: 82px;
    z-index: 20;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 22px;
    padding: 15px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .08);
}

.product-card .product-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.product-card .pill {
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 30px;
    background: #eef9f3;
    color: #08755b;
    font-weight: 700;
}

.product-card .supply-note {
    font-size: 13px;
    color: #5c6873;
    min-height: 42px;
}

.product-slider-wrap {
    background: #fff;
    border-radius: 28px;
    padding: 16px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .10);
    border: 1px solid rgba(0, 0, 0, .06);
}

.product-slider {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #f5f8f6;
}

.product-slider-track {
    display: flex;
    transition: transform .45s ease;
}

.product-slide {
    min-width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, .92);
    color: #064e5f;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .20);
    z-index: 5;
}

.slider-btn.prev {
    left: 12px
}

.slider-btn.next {
    right: 12px
}

.product-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-top: 12px;
}

.product-thumbs img {
    width: 82px;
    height: 68px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    border: 3px solid transparent;
    opacity: .75;
    transition: .2s;
}

.product-thumbs img.active,
.product-thumbs img:hover {
    border-color: #d5a847;
    opacity: 1;
}

.supply-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.supply-info-grid .info-box {
    background: #f8fbfa;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(6, 78, 95, .08);
}

.supply-info-grid .info-box b {
    display: block;
    color: #064e5f;
}

.seo-content-box {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .07);
    border: 1px solid rgba(0, 0, 0, .06);
}

@media(max-width:991px) {
    .product-filter-bar {
        position: static
    }

    .supply-info-grid {
        grid-template-columns: 1fr
    }

    .product-browser-hero {
        padding: 58px 0
    }

    .product-thumbs img {
        width: 70px;
        height: 58px
    }
}

@media(max-width:575px) {
    .product-slider-wrap {
        padding: 10px;
        border-radius: 20px
    }

    .product-slide {
        aspect-ratio: 1/1
    }

    .slider-btn {
        width: 36px;
        height: 36px
    }

    .product-browser-hero h1 {
        font-size: 34px
    }
}