/* ============================
   NOBLE CALLISTA - MAIN CSS
   Color: Charcoal Grey + Deep Yellow
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
    --yellow: #c9a84c;
    --yellow-lt: #e8c96e;
    --charcoal: #2b2b2b;
    --dark: #1a1a1a;
    --grey: #5a5a5a;
    --light: #f5f3ef;
    --white: #ffffff;
    --border: #e0d9cd;
    --shadow: rgba(0, 0, 0, 0.10);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--charcoal);
    background: var(--white);
    overflow-x: hidden;
}

.toast-stack {
    position: fixed;
    top: 110px;
    right: 24px;
    z-index: 2200;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    min-width: 280px;
    max-width: min(92vw, 360px);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-left: 4px solid transparent;
    background: rgba(26, 26, 26, 0.96);
    color: var(--white);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    border-radius: 10px;
    opacity: 0;
    transform: translate3d(0, -8px, 0);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.toast.show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.toast-success {
    border-left-color: #3dbb7a;
}

.toast-error {
    border-left-color: #db5b57;
}

.toast-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.toast-success .toast-icon {
    background: rgba(61, 187, 122, 0.18);
    color: #84efb2;
}

.toast-error .toast-icon {
    background: rgba(219, 91, 87, 0.18);
    color: #ffb0ad;
}

.toast-message {
    font-size: 13px;
    line-height: 1.5;
}

/* ---------- TOP STRIP ---------- */
.top-strip {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 40px;
}

.top-strip a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
}

.top-strip span {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
}

/* ---------- NAVBAR ---------- */
header {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrap {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 80px;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-decoration: none;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 1px;
}

.logo-main span {
    color: var(--yellow);
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--grey);
}

/* NAV LINKS */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--charcoal);
    text-decoration: none;
    transition: color 0.25s;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--yellow);
}

/* Dropdown */
.has-drop:hover>.dropdown,
.has-drop:focus-within>.dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--yellow);
}

.dropdown li a {
    font-size: 12px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
}

.dropdown li:last-child a {
    border-bottom: none;
}

.dropdown li a:hover {
    background: var(--light);
    color: var(--yellow);
}

/* Price List CTA */
.nav-cta {
    background: var(--yellow);
    color: var(--white) !important;
    padding: 10px 22px !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
    transition: background 0.3s !important;
}

.nav-cta:hover {
    background: var(--charcoal) !important;
    color: var(--white) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--charcoal);
    display: block;
    transition: 0.3s;
}

/* ---------- PAGE HERO ---------- */
.page-hero {
    background: var(--charcoal);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, transparent 60%);
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    font-weight: 700;
    position: relative;
}

.page-hero h1 span {
    color: var(--yellow);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
    position: relative;
}

.gold-bar {
    width: 60px;
    height: 3px;
    background: var(--yellow);
    margin: 14px auto 0;
}

/* ---------- SECTIONS ---------- */
.section {
    padding: 80px 40px;
}

.section-light {
    background: var(--light);
}

.section-dark {
    background: var(--charcoal);
}

.container {
    max-width: 1200px;
    margin: auto;
}

.sec-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--yellow);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.sec-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 16px;
}

.sec-title-white {
    color: var(--white);
}

.sec-title strong {
    color: var(--yellow);
}

.sec-line {
    width: 50px;
    height: 3px;
    background: var(--yellow);
    margin-bottom: 24px;
}

.sec-text {
    color: var(--grey);
    line-height: 1.9;
    font-size: 15px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block;
    padding: 14px 34px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-gold {
    background: var(--yellow);
    color: var(--white);
}

.btn-gold:hover {
    background: var(--charcoal);
    color: var(--white);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--yellow);
    color: var(--white);
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--yellow);
    color: var(--yellow);
}

.btn-outline-gold:hover {
    background: var(--yellow);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline-white:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

/* ---------- CARDS ---------- */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.card img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 20px;
}

.card-body h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.card-body p {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.7;
}

/* ---------- FEATURE LIST ---------- */
.feat-list {
    list-style: none;
}

.feat-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--grey);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.feat-list li::before {
    content: '◆';
    color: var(--yellow);
    font-size: 8px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ---------- GRID HELPERS ---------- */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ---------- ENQUIRY SIDEBAR ---------- */
.enq-sidebar {
    background: var(--charcoal);
    padding: 36px 30px;
    border-top: 4px solid var(--yellow);
}

.enq-sidebar h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 6px;
}

.enq-sidebar p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--yellow);
}

.form-group textarea {
    height: 90px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--yellow);
    color: var(--white);
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--yellow-lt);
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--dark);
    padding: 60px 40px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .logo-main {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    line-height: 1.8;
    margin: 14px 0;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--yellow);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    line-height: 1.8;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--yellow);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.footer-bottom a {
    color: var(--yellow);
    text-decoration: none;
}

.footer-disclaimer {
    background: #111;
    padding: 16px 40px;
    text-align: center;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    line-height: 1.7;
    max-width: 900px;
    margin: auto;
}

/* ---------- FLOATERS ---------- */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s;
    animation: pulse 2s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
}

.wa-float i {
    color: #fff;
    font-size: 26px;
}

.call-float {
    position: fixed;
    bottom: 88px;
    right: 24px;
    z-index: 999;
    width: 54px;
    height: 54px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
    text-decoration: none;
    transition: transform 0.3s;
}

.call-float:hover {
    transform: scale(1.1);
}

.call-float i {
    color: #fff;
    font-size: 22px;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }
}

/* ---------- MODAL ENQUIRY ---------- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: var(--charcoal);
    width: 90%;
    max-width: 440px;
    border-top: 4px solid var(--yellow);
    padding: 40px;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--yellow);
}

.modal-box h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    font-size: 26px;
    margin-bottom: 6px;
}

.modal-box p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-bottom: 22px;
}

/* ---------- SCROLL TO TOP ---------- */
#scrollTop {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    width: 42px;
    height: 42px;
    background: var(--charcoal);
    border: 2px solid var(--yellow);
    color: var(--yellow);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

#scrollTop:hover {
    background: var(--yellow);
    color: var(--white);
}

#scrollTop.show {
    display: flex;
}

/* ---------- ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-strip {
        padding: 8px 20px;
        font-size: 11px;
    }

    .nav-wrap {
        padding: 0 20px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 30px var(--shadow);
        gap: 0;
    }

    nav ul.open {
        display: flex;
    }

    nav ul li a {
        padding: 12px 20px;
        border-bottom: 1px solid var(--border);
    }

    .dropdown {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--light);
    }

    .hamburger {
        display: flex;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section {
        padding: 60px 20px;
    }

    .page-hero {
        padding: 50px 20px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    footer {
        padding: 50px 20px 0;
    }

    .footer-bottom {
        padding: 18px 20px;
    }

    .footer-disclaimer {
        padding: 14px 20px;
    }
}

@media (max-width: 500px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .toast-stack {
        top: 92px;
        right: 14px;
        left: 14px;
    }

    .toast {
        min-width: 0;
        max-width: 100%;
    }
}

/* enquiry form */

/* ENQUIRY BOX */
.enquiry-box{
  position: absolute;
  top: 385px;
  right: 90px;
  transform: translateY(-50%);
  z-index: 10;

  width: 520px;
  max-width: 375px;

  background: #8a7300; /* mustard */
  padding: 34px 34px 28px;
  border-radius: 4px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

/* Title */
.enquiry-box h3{
  margin: 0 0 22px;
  text-align: center;
  color: #fff;
  font-size: 28px;
  line-height: 1.1;
  font-family: "Georgia", serif;
  font-weight: 700;
}

/* Inputs */
.enquiry-form input,
.enquiry-form textarea{
  width: 100%;
  background: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 14px 14px;
  margin-bottom: 16px;
  font-size: 12px;
  border-radius: 3px;
  outline: none;
}

.enquiry-form textarea{
  min-height: 120px;
  resize: none;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus{
  border-color: rgba(255,255,255,0.75);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}

/* Button */
.enquiry-btn{
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 3px;
  background: #2f6fae; /* blue */
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.enquiry-btn:hover{
  filter: brightness(0.95);
}

/* Responsive */
@media (max-width: 1200px){
  .enquiry-box{ max-width: 350px; }
}

@media (max-width: 992px){
  .enquiry-box{
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 12px auto 0;
    right: auto;
    border-radius: 0;
  }
}

/* Blog Enquiry css Update */
.sidebar-form {
    margin-top: -4px;
}

.sidebar-form .form-group {
    margin-bottom: 10px;
}

.sidebar-form input,
.sidebar-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border 0.3s, box-shadow 0.3s;
}

.sidebar-form textarea {
    min-height: 80px;
    resize: none;
}

.sidebar-form input:focus,
.sidebar-form textarea:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.15);
}

.sidebar-btn {
    width: 100%;
    padding: 12px;
    background: var(--charcoal);
    color: #fff;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sidebar-btn:hover {
    background: var(--yellow);
}

.slide-overlay {
    pointer-events: none;
}
