﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

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

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


body,
p,
span,
a,
li,
div,
button {
    font-family: 'Cormorant Garamond', serif;
}

body {
    color: #1C1C1C;
    background: #fff;
    overflow-x: hidden;
    text-align: left;
}

html {
    scroll-padding-top: 110px;
}
/* Header */
header,
.header,
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transform: translateZ(0);
    backface-visibility: hidden;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 110px;
    height: 110px;
    padding: 0.9rem 4rem;
    width: min(1400px, 100%);
    margin: 0 auto;
    position: relative;
    transform: none;
    z-index: 1001;
    background: rgba(15, 61, 46, 0.06);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(194, 161, 77, 0.15);
    transition: background-color 0.3s ease, padding 0.3s ease, min-height 0.3s ease, height 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease;
}

nav.scrolled {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0.7rem 4rem;
    min-height: 92px;
    height: 92px;
    border-bottom: 1px solid rgba(15, 61, 46, 0.08);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

nav.nav-hidden {
    transform: translateY(-130%);
    box-shadow: none;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: absolute;
    left: 4rem;
    top: 50%;
    transform: translateY(-50%);
}

.logo img {
    height: 98px;
    width: auto;
}

.logo span {
    color: #C2A14D;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    position: static;
    transform: none;
}

.nav-links a {
    color: #C2A14D;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s, transform 0.25s ease;
    position: relative;
    display: inline-block;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #C2A14D;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #C2A14D;
    transform: translateY(-2px);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

nav.scrolled .nav-links a {
    color: #0F3D2E;
}

nav.scrolled .nav-links a::after {
    background: #0F3D2E;
}

nav.scrolled .logo span {
    color: #0F3D2E;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 190px;
    display: none;
    flex-direction: column;
    background: rgba(15, 61, 46, 0.96);
    border: 1px solid rgba(194, 161, 77, 0.45);
    z-index: 1002;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
    display: flex;
}

.nav-submenu a {
    color: #C2A14D;
    padding: 0.65rem 0.9rem;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-submenu a::after {
    display: none;
}

.nav-submenu a:hover {
    background: rgba(194, 161, 77, 0.14);
    transform: none;
}

nav.scrolled .nav-submenu {
    background: #fff;
    border: 1px solid rgba(15, 61, 46, 0.2);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

nav.scrolled .nav-submenu a {
    color: #0F3D2E;
}

nav.scrolled .nav-submenu a:hover {
    background: rgba(15, 61, 46, 0.08);
}

.contact-btn {
    position: absolute;
    right: 4rem;
    top: 50%;
    transform: translateY(-50%);
    background: #C2A14D;
    color: #0F3D2E;
    border: 1px solid #C2A14D;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.contact-btn:hover {
    background: transparent;
    color: #C2A14D;
}

nav.scrolled .contact-btn {
    background: #0F3D2E;
    border-color: #0F3D2E;
    color: #fff;
}

nav.scrolled .contact-btn:hover {
    background: transparent;
    color: #0F3D2E;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(1.05) contrast(1.15);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 61, 46, 0.4);
    z-index: 1;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #C2A14D;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.hero .hero-scroll-tag {
    transition: opacity 0.28s ease, transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, backdrop-filter 0.28s ease;
    will-change: opacity, transform, background-color, border-color, color;
}

.hero.hero-tags-hidden .hero-scroll-tag {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

.hero.hero-tags-white .hero-scroll-tag {
    opacity: 1;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.95) !important;
    border-color: rgba(15, 61, 46, 0.2) !important;
    color: #0F3D2E !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Intro Text Section */
.intro-text-section {
    background: #fff;
    padding: 6rem 4rem;
    text-align: left;
}

.intro-text {
    color: #0F3D2E;
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 1450px;
    margin: 0 auto;
    font-weight: 400;
    text-align: left;
}

/* Page Header */
.page-header {
    background: #fff;
    padding: 10rem 4rem 4rem;
    text-align: center;
    color: #1C1C1C;
}

.page-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #0F3D2E;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-top-cards {
    max-width: 1100px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1.25rem;
}

.about-card {
    width: calc(50% - 0.75rem);
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, 0.15);
    box-shadow: 0 8px 24px rgba(15, 61, 46, 0.08);
    padding: 1.35rem 1.2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 61, 46, 0.14);
}

.about-card h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: #0F3D2E;
    margin-bottom: 0.65rem;
}

.about-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #0F3D2E;
    margin: 0.9rem 0 0.45rem;
}

.about-card p {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #1C1C1C;
    margin-bottom: 0.7rem;
}

.about-leadership-section {
    background: #fff;
    padding: 1rem 4rem 4rem;
}

.about-leadership-stack {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 1.25rem;
}

.about-leader-card {
    display: grid;
    grid-template-columns: 1.55fr 0.7fr;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, 0.15);
    box-shadow: 0 8px 24px rgba(15, 61, 46, 0.08);
    padding: 1.2rem;
}

.about-leader-text h3 {
    font-family: 'Cinzel', serif;
    color: #0F3D2E;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.about-leader-text h3 span {
    font-size: 0.9rem;
    color: #4A5A55;
    font-family: 'Poppins', sans-serif;
    margin-left: 0.35rem;
}

.about-leader-text h2 {
    font-family: 'Cinzel', serif;
    color: #C2A14D;
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.about-leader-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #1C1C1C;
    margin-bottom: 0.75rem;
}

.about-leader-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.about-leader-image img {
    width: 100%;
    max-width: 320px;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    border-radius: 14px;
}

.leader-image-ceo {
    object-position: center top;
}

.leader-image-md {
    object-position: center top;
}

/* Interior Gallery */
.interior-gallery {
    background: #fff;
    padding: 3rem 0;
    overflow: hidden;
}

.gallery-scroll {
    display: flex;
    align-items: stretch;
    width: max-content;
    gap: 1rem;
    animation: loopScroll 16s linear infinite;
}

@keyframes loopScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-item {
    min-width: 320px;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: 2px solid #0F3D2E;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.live-slideshow .gallery-item {
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 312px;
    object-fit: contain;
    object-position: center;
    background: #fff;
    transition: transform 0.5s;
}

.live-slideshow:hover {
    animation-play-state: paused;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-corner-name {
    position: static;
    z-index: 1;
    width: 100%;
    background: #0F3D2E;
    color: #fff;
    padding: 0.7rem 0.8rem;
    font-size: 0.82rem;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.95));
    padding: 2rem 1.5rem 1rem;
    color: #1C1C1C;
}

.gallery-caption h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0F3D2E;
}

/* Static Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid .gallery-item {
    min-width: auto;
    animation: none;
}

/* Projects Section */
.projects-section {
    background: #fff;
    padding: 8rem 4rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    letter-spacing: 2px;
    color: #0F3D2E;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.project-card {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
    align-items: center;
    margin-bottom: 2.2rem;
    background: #fff;
    border: 1px solid rgba(15, 61, 46, 0.15);
    box-shadow: 0 8px 24px rgba(15, 61, 46, 0.08);
    padding: 1.15rem;
}

.project-card[id] {
    scroll-margin-top: 130px;
}

.project-details {
    padding: 0.65rem;
    text-align: left;
}

.project-details h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0F3D2E;
}

.project-meta {
    font-size: 0.95rem;
    color: #6A6A6A;
    margin: -1rem 0 1rem;
    font-weight: 500;
}

.project-copy {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 0.9rem;
    color: #1C1C1C;
}

.project-points {
    margin: 0.2rem 0 0;
    padding-left: 1.1rem;
    color: #1C1C1C;
}

.project-points li {
    margin-bottom: 0.55rem;
    line-height: 1.65;
    font-size: 0.95rem;
}

.project-specs {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 2px solid #0F3D2E;
}

.spec-label {
    font-weight: 700;
    color: #0F3D2E;
}

.spec-value {
    text-align: right;
    color: #1C1C1C;
}

.project-images {
    display: grid;
    gap: 1rem;
    line-height: 0;
    overflow: hidden;
    align-items: center;
}

.project-images img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    border: none;
}

.project-images img.project-image-fixed {
    object-fit: contain;
    object-position: center;
    background: #fff;
}

/* Home Showcase Slider */
.home-showcase-section {
    background: #fff;
    padding: 0 4rem 6rem;
}

.home-showcase-wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.home-showcase-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 320px;
    border-radius: 18px;
    overflow: hidden;
    background: #eef1f0;
    box-shadow: 0 12px 34px rgba(15, 61, 46, 0.16);
}

.home-showcase-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 0.9s ease, transform 1.1s ease;
}

.home-showcase-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

/* Feature Section */
.feature-section {
    background: #fff;
    color: #1C1C1C;
    padding: 8rem 4rem;
}

.feature-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-text h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0F3D2E;
}

.feature-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #1C1C1C;
    margin-bottom: 2rem;
    font-weight: 600;
}

.feature-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 400;
    text-align: left;
}

.feature-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 0;
    border: 3px solid #0F3D2E;
}

/* Content Section */
.content-section {
    background: #fff;
    padding: 8rem 4rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.content-wrapper p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #1C1C1C;
}

.content-wrapper h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0F3D2E;
}

.content-wrapper h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #0F3D2E;
}

/* Team Section */
.team-section {
    background: #fff;
    padding: 8rem 4rem;
}

.team-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border: 2px solid #0F3D2E;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member-image {
    width: 250px;
    height: 250px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #0F3D2E;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #0F3D2E;
}

.team-member p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-member .role {
    color: #0F3D2E;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials-section {
    background: #fff;
    padding: 8rem 4rem;
}

.testimonial-card {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.testimonial-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0;
    border: 3px solid #0F3D2E;
}

.testimonial-content {
    padding: 2rem;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #1C1C1C;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0F3D2E;
}

.author-info h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #0F3D2E;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Homepage About Showcase */
.about-showcase-section {
    padding: 6rem 2rem;
    background: #052a27;
    background-image: radial-gradient(circle at 20% 15%, rgba(194, 161, 77, 0.18), transparent 50%), radial-gradient(circle at 80% 0%, rgba(8, 53, 49, 0.35), transparent 45%);
}

.about-showcase-wrap {
    max-width: 1400px;
    margin: 0 auto;
    border: 2px solid rgba(194, 161, 77, 0.45);
}

.about-showcase-card {
    padding: 3.2rem 3rem;
    color: #f0f2ef;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.about-showcase-card h2 {
    color: #C2A14D;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 2.3rem;
    margin-bottom: 1.7rem;
    letter-spacing: 1px;
}

.about-showcase-card p {
    line-height: 1.7;
    font-size: 1.2rem;
    margin-bottom: 1.3rem;
    text-align: left;
}

.leadership-card {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr;
    gap: 2rem;
    align-items: center;
    padding: 2.2rem 3rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.leadership-card:last-child {
    border-bottom: none;
}

.leader-copy h3 {
    font-family: 'Cinzel', serif;
    color: #C2A14D;
    font-size: 2.1rem;
    margin-bottom: 1.2rem;
}

.leader-copy h3 span {
    color: #e7e7e7;
    font-size: 1.2rem;
    margin-right: 0.7rem;
    font-weight: 400;
}

.leader-copy p {
    color: #f2f2f2;
    font-size: 1.1rem;
    line-height: 1.75;
    text-align: left;
}

.leadership-card img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

/* Download Section */
.download-section {
    background: #fff;
    padding: 8rem 4rem;
}

.download-grid {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.download-item {
    background: #f9f9f9;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid #0F3D2E;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.download-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(15, 61, 46, 0.15);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.download-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #0F3D2E;
    margin-bottom: 1rem;
    font-weight: 600;
}

.download-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.download-btn {
    display: inline-block;
    background: #0F3D2E;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.download-btn:hover {
    background: #8B6F47;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 61, 46, 0.3);
}

/* Blog Posts */
.blog-section {
    background: #fff;
    color: #1C1C1C;
    padding: 8rem 4rem;
}

.blog-grid {
    max-width: 1400px;
    margin: 4rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: #f9f9f9;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s;
    border: 2px solid #0F3D2E;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
    text-align: left;
}

.blog-badge {
    display: inline-block;
    background: #0F3D2E;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.blog-date {
    color: #A8894A;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.blog-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #1C1C1C;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 8rem 4rem;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 2px solid #0F3D2E;
    padding: 2rem 0;
    text-align: left;
}

.faq-question {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0F3D2E;
}

.faq-answer {
    color: #1C1C1C;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Careers Section */
.careers-section {
    background: #fff;
    padding: 8rem 4rem;
}

.careers-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 0;
}

.careers-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #1C1C1C;
    margin-bottom: 2rem;
}

.careers-content .email {
    font-size: 1.1rem;
    color: #0F3D2E;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 4rem;
    background: url('https://res.cloudinary.com/dqv6swyul/image/upload/c_fill,w_3840,g_center/f_auto/q_auto:good/v1/Booking3_uieo5a_1_hkkeu9?_a=BAVAZGID0') center/cover;
    color: #fff;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #C2A14D;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: none;
    padding: 3rem;
    border-radius: 0;
    margin-top: 3rem;
    border: 2px solid #0F3D2E;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0F3D2E;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #0F3D2E;
    background: #fff;
    color: #1C1C1C;
    border-radius: 0;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

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

.submit-btn {
    background: #0F3D2E;
    color: #fff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #8B6F47;
    transform: translateY(-2px);
}

/* Contact Info Section */
.contact-info-section {
    background: #fff;
    padding: 8rem 4rem;
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    padding: 2rem;
    text-align: left;
}

.contact-details h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0F3D2E;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #0F3D2E;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0F3D2E;
}

.contact-item p {
    color: #1C1C1C;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-item a {
    color: #0F3D2E;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #C2A14D;
}

.map-container {
    width: 100%;
    height: 600px;
    border: 3px solid #0F3D2E;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.view-all-btn {
    display: inline-block;
    margin-top: 3rem;
    padding: 1rem 3rem;
    border: 2px solid #0F3D2E;
    color: #0F3D2E;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.view-all-btn:hover {
    background: #8B6F47;
    color: #fff;
    border-color: #8B6F47;
}

/* Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s;
}

.popup-close:hover {
    color: #0F3D2E;
}

.popup-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #0F3D2E;
    margin-bottom: 1rem;
}

.popup-content p {
    color: #1C1C1C;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.popup-btn {
    display: inline-block;
    background: #0F3D2E;
    color: #fff;
    padding: 0.9rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.popup-btn:hover {
    background: #8B6F47;
    transform: translateY(-2px);
}

.nav-popup-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.popup-btn-secondary {
    background: #fff;
    color: #0F3D2E;
    border: 1px solid #0F3D2E;
    cursor: pointer;
    font-family: inherit;
}

.popup-btn-secondary:hover {
    background: #0F3D2E;
    color: #fff;
}

/* Footer */
.site-footer {
    background: #0E2A21;
    color: #E8E8E8;
    border-top: 1px solid rgba(194, 161, 77, 0.3);
    margin-top: 0;
}

.site-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4.5rem 4rem 2rem;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 2.8rem;
}

.footer-block h3,
.footer-block h4 {
    font-family: 'Cinzel', serif;
    color: #C2A14D;
    margin-bottom: 1.1rem;
}

.footer-block h3 {
    font-size: 1.35rem;
}

.footer-block h4 {
    font-size: 1.05rem;
}

.footer-block p {
    color: #D5D5D5;
    line-height: 1.75;
    margin-bottom: 0.55rem;
    font-size: 0.95rem;
    text-align: left;
}

.footer-block a {
    display: block;
    color: #D5D5D5;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
    text-align: left;
}

.footer-block a:hover {
    color: #C2A14D;
}

.footer-subscribe {
    display: flex;
    align-items: center;
    border: 1px solid rgba(194, 161, 77, 0.45);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 0.8rem;
}

.footer-subscribe input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #EDEDED;
    padding: 0.8rem 1rem;
}

.footer-subscribe input::placeholder {
    color: rgba(237, 237, 237, 0.65);
}

.footer-subscribe button {
    border: none;
    background: #C2A14D;
    color: #0F3D2E;
    font-weight: 700;
    padding: 0.8rem 1rem;
    cursor: pointer;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer-bottom p {
    margin: 0;
    color: #CFCFCF;
    font-size: 0.9rem;
}

.site-footer-meta {
    display: flex;
    gap: 1.15rem;
    flex-wrap: wrap;
}

.site-footer-meta a {
    color: #D5D5D5;
    text-decoration: none;
    font-size: 0.9rem;
}

.site-footer-meta a:hover {
    color: #C2A14D;
}

.site-footer-meta .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(194, 161, 77, 0.55);
    border-radius: 50%;
    color: #D5D5D5;
    transition: all 0.25s ease;
}

.site-footer-meta .social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.site-footer-meta .social-link:hover {
    background: #C2A14D;
    color: #0F3D2E;
    border-color: #C2A14D;
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1200;
    background: #C2A14D;
    color: #0F3D2E;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.86rem;
    letter-spacing: 0.5px;
    border-radius: 999px;
    padding: 0.82rem 1.2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: contactPulse 2.4s ease-in-out infinite;
}

.floating-contact:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
}

@keyframes contactPulse {
    0%,
    100% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22), 0 0 0 0 rgba(194, 161, 77, 0.32);
    }
    50% {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22), 0 0 0 12px rgba(194, 161, 77, 0);
    }
}

/* Section and card motion enhancements */
.page-header,
.intro-text-section,
.interior-gallery,
.projects-section,
.testimonials-section,
.content-section,
.feature-section,
.team-section,
.blog-section,
.download-section,
.site-footer {
    animation: fadeUpIn 0.85s ease both;
}

.projects-section,
.team-section,
.blog-section,
.download-section {
    animation-delay: 0.08s;
}

.project-card,
.testimonial-card,
.team-member,
.blog-card,
.download-item,
.gallery-item {
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.project-card:hover,
.testimonial-card:hover,
.team-member:hover,
.blog-card:hover,
.download-item:hover,
.gallery-item:hover {
    transform: translateY(-4px);
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-contact,
    .page-header,
    .intro-text-section,
    .interior-gallery,
    .projects-section,
    .testimonials-section,
    .content-section,
    .feature-section,
    .team-section,
    .blog-section,
    .download-section,
    .site-footer {
        animation: none;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #C2A14D;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-links.mobile-open {
    display: flex !important;
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 2rem;
        flex-wrap: wrap;
        justify-content: space-between;
        min-height: auto;
        height: auto;
        width: 100%;
    }

    nav.scrolled {
        padding: 1rem 2rem;
        min-height: auto;
        height: auto;
    }

    .logo img {
        height: 74px;
    }

    .logo {
        position: static;
        transform: none;
    }

    .mobile-menu-btn {
        display: block;
        order: 2;
    }

    .contact-btn {
        position: static;
        transform: none;
        order: 1;
        margin-left: auto;
        font-size: 0.72rem;
        padding: 0.62rem 1rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        order: 3;
        position: fixed;
        top: 110px;
        left: 0;
        right: 0;
        transform: none;
        gap: 0;
        margin-top: 1rem;
        background: rgba(15, 61, 46, 0.98);
        padding: 1rem 0;
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid rgba(194, 161, 77, 0.2);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-submenu {
        position: static;
        display: flex;
        min-width: 100%;
        background: #f4f7f5;
        border-top: 1px solid rgba(15, 61, 46, 0.18);
        box-shadow: none;
    }

    .nav-submenu a {
        color: #0F3D2E;
        padding: 0.9rem 1.5rem;
        font-size: 0.78rem;
        border-bottom: 1px solid rgba(194, 161, 77, 0.18);
        text-align: left;
    }

    .download-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .popup-content {
        padding: 2rem 1.5rem;
    }

    .popup-content h2 {
        font-size: 1.5rem;
    }

    .floating-contact {
        right: 1rem;
        bottom: 1rem;
        font-size: 0.8rem;
        padding: 0.75rem 1.05rem;
    }

    .nav-popup-actions {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .page-header {
        padding: 8rem 2rem 3rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-top-cards {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-card {
        width: 100%;
    }

    .about-leadership-section {
        padding: 1rem 2rem 3rem;
    }

    .about-leader-card {
        grid-template-columns: 1fr;
    }

    .about-leader-image img {
        height: 320px;
    }

    .gallery-item {
        min-width: 260px;
        height: auto;
    }

    .gallery-item img {
        height: 250px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .projects-section,
    .feature-section,
    .testimonials-section,
    .blog-section,
    .faq-section,
    .cta-section,
    .careers-section,
    .contact-info-section,
    .content-section,
    .team-section {
        padding: 4rem 2rem;
    }

    .home-showcase-section {
        padding: 0 2rem 4rem;
    }

    .home-showcase-slider {
        min-height: 240px;
        border-radius: 14px;
        aspect-ratio: 4 / 3;
    }

    .project-card,
    .feature-content,
    .testimonial-card,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-showcase-card {
        padding: 2.2rem 1.4rem;
    }

    .about-showcase-card h2 {
        font-size: 1.65rem;
    }

    .about-showcase-card p {
        font-size: 1rem;
    }

    .leadership-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.4rem;
    }

    .leader-copy h3 {
        font-size: 1.55rem;
    }

    .leader-copy h3 span {
        display: block;
        margin-bottom: 0.35rem;
    }

    .site-footer-inner {
        padding: 3rem 2rem 1.5rem;
    }

    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .blog-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .project-details h2,
    .feature-text h2 {
        font-size: 1.8rem;
    }

    .feature-text h3 {
        font-size: 1.5rem;
    }

    .project-images img,
    .feature-image img,
    .testimonial-image img {
        height: 400px;
    }

    .spec-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .spec-value {
        text-align: left;
    }

    .testimonial-text {
        font-size: 1.2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .gallery-item {
        min-width: 220px;
        height: auto;
    }

    .gallery-item img {
        height: 210px;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

    .blog-card {
        margin-bottom: 1rem;
    }

    .home-showcase-slider {
        min-height: 210px;
        border-radius: 12px;
    }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
div,
button,
input,
textarea,
select,
label,
small,
strong {
    font-family: 'Cormorant Garamond', serif !important;
}
