:root {
--green-deep: #1A3D2B;
--green-mid: #2E5E40;
--green-sage: #4A7C5F;
--gold: #C8A84B;
--gold-light: #E2C97A;
--cream: #F5F0E8;
--cream-dark: #EDE5D5;
--white: #FFFFFF;
--charcoal: #1C1C1C;
--gray: #6B7280;
--font-display: 'Cormorant Garamond', Georgia, serif;
--font-body: 'Inter', sans-serif;
--radius: 2px;
--transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
font-family: var(--font-body);
color: var(--charcoal);
background: var(--cream);
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}
/* ─── NAVBAR ─── */
.navbar {
position: relative; top: 0; left: 0; right: 0; z-index: 1000;
display: flex; align-items: center; justify-content: space-between;
padding: 0 48px;
background: rgba(26, 61, 43, 0.96);
backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(200, 168, 75, 0.25);
transition: var(--transition);
}
.navbar.scrolled {
height: 66px;
background: rgba(18, 40, 27, 0.98);
box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.nav-logo {
display: flex; align-items: center; gap: 12px;
text-decoration: none;
}
.nav-logo-img {
width: 90px; height: 90px; border-radius: 50%;
border: 1.5px solid var(--gold);
object-fit: cover;
background: var(--green-mid);
display: flex; justify-content: center;
overflow: hidden;
}
.nav-logo-img svg { width: 40px; height: 40px; }
.nav-brand { display: flex; flex-direction: column; }
.nav-brand-name {
font-family: var(--font-display);
font-size: 28px; font-weight: 600;
color: var(--cream); letter-spacing: 0.02em;
line-height: 1.1;
}
.nav-brand-sub {
font-size: 14px; font-weight: 400; color: var(--gold-light);
letter-spacing: 0.14em; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
font-size: 0.99rem; font-weight: 500; letter-spacing: 0.08em;
text-transform: uppercase; color: rgba(245,240,232,0.85);
text-decoration: none; position: relative;
transition: color 0.25s;
}
.nav-links a::after {
content: ''; position: absolute; bottom: -3px; left: 0;
width: 0; height: 1px; background: var(--gold);
transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-book-btn {
padding: 10px 24px; background: var(--gold);
color: var(--green-deep) !important; border-radius: var(--radius);
font-weight: 600 !important; font-size: 0.78rem !important;
letter-spacing: 0.1em; transition: background 0.25s, transform 0.2s !important;
}
.nav-book-btn:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-book-btn::after { display: none !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition:
var(--transition); }
/* ─── HERO ─── */
.hero {
min-height: 100vh; position: relative;
display: flex; align-items: center;
background: var(--green-deep);
overflow: hidden;
}
.hero-bg {
position: absolute; inset: 0;
background: linear-gradient(135deg, #0D2419 0%, #1A3D2B 40%, #2E5E40 75%, #1A3D2B 100%);
}
.hero-pattern {
position: absolute; inset: 0; opacity: 0.04;
background-image: repeating-linear-gradient(
0deg, transparent, transparent 60px,
rgba(200,168,75,0.5) 60px, rgba(200,168,75,0.5) 61px
), repeating-linear-gradient(
90deg, transparent, transparent 60px,
rgba(200,168,75,0.5) 60px, rgba(200,168,75,0.5) 61px
);
}
.hero-glow {
position: absolute; top: -20%; right: -10%;
width: 70vw; height: 70vw; max-width: 800px; max-height: 800px;
border-radius: 50%;
background: radial-gradient(circle, rgba(200,168,75,0.1) 0%, transparent 70%);
pointer-events: none;
}
.hero-wheat-left {
position: absolute; left: -40px; bottom: 0; height: 80vh;
opacity: 0.12; pointer-events: none;
}
.hero-wheat-right {
position: absolute; right: -20px; bottom: 0; height: 60vh;
opacity: 0.1; pointer-events: none;
}
.hero-content {
position: relative; z-index: 2;
max-width: 1200px; margin: 0 auto;
padding: 140px 48px 100px;
display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-text {}
.hero-eyebrow {
display: inline-flex; align-items: center; gap: 10px;
font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
text-transform: uppercase; color: var(--gold);
margin-bottom: 24px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
content: ''; display: block; width: 28px; height: 1px; background: var(--gold); opacity: 0.6;
}
.hero-h1 {
font-family: var(--font-display);
font-size: clamp(2.8rem, 5vw, 4.2rem);
font-weight: 300; line-height: 1.12;
color: var(--cream); margin-bottom: 28px;
letter-spacing: -0.01em;
}
.hero-h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
font-size: 1rem; line-height: 1.75; color: rgba(245,240,232,0.72);
max-width: 480px; margin-bottom: 48px; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
padding: 15px 36px; background: var(--gold);
color: var(--green-deep); font-weight: 600; font-size: 0.82rem;
letter-spacing: 0.1em; text-transform: uppercase;
border: none; border-radius: var(--radius); cursor: pointer;
text-decoration: none; transition: all 0.3s;
display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px
rgba(200,168,75,0.35); }
.btn-outline {
padding: 14px 36px; background: transparent;
color: var(--cream); font-weight: 500; font-size: 0.82rem;
letter-spacing: 0.1em; text-transform: uppercase;
border: 1px solid rgba(245,240,232,0.35); border-radius: var(--radius);
cursor: pointer; text-decoration: none; transition: all 0.3s;
display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.hero-stats {
display: flex; gap: 40px; margin-top: 56px; padding-top: 40px;
border-top: 1px solid rgba(200,168,75,0.2);
}
.hero-stat-num {
font-family: var(--font-display); font-size: 2.4rem; font-weight: 300;
color: var(--gold-light); line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: rgba(245,240,232,0.6); margin-top: 4px; line-height: 1.4; }
.hero-visual {
display: flex; align-items: center; justify-content: center;
position: relative;
}
.hero-circle-wrap {
position: relative; width: 420px; height: 420px;
max-width: 90vw; max-height: 90vw;
}
.hero-circle-ring {
position: absolute; inset: 0; border-radius: 50%;
border: 1px solid rgba(200,168,75,0.2);
animation: ringPulse 4s ease-in-out infinite;
}
.hero-circle-ring:nth-child(2) { inset: 20px; border-color: rgba(200,168,75,0.15); animation-delay: 1s; }
.hero-circle-ring:nth-child(3) { inset: 40px; border-color: rgba(200,168,75,0.1); animation-delay: 2s; }
@keyframes ringPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }
.hero-logo-center {
position: absolute; inset: 60px; border-radius: 50%;
background: radial-gradient(circle, rgba(46,94,64,0.6) 0%, rgba(26,61,43,0.8) 100%);
border: 2px solid rgba(200,168,75,0.4);
display: flex; align-items: center; justify-content: center;
overflow: hidden;
}
.hero-logo-center img { width: 100%; height: 100%; object-fit: cover; }
.hero-logo-svg {
width: 75%; height: 75%;
display: flex; align-items: center; justify-content: center;
}
/* ─── SECTION BASE ─── */
section { position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-eyebrow {
display: inline-flex; align-items: center; gap: 12px;
font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.section-eyebrow span { display: block; width: 32px; height: 1px; background: var(--gold); }
.section-title {
font-family: var(--font-display);
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 300; line-height: 1.2;
color: var(--green-deep); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--green-mid); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--gold-light); }
.section-body {
font-size: 1rem; line-height: 1.8; color: var(--gray);
max-width: 600px; font-weight: 300;
}
.wheat-divider {
display: flex; align-items: center; gap: 20px;
margin: 24px 0; opacity: 0.5;
}
.wheat-divider::before, .wheat-divider::after {
content: ''; flex: 1; height: 1px; background: var(--gold);
}
.wheat-divider svg { width: 24px; height: 24px; color: var(--gold); }
/* ─── WHY CHOOSE ─── */
.why-section { padding: 41px 0; background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 60px; }
.why-image-wrap { position: relative; }
.why-image-frame {
aspect-ratio: 4/5; border-radius: 4px; overflow: hidden;
position: relative;
}
.why-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.why-image-placeholder {
width: 100%; height: 100%;
background: linear-gradient(145deg, var(--green-mid) 0%, var(--green-deep) 100%);
display: flex; align-items: center; justify-content: center;
}
.why-badge {
position: absolute; bottom: -24px; right: -24px;
width: 140px; height: 140px; border-radius: 50%;
background: var(--gold);
display: flex; flex-direction: column; align-items: center; justify-content: center;
box-shadow: 0 8px 30px rgba(200,168,75,0.4);
}
.why-badge-num {
font-family: var(--font-display); font-size: 2.2rem; font-weight: 300;
color: var(--green-deep); line-height: 1;
}
.why-badge-text { font-size: 0.65rem; font-weight: 600; color: var(--green-deep); letter-spacing: 0.1em; text-transform:
uppercase; text-align: center; padding: 0 12px; }
.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.why-feature { display: flex; gap: 20px; align-items: flex-start; }
.why-feature-icon {
width: 48px; height: 48px; flex-shrink: 0;
background: rgba(26,61,43,0.08); border-radius: 50%;
display: flex; align-items: center; justify-content: center;
border: 1px solid rgba(200,168,75,0.3);
}
.why-feature-icon svg { width: 22px; height: 22px; color: var(--green-mid); }
.why-feature-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--green-deep);
margin-bottom: 4px; }
.why-feature-text { font-size: 0.88rem; line-height: 1.7; color: var(--gray); font-weight: 300; }
/* ─── SERVICES ─── */
.services-section { padding: 110px 0; background: var(--green-deep); }
.services-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
background: rgba(255,255,255,0.04); border: 1px solid rgba(200,168,75,0.15);
border-radius: 4px; padding: 36px 28px;
transition: all 0.4s; cursor: pointer; position: relative; overflow: hidden;
}
.service-card::before {
content: ''; position: absolute; inset: 0;
background: linear-gradient(135deg, rgba(200,168,75,0.08) 0%, transparent 100%);
opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { border-color: rgba(200,168,75,0.5); transform: translateY(-6px); box-shadow: 0 20px 50px
rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }
.service-icon {
width: 56px; height: 56px; margin-bottom: 24px;
background: rgba(200,168,75,0.1); border-radius: 50%;
display: flex; align-items: center; justify-content: center;
border: 1px solid rgba(200,168,75,0.25);
transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(200,168,75,0.2); }
.service-icon svg { width: 26px; height: 26px; color: var(--gold); }
.service-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--cream);
margin-bottom: 10px; }
.service-desc { font-size: 0.83rem; line-height: 1.7; color: rgba(245,240,232,0.55); font-weight: 300; }
.service-arrow {
display: inline-flex; align-items: center; gap: 6px;
font-size: 0.75rem; color: var(--gold); margin-top: 20px;
font-weight: 500; letter-spacing: 0.08em;
opacity: 0; transform: translateX(-6px);
transition: all 0.3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }
/* ─── ABOUT ─── */
.about-section { padding: 110px 0; background: var(--cream-dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text {}
.about-quote {
font-family: var(--font-display); font-size: 1.5rem; font-weight: 300;
font-style: italic; color: var(--green-mid); line-height: 1.55;
border-left: 3px solid var(--gold); padding-left: 24px; margin: 32px 0;
}
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.about-value {
padding: 20px; background: var(--white); border-radius: 4px;
border: 1px solid rgba(200,168,75,0.2);
display: flex; gap: 12px; align-items: flex-start;
}
.about-value-dot {
width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
flex-shrink: 0; margin-top: 5px;
}
.about-value-text { font-size: 0.85rem; color: var(--charcoal); line-height: 1.5; font-weight: 400; }
.about-image-stack { position: relative; }
.about-img-main {
aspect-ratio: 3/4; border-radius: 4px; overflow: hidden;
border: 1px solid rgba(200,168,75,0.2);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
width: 100%; height: 100%;
background: linear-gradient(160deg, #2E5E40 0%, #1A3D2B 100%);
display: flex; align-items: center; justify-content: center;
}
.about-img-secondary {
position: absolute; bottom: -30px; right: -30px;
width: 55%; aspect-ratio: 1; border-radius: 4px; overflow: hidden;
border: 4px solid var(--cream-dark);
box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary-placeholder {
width: 100%; height: 100%;
background: linear-gradient(160deg, var(--gold) 0%, #9A7B2A 100%);
display: flex; align-items: center; justify-content: center;
}
/* ─── PROCESS ─── */
.process-section { padding: 110px 0; background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 64px; position: relative;
}
.process-steps::before {
content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 1px;
background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
opacity: 0.3; z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
width: 64px; height: 64px; border-radius: 50%;
background: var(--green-deep); border: 2px solid var(--gold);
display: flex; align-items: center; justify-content: center;
margin: 0 auto 24px;
font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; color: var(--gold);
position: relative; z-index: 1;
}
.process-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--green-deep);
margin-bottom: 10px; }
.process-text { font-size: 0.83rem; line-height: 1.7; color: var(--gray); font-weight: 300; }
/* ─── TESTIMONIALS ─── */
.testimonials-section { padding: 110px 0; background: var(--green-deep); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.testimonial-card {
background: rgba(255,255,255,0.05); border: 1px solid rgba(200,168,75,0.15);
border-radius: 4px; padding: 36px;
transition: transform 0.3s, border-color 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(200,168,75,0.4); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-stars svg { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }
.testimonial-text { font-family: var(--font-display); font-size: 1.05rem; font-weight: 300; font-style: italic; color:
rgba(245,240,232,0.85); line-height: 1.65; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
width: 40px; height: 40px; border-radius: 50%;
background: var(--green-mid); border: 1.5px solid var(--gold);
display: flex; align-items: center; justify-content: center;
font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--gold);
}
.testimonial-name { font-size: 0.85rem; font-weight: 500; color: var(--cream); }
.testimonial-location { font-size: 0.75rem; color: rgba(245,240,232,0.45); }
/* ─── CONTACT ─── */
.contact-section { padding: 110px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contact-info { }
.contact-items { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-item-icon {
width: 48px; height: 48px; flex-shrink: 0;
background: var(--green-deep); border-radius: 50%;
display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-item-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color:
var(--gold); margin-bottom: 4px; }
.contact-item-value { font-family: var(--font-display); font-size: 1.05rem; color: var(--green-deep); font-weight: 400;
}
.contact-item-value a { color: inherit; text-decoration: none; }
.contact-form-wrap {
background: var(--white); border-radius: 4px; padding: 48px;
border: 1px solid rgba(200,168,75,0.2);
box-shadow: 0 20px 60px rgba(26,61,43,0.08);
}
.contact-form-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--green-deep);
margin-bottom: 8px; }
.contact-form-sub { font-size: 0.85rem; color: var(--gray); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform:
uppercase; color: var(--green-deep); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
width: 100%; padding: 13px 16px;
font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal);
background: var(--cream); border: 1px solid rgba(26,61,43,0.2);
border-radius: var(--radius); outline: none;
transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(46,94,64,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
width: 100%; padding: 16px; background: var(--green-deep);
color: var(--cream); font-family: var(--font-body); font-size: 0.85rem;
font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
border: none; border-radius: var(--radius); cursor: pointer;
transition: background 0.3s, transform 0.2s;
display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { background: var(--green-mid); transform: translateY(-1px); }
/* ─── FOOTER ─── */
.footer { background: #0D2419; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-circle {
width: 48px; height: 48px; border-radius: 50%;
background: var(--green-mid); border: 1px solid var(--gold);
display: flex; align-items: center; justify-content: center;
}
.footer-brand-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--cream); }
.footer-brand-sub { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.footer-tagline { font-size: 0.88rem; line-height: 1.7; color: #ffffff; max-width: 300px; font-weight: 300;
margin-bottom: 28px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
width: 36px; height: 36px; border-radius: 50%;
border: 1px solid rgba(200,168,75,0.3);
display: flex; align-items: center; justify-content: center;
transition: all 0.25s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social a:hover svg { color: var(--green-deep); }
.footer-social svg { width: 16px; height: 16px; color: rgba(245,240,232,0.5); }
.footer-col-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color:
var(--gold); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: #ffffff; text-decoration: none; transition: color 0.2s; font-weight: 300; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(200,168,75,0.1); padding-top: 32px; display: flex; justify-content:
space-between; align-items: center; }
.footer-copy { font-size: 0.78rem; color: rgba(245,240,232,0.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: rgba(245,240,232,0.35); text-decoration: none; }
/* ─── FLOATING BOOK BUTTON ─── */
.float-book {
position: fixed; bottom: 32px; right: 32px; z-index: 999;
display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.float-book-btn {
width: 60px; height: 60px; border-radius: 50%;
background: var(--gold); border: none; cursor: pointer;
box-shadow: 0 8px 30px rgba(200,168,75,0.5);
display: flex; align-items: center; justify-content: center;
transition: all 0.3s; position: relative;
}
.float-book-btn:hover { transform: scale(1.1); background: var(--gold-light); }
.float-book-btn svg { width: 26px; height: 26px; color: var(--green-deep); }
.float-pulse {
position: absolute; inset: -4px; border-radius: 50%;
border: 2px solid var(--gold); animation: floatPulse 2s ease-out infinite;
}
@keyframes floatPulse { 0%{transform:scale(1);opacity:0.8} 100%{transform:scale(1.4);opacity:0} }
.float-tooltip {
background: var(--green-deep); color: var(--cream); font-size: 0.78rem;
font-weight: 500; padding: 8px 14px; border-radius: 20px;
white-space: nowrap; pointer-events: none;
box-shadow: 0 4px 16px rgba(0,0,0,0.25);
animation: tooltipBob 3s ease-in-out infinite;
}
@keyframes tooltipBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
/* ─── BOOKING POPUP ─── */
.popup-overlay {
position: fixed; inset: 0; z-index: 2000;
background: rgba(13,36,25,0.85); backdrop-filter: blur(8px);
display: flex; align-items: center; justify-content: center;
opacity: 0; pointer-events: none; transition: opacity 0.35s;
padding: 20px;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-box {
background: var(--white); border-radius: 4px;
width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto;
padding: 48px; position: relative;
transform: translateY(20px); transition: transform 0.35s;
box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.popup-overlay.active .popup-box { transform: translateY(0); }
.popup-close {
position: absolute; top: 20px; right: 20px;
width: 36px; height: 36px; background: var(--cream); border: none;
border-radius: 50%; cursor: pointer;
display: flex; align-items: center; justify-content: center;
transition: background 0.2s;
}
.popup-close:hover { background: var(--cream-dark); }
.popup-close svg { width: 18px; height: 18px; }
.popup-eyebrow { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color:
var(--gold); margin-bottom: 8px; }
.popup-title { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--green-deep);
margin-bottom: 6px; }
.popup-sub { font-size: 0.85rem; color: var(--gray); margin-bottom: 32px; }
.popup-success {
text-align: center; padding: 40px 0;
display: none; flex-direction: column; align-items: center; gap: 12px;
}
.popup-success.show { display: flex; }
.popup-success-icon {
width: 64px; height: 64px; border-radius: 50%;
background: rgba(26,61,43,0.08); border: 2px solid var(--green-mid);
display: flex; align-items: center; justify-content: center;
}
.popup-success-icon svg { width: 32px; height: 32px; color: var(--green-mid); }
.popup-success h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--green-deep); }
.popup-success p { font-size: 0.9rem; color: var(--gray); }
/* ─── MOBILE NAV DRAWER ─── */
.mobile-drawer {
position: fixed; top: 0; right: -100%; bottom: 0; width: 80%; max-width: 320px;
background: var(--green-deep); z-index: 1100;
padding: 100px 40px 40px; transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
display: flex; flex-direction: column; gap: 8px;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer a {
display: block; padding: 14px 0;
font-size: 0.9rem; font-weight: 500; letter-spacing: 0.08em;
text-transform: uppercase; color: rgba(245,240,232,0.8); text-decoration: none;
border-bottom: 1px solid rgba(200,168,75,0.1);
transition: color 0.2s;
}
.mobile-drawer a:hover { color: var(--gold-light); }
.mobile-drawer .drawer-book-btn {
margin-top: 24px; padding: 15px; background: var(--gold);
color: var(--green-deep); text-align: center; font-weight: 600;
border-radius: 2px; border: none;
}
.drawer-overlay {
position: fixed; inset: 0; z-index: 1050; background: rgba(0,0,0,0.5);
opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.drawer-overlay.active { opacity: 1; pointer-events: all; }
/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
.services-grid { grid-template-columns: repeat(2, 1fr); }
.testimonials-grid { grid-template-columns: repeat(2, 1fr); }
.footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
.navbar { padding: 0 20px; }
.nav-links { display: none; }
.nav-hamburger { display: flex; }
.container { padding: 0 20px; }
.hero-content { grid-template-columns: 1fr; gap: 40px; padding: 120px 20px 80px; }
.hero-visual { display: none; }
.hero-stats { gap: 24px; }
.why-grid { grid-template-columns: 1fr; }
.why-badge { width: 110px; height: 110px; right: -10px; bottom: -10px; }
.services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
.about-grid { grid-template-columns: 1fr; }
.about-img-secondary { display: none; }
.process-steps { grid-template-columns: 1fr 1fr; }
.process-steps::before { display: none; }
.testimonials-grid { grid-template-columns: 1fr; }
.contact-grid { grid-template-columns: 1fr; }
.contact-form-wrap { padding: 28px 20px; }
.footer-grid { grid-template-columns: 1fr; gap: 36px; }
.footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
.form-row { grid-template-columns: 1fr; }
.about-values { grid-template-columns: 1fr; }
.services-intro { flex-direction: column; align-items: flex-start; gap: 16px; }
.float-book { bottom: 20px; right: 20px; }
.popup-box { padding: 32px 20px; }
}
@media (max-width: 480px) {
.services-grid { grid-template-columns: 1fr; }
.process-steps { grid-template-columns: 1fr; }
.hero-stats { flex-direction: column; gap: 16px; border-top: none; padding-top: 0; }
}
@media screen and (max-width:767px){
.nav-logo-img {
width: 50px;
height: 50px;

}
}

.slider{
position:relative;
width:100%;
height:500px;
overflow:hidden;
}
.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:0.8s;
}
.slide img{
width:100%;
/*height:100%;*/
object-fit:contain;
display:block;
}
.slide.active{
opacity:1;
}
.prev,.next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.3);
color:#fff;
border:none;
font-size:30px;
padding:8px 12px;
cursor:pointer;
}
.prev{left:10px;}
.next{right:10px;}
.dots{
position:absolute;
bottom:15px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:8px;
}
.dot{
width:10px;
height:10px;
border-radius:50%;
background:#bbb;
cursor:pointer;
}
.dot.active{
background:#000;
}
@media screen and (max-width:767px){
.slider{

height:358px!important;

}
}
.contact-section{
background:#f3efe7;
padding:100px 20px;
}
.contact-section .container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:70px;
}
/* LEFT */
.contact-content{
flex:1;
max-width:520px;
}
.section-tag{
display:inline-block;
color:#c9a24c;
font-size:12px;
letter-spacing:3px;
margin-bottom:20px;
position:relative;
}
.section-tag:before,
.section-tag:after{
content:"";
width:40px;
height:1px;
background:#c9a24c;
display:inline-block;
vertical-align:middle;
margin:0 10px;
}
.contact-content h2{
font-size:58px;
line-height:1.2;
color:#0f3d2e;
font-weight:400;
margin-bottom:25px;
}
.contact-content h2 em{
color:#6f8d6d;
font-style:italic;
}
.intro-text{
color:#6d7480;
line-height:1.8;
margin-bottom:40px;
}
.contact-info{
display:flex;
flex-direction:column;
gap:25px;
}
.info-item{
display:flex;
align-items:flex-start;
gap:15px;
}
.icon-box{
width:46px;
height:46px;
min-width:46px;
border-radius:50%;
background:#0f3d2e;
color:#d4af37;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
}
.info-content span{
display:block;
color:#c9a24c;
font-size:11px;
letter-spacing:2px;
margin-bottom:5px;
font-weight:600;
}
.info-content a,
.info-content p{
color:#0f3d2e;
text-decoration:none;
line-height:1.7;
margin:0;
}
/* RIGHT FORM */
.contact-form-wrapper{
flex:1;
display:flex;
justify-content:flex-end;
}
.contact-form{
width:100%;
max-width:520px;
background:#fff;
padding:35px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.contact-form h3{
font-size:32px;
color:#0f3d2e;
margin-bottom:10px;
}
.form-desc{
color:#666;
margin-bottom:25px;
}
.form-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}
.form-group{
margin-bottom:18px;
}
.form-group label{
display:block;
font-size:11px;
letter-spacing:2px;
color:#0f3d2e;
margin-bottom:8px;
font-weight:600;
}
.form-group input,
.form-group select,
.form-group textarea{
width:100%;
padding:14px 15px;
border:1px solid #d7d2c8;
background:#f3efe7;
font-size:15px;
outline:none;
box-sizing:border-box;
}
.form-group textarea{
resize:none;
}
.submit-btn{
width:100%;
border:none;
background:#0f3d2e;
color:#fff;
padding:16px;
cursor:pointer;
letter-spacing:2px;
font-weight:600;
display:flex;
justify-content:center;
align-items:center;
gap:10px;
transition:.3s;
}
.submit-btn:hover{
background:#0a2e23;
}
/* TABLET */
@media(max-width:991px){
.contact-section .container{
flex-direction:column;
}
.contact-content,
.contact-form-wrapper{
max-width:100%;
width:100%;
}
.contact-form{
max-width:100%;
}
}
/* MOBILE */
@media(max-width:767px){
.contact-section{
padding:70px 15px;
}
.contact-content h2{
font-size:38px;
}
.form-row{
grid-template-columns:1fr;
}
.contact-form{
padding:25px;
}
.contact-form h3{
font-size:26px;
}
}
@media(max-width:480px){
.contact-content h2{
font-size:32px;
}
.icon-box{
width:42px;
height:42px;
min-width:42px;
}
}
.process-section {
background: #f8f8f8;
padding: 80px 20px;
text-align: center;
}
/*.container {*/
/* max-width: 1200px;*/
/* margin: auto;*/
/*}*/
.sub-title {
display: inline-block;
font-size: 12px;
letter-spacing: 4px;
color: #c89a3d;
text-transform: uppercase;
margin-bottom: 20px;
position: relative;
}
.sub-title::before,
.sub-title::after {
content: "";
width: 60px;
height: 1px;
background: #c89a3d;
display: inline-block;
vertical-align: middle;
margin: 0 15px;
}
.title {
font-size: 52px;
font-weight: 400;
color: #0b3d2e;
margin-bottom: 20px;
}
.title em {
font-style: italic;
}
.description {
max-width: 700px;
margin: 0 auto 80px;
color: #666;
line-height: 1.7;
}
/* Timeline */
.timeline {
position: relative;
display: flex;
justify-content: space-between;
gap: 30px;
}
.timeline::before {
content: "";
position: absolute;
top: 28px;
left: 8%;
width: 84%;
height: 1px;
background: #d8c7a0;
z-index: 0;
}
.step {
flex: 1;
position: relative;
z-index: 2;
}
.circle {
width: 58px;
height: 58px;
border-radius: 50%;
background: #0b3d2e;
color: #d6b45d;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 25px;
font-size: 20px;
font-weight: 600;
}
.step h3 {
color: #0b3d2e;
font-size: 26px;
margin-bottom: 15px;
font-weight: 400;
}
.step p {
color: #666;
line-height: 1.8;
font-size: 15px;
}
/* Tablet */
@media (max-width: 992px) {
.timeline {
gap: 20px;
}
.title {
font-size: 42px;
}
.step h3 {
font-size: 22px;
}
}
/* Mobile */
@media (max-width: 768px) {
.title {
font-size: 34px;
}
.timeline {
flex-direction: column;
gap: 50px;
}
.timeline::before {
width: 2px;
height: 100%;
left: 50%;
top: 0;
transform: translateX(-50%);
}
.step {
max-width: 400px;
margin: auto;
}
.circle {
margin-bottom: 20px;
}
.step h3 {
font-size: 22px;
}
}
/* Small Mobile */
@media (max-width: 480px) {
.title {
font-size: 28px;
}
.description {
font-size: 14px;
}
.step h3 {
font-size: 20px;
}
.step p {
font-size: 14px;
}
}
/**/
.why-choose{
background:#f6f4ef;
}
.small-title{
color:#c6a96a;
font-size:13px;
letter-spacing:2px;
text-transform:uppercase;
position:relative;
}
.small-title::before{
content:"";
width:40px;
height:1px;
background:#c6a96a;
display:inline-block;
vertical-align:middle;
margin-right:10px;
}
.main-heading{
font-size:48px;
color:#173e38;
font-weight:400;
line-height:1.2;
}
.main-heading span{
font-style:italic;
}
.desc{
color:#777;
line-height:1.9;
font-size:15px;
}
.quote-box{
border-left:3px solid #c6a96a;
padding-left:20px;
}
.quote-box p{
color:#4a4a4a;
font-style:italic;
line-height:1.8;
margin-bottom:0;
}
.feature-box{
background:#fff;
border:1px solid #e5e1d9;
padding:18px;
display:flex;
align-items:center;
gap:12px;
min-height:80px;
font-size:15px;
color:#173e38;
transition:.3s;
}
.feature-box i{
color:#c6a96a;
font-size:18px;
}
.feature-box:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,.08);
}
.about-img{
width:100%;
max-width:520px;
object-fit:cover;
}
/* Tablet */
@media(max-width:991px){
.main-heading{
font-size:38px;
}
.about-img{
margin-top:20px;
}
}
/* Mobile */
@media(max-width:576px){
.main-heading{
font-size:30px;
}
.desc{
font-size:14px;
}
.feature-box{
font-size:14px;
min-height:auto;
}
}
.services-section{
background:#114b35;
padding:90px 0;
font-family:Arial, sans-serif;
}
.services-section .container{
max-width:1200px;
margin:auto;
padding:0 15px;
}
.services-header{
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:30px;
margin-bottom:60px;
}
.services-title h2{
color:#fff;
font-size:52px;
font-weight:400;
margin-bottom:15px;
line-height:1.2;
}
.services-title h2 span{
color:#d3ae58;
font-style:italic;
}
.services-title p{
max-width:450px;
color:rgba(255,255,255,.75);
line-height:1.8;
font-size:15px;
}
.book-btn{
display:inline-block;
background:#d3ae58;
color:#114b35;
text-decoration:none;
padding:16px 35px;
font-size:13px;
font-weight:600;
letter-spacing:2px;
transition:.3s;
}
.book-btn:hover{
background:#fff;
}
.services-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}
.service-card{
position:relative;
border:1px solid rgba(211,174,88,.25);
padding:32px 28px;
min-height:340px;
overflow:hidden;
transition:.35s ease;
}
.service-card:hover{
border-color:#d3ae58;
background:rgba(255,255,255,.02);
transform:translateY(-5px);
}
.service-icon{
width:58px;
height:58px;
border:1px solid rgba(211,174,88,.5);
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:25px;
}
.service-icon i{
color:#d3ae58;
font-size:20px;
}
.service-card h4{
color:#fff;
font-size:22px;
font-weight:500;
margin-bottom:15px;
}
.service-card p{
color:rgba(255,255,255,.75);
line-height:1.9;
font-size:15px;
}
/* Learn More Button */
.learn-more{
position:absolute;
left:28px;
bottom:28px;
color:#d3ae58;
text-decoration:none;
font-size:14px;
font-weight:600;
letter-spacing:.5px;
opacity:0;
transform:translateY(15px);
transition:.35s ease;
}
.learn-more i{
margin-left:8px;
transition:.3s;
}
.service-card:hover .learn-more{
opacity:1;
transform:translateY(0);
}
.service-card:hover .learn-more i{
transform:translateX(5px);
}
/* Tablet */
@media(max-width:991px){
.services-header{
flex-direction:column;
}
.services-grid{
grid-template-columns:repeat(2,1fr);
}
.services-title h2{
font-size:40px;
}
}
/* Mobile */
@media(max-width:767px){
.services-section{
padding:60px 0;
}
.services-grid{
grid-template-columns:1fr;
}
.services-title h2{
font-size:32px;
}
.book-btn{
width:100%;
text-align:center;
}
.service-card{
min-height:300px;
}
.learn-more{
opacity:1;
transform:none;
}
}



.why-prairie{
background:#f5f1eb;
padding:90px 0;
}
/*.container{*/
/* max-width:1200px;*/
/* margin:auto;*/
/* padding:0 20px;*/
/*}*/
.content-wrapper{
display:grid;
grid-template-columns:1.05fr 0.95fr;
gap:70px;
align-items:start;
}
/* Heading */
.section-heading{
margin-bottom:40px;
}
.sub-title{
display:flex;
align-items:center;
gap:12px;
font-size:12px;
letter-spacing:3px;
text-transform:uppercase;
color:#b89242;
margin-bottom:18px;
font-weight:600;
justify-content: center;
}
.sub-title::before{
content:"";
width:50px;
height:1px;
background:#b89242;
}
.section-heading h2{
font-size:52px;
font-weight:400;
color:#243326;
line-height:1.2;
}
/* Image */
.image-box{
position:relative;
}
.image-box img{
width:100%;
display:block;
border-radius:8px;
}
.experience-badge{
position:absolute;
right:-25px;
bottom:-25px;
width:120px;
height:120px;
background:#c5a14a;
border-radius:50%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
}
.experience-badge h3{
font-size:28px;
margin-bottom:4px;
}
.experience-badge span{
font-size:10px;
line-height:1.4;
letter-spacing:1px;
}
/* Right Content */
.right-content{
padding-top:70px;
}
.intro-text{
font-size:16px;
line-height:1.9;
color:#6c6c6c;
margin-bottom:35px;
}
.divider{
width:100%;
height:1px;
background:#d8c8a1;
margin-bottom:35px;
}
.feature-item{
display:flex;
gap:18px;
padding-bottom:25px;
margin-bottom:25px;
border-bottom:1px solid #e6dcc7;
}
.feature-item:last-child{
border-bottom:none;
margin-bottom:0;
padding-bottom:0;
}
.icon{
width:55px;
height:55px;
min-width:55px;
border:1px solid #c5a14a;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
}
.icon i{
font-size:22px;
color:#48624c;
}
.feature-item h4{
font-size:20px;
color:#243326;
margin-bottom:8px;
font-weight:600;
}
.feature-item p{
color:#777;
font-size:15px;
line-height:1.8;
}
/* Tablet */
@media(max-width:991px){
.content-wrapper{
gap:40px;
}
.section-heading h2{
font-size:42px;
}
.right-content{
padding-top:20px;
}
}
/* Mobile */
@media(max-width:768px){
.why-prairie{
padding:60px 0;
}
.content-wrapper{
grid-template-columns:1fr;
}
.section-heading{
text-align:center;
}
.sub-title{
justify-content:center;
}
.section-heading h2{
font-size:34px;
}
.right-content{
padding-top:0;
}
.experience-badge{
width:90px;
height:90px;
right:10px;
bottom:10px;
}
.experience-badge h3{
font-size:22px;
}
.feature-item{
gap:15px;
}
.icon{
width:48px;
height:48px;
min-width:48px;
}
.icon i{
font-size:18px;
}
}
.about-section{
padding:80px 8%;
background:#f8f6f0;
}
.about-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
gap:60px;
}
.about-image{
flex:1;
}
.about-image img{
width:100%;
border-radius:25px;
display:block;
}
.about-content{
flex:1;
}
.about-tag{
display:inline-block;
background:#0f3d33;
color:#d8b25a;
padding:10px 22px;
border-radius:50px;
font-size:13px;
font-weight:600;
letter-spacing:2px;
margin-bottom:20px;
}
.about-content h2{
font-size:34px;
line-height:1.1;
color:#0f3d33;
margin-bottom:20px;
}
.about-content h2 span{
color:#d8b25a;
}
.about-content p{
font-size:17px;
color:#555;
line-height:1.9;
margin-bottom:35px;
text-align: justify;
}
.about-btn{
display:inline-flex;
align-items:center;
gap:12px;
text-decoration:none;
background:linear-gradient(135deg,#0f3d33,#1b5b4c);
color:#fff;
padding:16px 34px;
border-radius:60px;
font-weight:600;
transition:.4s;
box-shadow:0 12px 30px rgba(15,61,51,.25);
}
.about-btn span{
width:32px;
height:32px;
border-radius:50%;
background:#d8b25a;
display:flex;
align-items:center;
justify-content:center;
}
.about-btn:hover{
transform:translateY(-4px);
}
@media(max-width:991px){
.about-container{
flex-direction:column;
}
}
/*Bredcrumbs*/
.contact-hero{
background: linear-gradient(rgba(22,77,58,.88),
rgba(22,77,58,.88)),
url("../image/contact-banner.jpg");
background-size: cover;
background-position:center;
padding:45px 0;
color:#fff;
text-align:center;
}
.contact-hero h1{
font-family:'Cormorant Garamond',serif;
font-size:68px;
margin-top:15px;
}
.breadcrumb-wrap{
margin-top:15px;
}
.breadcrumb-wrap a{
color:#D4AF37;
text-decoration:none;
}
.breadcrumb-wrap span{
color:#fff;
}
.about-content h2{
font-size:38px;
}
/*conatct sections*/
.premium-contact{
background:#f8f6f2;
}
.contact-info-box{
background:#184C3A;
color:#fff;
height:100%;
padding:50px;
border-radius:25px;
}
.contact-info-box h2{
font-family:'Cormorant Garamond',serif;
font-size:48px;
margin:15px 0;
}
.info-card{
display:flex;
gap:20px;
margin-top:30px;
padding:20px;
border-radius:15px;
background:rgba(255,255,255,.08);
}
.info-card i{
font-size:28px;
color:#D4AF37;
}
.info-card a{
color:#fff;
text-decoration:none;
}
.contact-form-card{
background:#fff;
padding:50px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}
.contact-form-card h3{
font-family:'Cormorant Garamond',serif;
font-size:42px;
margin-bottom:30px;
}
.form-control,
.form-select{
height:60px;
border-radius:12px;
border:1px solid #ddd;
}
textarea.form-control{
height:auto;
}
.luxury-btn{
background:#D4AF37;
color:#184C3A;
border:none;
padding:16px 40px;
border-radius:50px;
font-weight:600;
transition:.3s;
}
.luxury-btn:hover{
background:#184C3A;
color:#fff;
}
.map-section{
padding:100px 0;
background:#fff;
}
.map-card{
overflow:hidden;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}
.map-card iframe{
width:100%;
height:500px;
border:none;
}
/* ABOUT Us Page Start*/
.page-banner{
    background:#184C3A;
    padding:45px 0;
    text-align:center;
    color:#fff;
}

.page-tag{
    display:inline-block;
    color:#D4AF37;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:15px;
}

.page-banner h1{
    font-family:'Cormorant Garamond',serif;
    font-size:60px;
    margin-bottom:15px;
}

.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin:0;
}

.breadcrumb a{
    color:#D4AF37;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb a:hover{
    color:#fff;
}

.breadcrumb span{
    color:#e5e7eb;
    font-size:15px;
}

@media(max-width:768px){

    .page-banner{
        padding:70px 0;
    }

    .page-banner h1{
        font-size:42px;
    }

}
.mission-section{
padding:100px 0;
background:#F8F6F2;
}
.mission-card{
background:white;
padding:40px;
border-radius:25px;
text-align:center;
height:100%;
transition:.4s;
}
.mission-card:hover{
transform:translateY(-10px);
}
.mission-card i{
font-size:40px;
color:#D4AF37;
}
.experience-grid{
display:flex;
gap:20px;
margin-top:40px;
flex-wrap:wrap;
}
.exp-box{
background:#184C3A;
color:white;
padding:25px;
border-radius:20px;
min-width:150px;
text-align:center;
}
.exp-box h3{
color:#D4AF37;
font-size:38px;
}
.timeline-wrapper{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:30px;
margin-top:60px;
}
.timeline-step{
width:200px;
background:white;
padding:35px;
border-radius:20px;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.06);
}
.timeline-step span{
font-size:48px;
color:#D4AF37;
font-family:'Cormorant Garamond',serif;
}
.about-cta{
padding:100px 0;
}
.cta-box{
background:#184C3A;
padding:80px;
border-radius:30px;
text-align:center;
color:white;
}
.cta-box h2{
font-size:58px;
font-family:'Cormorant Garamond',serif;
}
.cta-btn{
display:inline-block;
margin-top:20px;
padding:16px 40px;
background:#D4AF37;
border-radius:50px;
text-decoration:none;
color:#184C3A;
font-weight:600;
}
@media(max-width:991px){
.about-hero h1{
font-size:48px;
}
.cta-box h2{
font-size:38px;
}
.story-section,
.mission-section,
.practitioner-section,
.values-section,
.journey-section{
padding:70px 0;
}
}
@media(max-width:576px){
.about-hero{
padding:90px 0;
}
.about-hero h1{
font-size:34px;
}
.contact-info-box,
.mission-card,
.value-card,
.timeline-step{
padding:25px;
}
.timeline-step{
width:100%;
}
.exp-box{
width:100%;
}
}
.story-section{
padding:120px 0;
background:#fff;
overflow:hidden;
}
.story-img{
width:100%;
border-radius:30px;
box-shadow:0 20px 50px rgba(0,0,0,.08);
}
.story-section .section-tag{
display:inline-block;
color:#D4AF37;
letter-spacing:2px;
font-size:14px;
font-weight:600;
margin-bottom:15px;
}
.story-section h2{
font-family:'Cormorant Garamond',serif;
font-size:60px;
line-height:1.1;
color:#184C3A;
margin-bottom:25px;
}
.story-section p{
color:#6b7280;
font-size:17px;
line-height:1.9;
margin-bottom:20px;
}
.story-section .col-lg-6:last-child{
padding-left:60px;
}
.values-section{
padding:120px 0;
background:#F8F6F2;
position:relative;
overflow:hidden;
}
/* Decorative Elements */
.values-section::before{
content:'';
position:absolute;
top:-180px;
right:-180px;
width:400px;
height:400px;
border-radius:50%;
border:1px solid rgba(212,175,55,.12);
}
.values-section::after{
content:'';
position:absolute;
bottom:-140px;
left:-140px;
width:300px;
height:300px;
border-radius:50%;
border:1px solid rgba(212,175,55,.10);
}
/* Heading */
.values-section .section-heading{
position:relative;
z-index:2;
}
.values-section .section-heading span{
color:#D4AF37;
letter-spacing:2px;
font-size:14px;
font-weight:600;
}
.values-section .section-heading h2{
font-family:'Cormorant Garamond',serif;
font-size:58px;
color:#184C3A;
margin-top:15px;
margin-bottom:20px;
}
.values-subtitle{
max-width:750px;
margin:auto;
color:#6b7280;
font-size:17px;
line-height:1.8;
}
/* Card */
.value-card{
position:relative;
background:#fff;
border-radius:25px;
padding:45px 30px;
text-align:center;
height:100%;
transition:.4s ease;
box-shadow:0 10px 30px rgba(0,0,0,.05);
border:1px solid rgba(212,175,55,.15);
overflow:hidden;
z-index:2;
}
/* Gold Top Border Animation */
.value-card::before{
content:'';
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:linear-gradient(
90deg,
#D4AF37,
#F0D98A
);
transform:scaleX(0);
transform-origin:left;
transition:.4s;
}
.value-card:hover::before{
transform:scaleX(1);
}
.value-card:hover{
transform:translateY(-10px);
box-shadow:0 25px 50px rgba(0,0,0,.12);
}
/* Icon Circle */
.value-icon{
width:90px;
height:90px;
margin:0 auto 25px;
border-radius:50%;
background:rgba(212,175,55,.12);
display:flex;
align-items:center;
justify-content:center;
transition:.4s;
}
.value-icon i{
font-size:42px;
color:#D4AF37;
transition:.4s;
margin:0;
}
.value-card:hover .value-icon{
background:#184C3A;
}
.value-card:hover .value-icon i{
color:#D4AF37;
}
.value-card h5{
font-family:'Cormorant Garamond',serif;
font-size:30px;
color:#184C3A;
margin-bottom:15px;
}
.value-card p{
color:#6b7280;
line-height:1.8;
margin:0;
font-size:15px;
}
/* Responsive */
@media(max-width:991px){
.values-section{
padding:80px 0;
}
.values-section .section-heading h2{
font-size:42px;
}
.value-card{
padding:35px 25px;
}
}
@media(max-width:576px){
.values-section .section-heading h2{
font-size:34px;
}
.values-subtitle{
font-size:15px;
}
.value-icon{
width:75px;
height:75px;
}
.value-icon i{
font-size:34px;
}
.value-card h5{
font-size:24px;
}
}
@media(max-width:991px){
.story-section{
padding:80px 0;
}
.story-section h2{
font-size:42px;
}
.story-section .col-lg-6:last-child{
padding-left:12px;
}
.values-section{
padding:80px 0;
}
.values-section .section-heading h2{
font-size:42px;
}
}
@media(max-width:576px){
.story-section h2{
font-size:34px;
}
.values-section .section-heading h2{
font-size:34px;
}
.value-card{
padding:35px 20px;
}
.value-card h5{
font-size:24px;
}
.value-card i{
font-size:42px;
}
}
.story-points{
    margin-top:35px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.story-point{
    display:flex;
    align-items:flex-start;
    gap:12px;
    padding:14px 18px;
    background:#f8f6f2;
    border-radius:14px;
    border:1px solid rgba(212,175,55,.15);
    transition:.3s;
}

.story-point:hover{
    transform:translateY(-3px);
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.story-point i{
    color:#D4AF37;
    font-size:18px;
    margin-top:3px;
}

.story-point span{
    color:#184C3A;
    font-size:15px;
    font-weight:500;
    line-height:1.5;
}

@media(max-width:576px){

    .story-points{
        grid-template-columns:1fr;
    }

}


/*Service Page*/
.bg-light-custom{
    background:#F8F6F2;
}

.service-detail-section{
    padding:55px 0;
}

.service-detail-img{
    width:100%;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
    transition:.4s;
}

.service-detail-img:hover{
    transform:scale(1.03);
}

.service-eyebrow{
    color:#D4AF37;
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
    display:block;
    margin-bottom:15px;
}

.service-detail-section h2{
    font-family:'Cormorant Garamond',serif;
    font-size:56px;
    color:#184C3A;
    margin-bottom:20px;
}

.service-detail-section p{
    color:#6b7280;
    line-height:1.9;
    font-size:17px;
}

.service-benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:35px 0;
}

.benefit-item{
    background:#fff;
    border:1px solid rgba(212,175,55,.18);
    border-radius:15px;
    padding:16px 18px;
    transition:.3s;
}

.benefit-item i{
    color:#D4AF37;
    margin-right:8px;
}

.benefit-item:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.service-page-btn,
.feature-btn{
    display:inline-block;
    padding:15px 34px;
    background:#184C3A;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.service-page-btn:hover,
.feature-btn:hover{
    background:#D4AF37;
    color:#184C3A;
}

.diabetic-feature-section{
    padding:120px 0;
    background:#184C3A;
    color:#fff;
}

.diabetic-feature-section span{
    color:#D4AF37;
    letter-spacing:2px;
}

.diabetic-feature-section h2{
    font-family:'Cormorant Garamond',serif;
    font-size:70px;
    margin:20px 0;
}

.diabetic-feature-section p{
    line-height:1.9;
    opacity:.9;
}

.feature-points{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:35px 0;
}

.feature-points div{
    background:rgba(255,255,255,.08);
    padding:15px;
    border-radius:12px;
}

.feature-points i{
    color:#D4AF37;
    margin-right:8px;
}

.diabetic-img{
    border-radius:30px;
}

@media(max-width:991px){

    .service-detail-section,
    .diabetic-feature-section{
        padding:80px 0;
    }

    .service-detail-section h2,
    .diabetic-feature-section h2{
        font-size:42px;
    }

    .service-benefits,
    .feature-points{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .service-detail-section h2,
    .diabetic-feature-section h2{
        font-size:34px;
    }

    .service-detail-img,
    .diabetic-img{
        border-radius:20px;
    }
}

/*==========================
Breadcrumb
==========================*/

.faq-breadcrumb{

padding:40px 0;
background:
linear-gradient(rgba(18,60,43,.82),rgba(18,60,43,.82)),
url(assests/image/bannar-11.png) center/cover;

text-align:center;
}

.faq-breadcrumb span{

color:#d4af37;
letter-spacing:2px;
font-size:14px;
text-transform:uppercase;

}

.faq-breadcrumb h1{

font-family:'Cormorant Garamond',serif;
font-size:60px;
color:#fff;
margin:15px 0;

}

.faq-breadcrumb nav{

color:#fff;

}

.faq-breadcrumb nav a{

color:#d4af37;
text-decoration:none;

}

/*=========================
FAQ
=========================*/

.faq-section{

background:#faf8f4;

}

.faq-title span{

color:#b9902f;
letter-spacing:2px;
font-weight:600;

}

.faq-title h2{

font-size:48px;
font-family:'Cormorant Garamond',serif;
color:#173f31;
margin:15px 0;

}

.faq-title p{

color:#666;
line-height:1.8;

}

/* Image */

.faq-image{

position:relative;

}

.faq-image img{

border-radius:25px;
box-shadow:0 30px 70px rgba(0,0,0,.12);

}

.experience-box{

position:absolute;
bottom:25px;
left:25px;

background:#174734;

padding:25px;

border-radius:18px;

color:#fff;

box-shadow:0 15px 40px rgba(0,0,0,.2);

}

.experience-box h2{

font-size:45px;
margin:0;
color:#d4af37;

}

.experience-box p{

margin:0;
}

/* Accordion */

.custom-faq .accordion-item{

border:none;
margin-bottom:18px;
border-radius:16px !important;
overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.custom-faq .accordion-button{

padding:22px;

font-weight:600;

font-size:17px;

background:#fff;

color:#173f31;

box-shadow:none;

}

.custom-faq .accordion-button:not(.collapsed){

background:#173f31;

color:#fff;

}

.custom-faq .accordion-button::after{

filter:brightness(0);

}

.custom-faq .accordion-button:not(.collapsed)::after{

filter:brightness(100);

}

.custom-faq .accordion-body{

padding:22px;

line-height:1.9;

color:#666;

background:#fff;

}

/* CTA */

.faq-cta{

padding:90px 0;

background:#173f31;

text-align:center;

}

.faq-cta h2{

font-size:48px;

color:#fff;

font-family:'Cormorant Garamond',serif;

}

.faq-cta p{

max-width:650px;

margin:20px auto;

color:#ddd;

}

.btn-main{

display:inline-block;

padding:15px 40px;

background:#d4af37;

color:#173f31;

font-weight:600;

border-radius:50px;

text-decoration:none;

transition:.4s;

}

.btn-main:hover{

background:#fff;

transform:translateY(-4px);

color:#173f31;

}

/* Mobile */

@media(max-width:768px){

.faq-breadcrumb{

padding:70px 0;

}

.faq-breadcrumb h1{

font-size:42px;

}

.faq-title h2{

font-size:36px;

}

.experience-box{

position:relative;

left:auto;

bottom:auto;

margin-top:-40px;

width:220px;

}

}

/*==================================
Breadcrumb
===================================*/

.trust-breadcrumb{

padding:40px 0;

background:
linear-gradient(rgba(18,58,45,.82),rgba(18,58,45,.82)),
url("assests/image/bannar-11.png");

background-size:cover;

background-position:center;

position:relative;

overflow:hidden;

}

.trust-breadcrumb::before{

content:"";

position:absolute;

width:450px;

height:450px;

background:rgba(199,166,74,.08);

border-radius:50%;

top:-180px;

left:-150px;

}

.trust-breadcrumb::after{

content:"";

position:absolute;

width:350px;

height:350px;

background:rgba(255,255,255,.05);

border-radius:50%;

bottom:-150px;

right:-120px;

}

.trust-breadcrumb .container{

position:relative;

z-index:2;

}

.trust-breadcrumb .sub-title{

display:inline-block;

letter-spacing:3px;

font-size:14px;

font-weight:600;

color:#d7b04c;

text-transform:uppercase;

margin-bottom:18px;

}

.trust-breadcrumb h1{

font-family:'Cormorant Garamond', serif;

font-size:65px;

font-weight:600;

color:#fff;

line-height:1.1;

margin-bottom:20px;

}

.trust-breadcrumb p{

max-width:720px;

margin:auto;

font-size:18px;

line-height:1.9;

color:rgba(255,255,255,.88);

}

.breadcrumb-nav{

margin-top:35px;

}

.breadcrumb-nav a{

color:#d7b04c;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.breadcrumb-nav a:hover{

color:#fff;

}

.breadcrumb-nav span{

margin:0 10px;

color:#fff;

}

.breadcrumb-nav strong{

color:#fff;

font-weight:600;

}

/* Mobile */

@media(max-width:768px){

.trust-breadcrumb{

padding:90px 0;

}

.trust-breadcrumb h1{

font-size:42px;

}

.trust-breadcrumb p{

font-size:16px;

}

}
/*==================================
Trust Section
===================================*/

.trust-section{

background:#faf8f4;

padding:90px 0;

}

.trust-image{

position:relative;

}

.trust-image img{

border-radius:25px;

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.experience-card{

position:absolute;

bottom:25px;

left:25px;

background:#174734;

padding:28px 35px;

border-radius:20px;

box-shadow:0 18px 45px rgba(0,0,0,.25);

}

.experience-card h2{

font-size:52px;

font-family:'Cormorant Garamond',serif;

color:#d7b04c;

margin:0;

}

.experience-card span{

display:block;

color:#fff;

font-size:15px;

margin-top:5px;

letter-spacing:1px;

}

.small-title{

display:inline-block;

font-size:14px;

letter-spacing:3px;

font-weight:600;

color:#c7a64a;

margin-bottom:18px;

}

.trust-content h2{

font-family:'Cormorant Garamond',serif;

font-size:52px;

color:#174734;

margin-bottom:20px;

line-height:1.2;

}

.trust-content p{

font-size:17px;

line-height:1.9;

color:#666;

margin-bottom:35px;

}

.trust-card{

background:#fff;

padding:30px;

border-radius:20px;

height:100%;

transition:.35s;

box-shadow:0 15px 40px rgba(0,0,0,.07);

border:1px solid #f1ede3;

}

.trust-card:hover{

transform:translateY(-8px);

box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.icon-box{

width:65px;

height:65px;

background:#174734;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:20px;

}

.icon-box i{

font-size:28px;

color:#d7b04c;

}

.trust-card h4{

font-size:22px;

font-family:'Cormorant Garamond',serif;

color:#174734;

margin-bottom:12px;

}

.trust-card p{

font-size:15px;

line-height:1.8;

color:#666;

margin:0;

}

@media(max-width:991px){

.trust-content{

margin-top:40px;

}

.experience-card{

position:relative;

left:auto;

bottom:auto;

margin-top:-50px;

width:240px;

}

}

@media(max-width:768px){

.trust-content h2{

font-size:38px;

}

}

/*==================================
Promise Section
===================================*/

.promise-section{

padding:100px 0;

background:#ffffff;

}

.promise-section .small-title{

display:inline-block;

font-size:14px;

font-weight:600;

letter-spacing:3px;

color:#c7a64a;

margin-bottom:15px;

text-transform:uppercase;

}

.promise-section h2{

font-family:'Cormorant Garamond',serif;

font-size:52px;

color:#174734;

line-height:1.2;

margin-bottom:20px;

}

.section-desc{

font-size:17px;

line-height:1.9;

color:#666;

max-width:720px;

margin:auto;

}

.promise-card{

background:#fff;

padding:45px 35px;

border-radius:22px;

text-align:center;

height:100%;

transition:.35s;

border:1px solid #ece7da;

box-shadow:0 15px 45px rgba(0,0,0,.07);

}

.promise-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.promise-icon{

width:80px;

height:80px;

margin:auto;

border-radius:50%;

background:#174734;

display:flex;

align-items:center;

justify-content:center;

margin-bottom:25px;

}

.promise-icon i{

font-size:34px;

color:#d7b04c;

}

.promise-card h3{

font-family:'Cormorant Garamond',serif;

font-size:30px;

color:#174734;

margin-bottom:15px;

}

.promise-card p{

font-size:16px;

line-height:1.8;

color:#666;

margin:0;

}

@media(max-width:768px){

.promise-section{

padding:70px 0;

}

.promise-section h2{

font-size:38px;

}

}

/*==================================
Luxury CTA
===================================*/

.trust-cta{

padding:110px 0;

background:
linear-gradient(rgba(23,71,52,.95),rgba(23,71,52,.95)),
url("assests/image/bannar-22.png");

background-size:cover;

background-position:center;

position:relative;

overflow:hidden;

}

.trust-cta::before{

content:"";

position:absolute;

width:500px;

height:500px;

border-radius:50%;

background:rgba(199,166,74,.08);

top:-200px;

left:-120px;

}

.trust-cta::after{

content:"";

position:absolute;

width:400px;

height:400px;

border-radius:50%;

background:rgba(255,255,255,.05);

right:-150px;

bottom:-180px;

}

.trust-cta .container{

position:relative;

z-index:2;

}

.cta-subtitle{

display:inline-block;

letter-spacing:3px;

font-size:14px;

font-weight:600;

color:#d7b04c;

margin-bottom:20px;

}

.trust-cta h2{

font-family:'Cormorant Garamond',serif;

font-size:58px;

line-height:1.2;

color:#fff;

margin-bottom:20px;

}

.trust-cta p{

max-width:700px;

margin:auto;

font-size:18px;

line-height:1.9;

color:rgba(255,255,255,.85);

}

.cta-buttons{

margin-top:45px;

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn-book{

display:inline-flex;

align-items:center;

gap:10px;

padding:16px 40px;

background:#d7b04c;

color:#174734;

text-decoration:none;

border-radius:50px;

font-weight:600;

transition:.35s;

}

.btn-book:hover{

background:#fff;

color:#174734;

transform:translateY(-5px);

}

.btn-call{

display:inline-flex;

align-items:center;

gap:10px;

padding:16px 40px;

border:2px solid rgba(255,255,255,.35);

color:#fff;

text-decoration:none;

border-radius:50px;

font-weight:600;

transition:.35s;

}

.btn-call:hover{

background:#fff;

color:#174734;

border-color:#fff;

transform:translateY(-5px);

}

@media(max-width:768px){

.trust-cta{

padding:80px 0;

}

.trust-cta h2{

font-size:38px;

}

.cta-buttons{

flex-direction:column;

}

.btn-book,

.btn-call{

justify-content:center;

width:100%;

}

}