/* --- RESET & BASE --- */
:root {
    --bg-primary: #0B0B0B;
    --bg-secondary: #151515;
    --bg-surface: #1A1A1A;
    --border-color: #2A2A2A;
    --gold-primary: #a36c42;
    --gold-secondary: #b97a49;
    --text-white: #FFFFFF;
    --text-body: #CFCFCF;
    --text-muted: #9A9A9A;
    --nav-bg: rgba(11, 11, 11, 0.75);
    --hero-gradient: linear-gradient(to right, #0B0B0B 20%, rgba(11, 11, 11, 0.1) 70%, transparent 100%), 
                     linear-gradient(to top, #0B0B0B 0%, transparent 10%);
    --container-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="light"] {
    --bg-primary: #F4F6F8;
    --bg-secondary: #F8F8F6;
    --bg-surface: #FFFFFF;
    --border-color: #E5E7EB;
    --gold-primary: #845532;
    --gold-secondary: #163D6B;
    --text-white: #0B2341;
    --text-body: #1D1D1D;
    --text-muted: #6B7280;
    --nav-bg: rgba(244, 246, 248, 0.75);
    --hero-gradient: linear-gradient(to right, #F4F6F8 20%, rgba(244, 246, 248, 0.1) 70%, transparent 100%), 
                     linear-gradient(to top, #F4F6F8 0%, transparent 10%);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    max-width: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-body);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: clip;
    max-width: 100%;
    width: 100%;
}

body.nav-open,
body.lightbox-open {
    overflow: hidden;
}

main {
    overflow-x: clip;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, .logo {
    font-family: 'Cormorant Garamond', serif;
    color: var(--text-white);
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- UTILITIES --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    min-width: 0;
}

.section {
    padding: 60px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

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

.align-center { align-items: center; }
.text-center { text-align: center; }
.mt-50 { margin-top: 30px; }
.w-100 { width: 100%; }

.gold { color: var(--gold-primary); }
.secondary-bg { background-color: var(--bg-secondary); }
.surface-bg { background-color: var(--bg-surface); }

.section-tag {
    display: block;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(232, 184, 138, 0.15);
    border: 1px solid rgba(232, 184, 138, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #ffffff !important;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-title span {
    color: var(--gold-primary);
    font-style: italic;
}

.lead {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 20px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, #a36c42 0%, #c58b5f 100%);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 2px 0 #7a4d2b,
        0 4px 10px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    top: 0;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c58b5f 0%, #a36c42 100%);
    transform: translateY(-1px);
    box-shadow: 
        0 3px 0 #7a4d2b,
        0 6px 15px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 
        0 1px 0 #7a4d2b,
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--bg-surface);
    color: var(--text-white);
    border: 1px solid var(--border-color);
    box-shadow: 
        0 2px 0 var(--border-color),
        0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    top: 0;
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    background: linear-gradient(135deg, rgba(163, 108, 66, 0.05) 0%, rgba(163, 108, 66, 0.15) 100%);
    transform: translateY(-1px);
    box-shadow: 
        0 3px 0 var(--gold-primary),
        0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary:active {
    transform: translateY(1px);
    box-shadow: 
        0 1px 0 var(--gold-primary),
        0 2px 4px rgba(0, 0, 0, 0.2);
}

/* --- NAVIGATION (PILL STYLE) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    z-index: 9999;
    padding: max(1.5rem, env(safe-area-inset-top, 0px)) max(1rem, env(safe-area-inset-right, 0px)) 0 max(1rem, env(safe-area-inset-left, 0px));
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.navbar__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
    padding: 0 1.25rem;
    background: var(--nav-bg);
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.navbar__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 1;
    min-width: 0;
    max-width: calc(100% - 3rem);
}

.nav-logo {
    height: 45px;
    width: auto;
    max-width: 100%;
    transition: var(--transition-smooth);
}

.navbar__desktop {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar__desktop li {
    display: flex;
    align-items: center;
}

.navbar__link {
    padding: 0.6rem 1.2rem;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--text-body);
    transition: var(--transition-smooth);
    pointer-events: auto;
    display: flex;
    align-items: center;
}

.navbar__link:hover {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

.navbar__link.active {
    color: var(--bg-primary);
    background: var(--gold-primary);
}

/* --- THEME TOGGLE --- */
.theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--gold-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition-smooth);
    z-index: 10001;
    pointer-events: auto;
}

.theme-toggle:hover {
    border-color: var(--gold-primary);
    background-color: var(--bg-secondary);
}

.theme-toggle .sun-icon { display: none; }
.theme-toggle .moon-icon { display: block; }

[data-theme="light"] .theme-toggle .sun-icon { display: block; }
[data-theme="light"] .theme-toggle .moon-icon { display: none; }

/* --- MOBILE TOGGLE --- */
.navbar__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--gold-primary);
    flex-shrink: 0;
    z-index: 10001;
    pointer-events: auto;
}

.navbar__toggle svg {
    width: 2rem;
    height: 2rem;
}

/* --- MOBILE PANEL --- */
.navbar__mobile {
    position: absolute;
    z-index: 10000;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    padding: 2rem;
    background: var(--nav-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.navbar__mobile.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.navbar__mobile li + li {
    margin-top: 0.5rem;
}

.navbar__mobile .navbar__link {
    display: block;
    text-align: center;
}

.navbar__mobile:not(.is-open) * {
    pointer-events: none !important;
}

/* --- RESPONSIVE --- */
@media (min-width: 992px) {
    .navbar__desktop { display: flex; }
    .navbar__toggle { display: none !important; }
    .navbar__mobile { display: none !important; }
    .pd-section-nav__list { display: flex; }
    .pd-section-nav__toggle { display: none !important; }
    .pd-section-nav__mobile { display: none !important; }
}

@media (max-width: 991px) {
    .pd-section-nav__list { display: none; }
}

/* --- HERO --- */
.hero {
    height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: url('../images/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.65) 100%),
        linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin-left: 100px;
}

/* Center hero content on projects page and project detail page */
.projects-page .hero-content,
.project-detail-page .hero-content,
.project-detail-page .project-hero-content {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.projects-page .section-tag,
.project-detail-page .section-tag {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}

.projects-page .hero-subtitle,
.project-detail-page .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.project-detail-page .hero-btns {
    justify-content: center;
}

.hero-title {
    font-size: 84px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.65), 0 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-title span {
    font-style: italic;
    color: #e8b88a;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.65), 0 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.75);
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.hero .btn-secondary:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
    background-color: rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-indicator::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
    transform: rotate(45deg);
    animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translate(0, 0); }
    40% { transform: rotate(45deg) translate(5px, 5px); }
    60% { transform: rotate(45deg) translate(3px, 3px); }
}

.btn-text {
    background: none;
    border: none;
    padding: 12px 0; /* Added vertical padding for larger touch target */
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-primary);
    cursor: pointer;
    display: inline-flex; /* Changed from flex to inline-flex to shrink to content */
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    user-select: none;
    -webkit-tap-highlight-color: transparent; /* Remove mobile tap highlight */
    position: relative;
    z-index: 5; /* Ensure button is above other elements */
}

@media (max-width: 768px) {
    .btn-text {
        padding: 15px 20px; /* Even larger touch target on mobile */
        background: rgba(163, 108, 66, 0.05); /* Subtle background to show touch area */
        border-radius: 8px;
        margin-left: -20px; /* Offset the padding to keep text aligned */
    }
}

.btn-text:hover {
    color: var(--text-white);
}

.btn-text__icon {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-top: -4px;
}

.btn-text:hover .btn-text__icon {
    border-color: var(--text-white);
}

.btn-text.is-expanded .btn-text__icon {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.more-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin 0.5s ease;
}

.more-content.is-open {
    max-height: 500px; /* Adjust based on content length */
    opacity: 1;
    margin-top: 15px;
}

/* --- ABOUT & STATS --- */
.about-image img, .about-sub-image img, .leadership-img img, .csr-image img {
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.about-image img:hover, .about-sub-image img:hover, .leadership-img img:hover, .csr-image img:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.vision-mission h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--gold-primary);
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-list li::before {
    content: '✦';
    color: var(--gold-primary);
    font-size: 10px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* --- PROJECTS --- */
.project-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.project-nav {
    display: flex;
    gap: 15px;
}

.project-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--gold-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    position: relative;
}

.project-nav-btn:hover {
    border-color: var(--gold-primary);
    background: var(--gold-primary);
    color: var(--bg-primary);
}

.nav-icon {
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    display: inline-block;
}

#project-prev .nav-icon, #ongoing-prev .nav-icon, #blogs-prev .nav-icon {
    transform: rotate(-135deg);
    margin-left: 4px;
}

#project-next .nav-icon, #ongoing-next .nav-icon, #blogs-next .nav-icon {
    transform: rotate(45deg);
    margin-right: 4px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.view-all {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold-primary);
    padding-bottom: 5px;
}

.project-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 30px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.ongoing-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 30px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.ongoing-grid::-webkit-scrollbar {
    display: none;
}

.ongoing-grid .project-card {
    flex: 0 0 auto;
    width: min(340px, calc((100vw - 2.5rem) * 0.85));
    scroll-snap-align: start;
}

.project-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.project-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* For slider view */
.project-grid .project-card {
  flex: 0 0 auto;
    width: min(340px, calc((100vw - 2.5rem) * 0.85));
  min-width: unset;
  scroll-snap-align: start;
}

/* For grid view (projects.html) */
#all-projects-grid {
  display: grid !important;
  flex-wrap: wrap !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
  overflow-x: visible !important;
  scroll-snap-type: none !important;
  justify-content: start !important;
}

#all-projects-grid .project-card {
  width: 100% !important;
  flex: none !important;
  scroll-snap-align: none !important;
  min-width: unset !important;
}

/* Reduce card size by 5% while maintaining aspect ratio of featured properties */
#all-projects-grid .project-card {
  transform: scale(0.95); /* Scale entire card down by 5% */
  transform-origin: top center; /* Keep alignment consistent */
}

/* Adjust grid gap to compensate for scaled cards */
#all-projects-grid {
  gap: 28px !important; /* 30 * 0.95 ≈ 28 */
}

/* Responsive fallback for smaller screens */
@media (max-width: 1200px) {
  #all-projects-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  #all-projects-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.project-img {
    position: relative;
    overflow: hidden;
    height: 350px;
}

/* Adjust featured and ongoing project card image height to match 15% reduction (≈343px) */
.project-grid .project-card .project-img,
.ongoing-grid .project-card .project-img {
    height: 343px;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--gold-primary);
    color: var(--bg-primary);
    padding: 5px 15px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-info {
    padding: 30px;
}

.project-info .location {
    font-size: 12px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.project-info h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.project-info .config {
    font-size: 14px;
    color: var(--text-muted);
}

.more-to-come {
    background-color: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    cursor: pointer;
}

.blog-card.more-to-come {
    min-height: auto;
}

.blog-card.more-to-come .blog-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .blog-card.more-to-come .blog-img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .blog-card.more-to-come .blog-img {
        height: 130px;
    }
}

.more-overlay {
    text-align: center;
    padding: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-secondary) 100%);
}

.more-overlay .arrow-indicator {
    margin-top: 15px;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.more-to-come:hover .arrow-indicator {
    transform: translateX(5px);
}

.more-overlay h3 {
    font-size: 32px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .more-overlay h3 {
        font-size: 24px;
    }
    .more-overlay {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .more-overlay h3 {
        font-size: 20px;
    }
    .more-overlay {
        padding: 20px;
    }
}

.more-overlay p {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- WHY US --- */
.feature-card {
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    background-color: var(--bg-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    background-color: var(--bg-secondary);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- LEADERSHIP (FOUNDER CARD STYLE) --- */
.founder-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .founder-grid { grid-template-columns: 1fr 1fr; }
}

.founder-card, .promoter-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    border-radius: 1.5rem;
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
}

.founder-card:hover, .promoter-card:hover {
    transform: translateY(-0.5rem);
    border-color: var(--gold-primary);
}

.founder-card__image-wrap {
    position: relative;
    aspect-ratio: 1 / 1; /* Changed from 3/4 to reduce height */
    width: 100%;
}

.founder-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.founder-card__overlay {
    position: relative;
    margin-top: -2.5rem; /* Reduced from -3rem */
    padding: 1.25rem; /* Reduced from 1.5rem */
    background: var(--nav-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 1rem 1rem 0 0;
    border-top: 1px solid var(--border-color);
}

.founder-card__name {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.founder-card__role {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.founder-card__tagline {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
}

.founder-card__stats {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem; /* Reduced from 1rem */
    padding-top: 0.75rem; /* Reduced from 1rem */
    border-top: 1px solid var(--border-color);
}

.founder-card__stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-body);
}

.founder-card__stat svg {
    width: 1rem;
    height: 1rem;
    color: var(--gold-primary);
}

.founder-card__cta {
    display: block;
    width: 100%;
    margin-top: 0.75rem; /* Reduced from 1rem */
    padding: 0.65rem; /* Reduced from 0.75rem */
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    color: var(--bg-primary);
    background: var(--gold-primary);
    border-radius: 0.75rem;
    transition: var(--transition-smooth);
}

.founder-card__cta:hover {
    background: var(--text-white);
    color: var(--bg-primary);
}

.promoter-info {
    position: relative;
    margin-top: -2.5rem;
    padding: 1.25rem;
    background: var(--nav-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 1rem 1rem 0 0;
    border-top: 1px solid var(--border-color);
}

.promoter-info h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.promoter-info .designation {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.promoter-info .bio {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.4;
}

.leader-info {
    margin-top: 0;
}

/* --- UTILITIES CONTINUED --- */
.mb-60 { margin-bottom: 40px; }
.mb-30 { margin-bottom: 30px; }
.rounded-15 { border-radius: 15px; }

.about-sub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-footer {
    align-items: flex-start;
}
/* --- CSR & SUSTAINABILITY --- */
.csr-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.csr-features li {
    font-size: 14px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.csr-features li::before {
    content: '✦';
    color: var(--gold-primary);
    font-size: 12px;
}

/* --- AWARDS --- */
.award-list {
    margin-top: 40px;
}

.award-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.award-item .year {
    font-size: 20px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-primary);
}

.award-item p {
    font-size: 16px;
    color: var(--text-white);
}

.award-icon-box {
    border: 1px solid var(--border-color);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.award-icon-box:hover {
    border-color: var(--gold-primary);
}

/* --- TESTIMONIALS --- */
.testimonials__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 0 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) rgba(163, 108, 66, 0.2);
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.testimonials__track::-webkit-scrollbar {
    height: 4px;
}

.testimonials__track::-webkit-scrollbar-track {
    background: rgba(163, 108, 66, 0.1);
    border-radius: 2px;
}

.testimonials__track::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 2px;
}

.testimonial-card {
    flex: 0 0 auto;
    width: min(340px, calc(100vw - 2.5rem));
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    padding: 2.5rem;
    text-align: center;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-surface) 100%);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-0.75rem);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.testimonial-card__quote {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--gold-primary);
    font-family: 'Cormorant Garamond', serif;
    transition: var(--transition-smooth);
}

.testimonial-card:hover .testimonial-card__quote {
    transform: scale(1.2);
}

.testimonial-card__body {
    flex: 1;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-body);
    font-style: italic;
}

.testimonial-card__footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.testimonial-card__author {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    font-family: 'Cormorant Garamond', serif;
}

.testimonial-card__location {
    display: block;
    font-size: 0.85rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (min-width: 1024px) {
    .testimonials__track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        overflow: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }

    .testimonial-card {
        flex: unset;
        min-height: 350px;
    }
}

/* --- MEDIA --- */
.media-card {
    text-align: center;
}

.media-card img {
    height: 150px;
    width: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition-smooth);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.media-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    border-color: var(--gold-primary);
}

.media-source {
    font-size: 12px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.media-card h4 {
    font-size: 18px;
}

/* --- BLOGS --- */
#blogs .container {
    overflow: hidden;
}

.blog-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 24px;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    scroll-padding-inline: 20px;
}

.blog-grid::-webkit-scrollbar {
    display: none;
}

.blog-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    flex: 0 0 auto;
    width: min(320px, calc(100vw - 3rem));
    min-width: unset;
    scroll-snap-align: start;
}

.blog-card:hover {
    border-color: var(--gold-primary);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-content .date {
    font-size: 12px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- CONTACT --- */
.contact-details {
    margin: 40px 0;
}

.detail-item {
    margin-bottom: 25px;
}

.detail-item h4 {
    font-size: 18px;
    color: var(--gold-primary);
    margin-bottom: 5px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    border-bottom: 1px solid transparent;
}

.social-links a:hover {
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.contact-form {
    background-color: var(--bg-secondary);
    padding: 50px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 15px;
    color: var(--text-white);
    font-family: inherit;
    outline: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

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

/* --- FOOTER --- */
.footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
    background-color: #1A1A1A; /* Slightly lighter than pure black, matches surface color */
    color: #D1D1D1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer h4, .footer .logo, .footer-bottom p {
    color: #FFFFFF !important;
}

.footer a {
    color: #B0B0B0 !important;
}

.footer a:hover {
    color: var(--gold-primary) !important;
}

.footer .logo img {
    filter: brightness(1) !important; /* Ensure logo is bright on dark background */
}

.footer-logo {
    height: 65px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    margin-top: 20px;
    color: #B0B0B0;
    max-width: 250px;
}

.footer-links h4 {
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #B0B0B0;
}

/* --- WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 100;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

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

.whatsapp-float img {
    width: 35px;
}

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

#testimonials .container {
    overflow: hidden;
}
.project-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.mt-30 { margin-top: 30px; }

/* --- RESPONSIVE (must follow component styles) --- */
@media (max-width: 1200px) {
    .hero-content { margin-left: 50px; }
}

@media (max-width: 991px) {
    .navbar {
        padding: max(1rem, env(safe-area-inset-top, 0px)) max(0.75rem, env(safe-area-inset-right, 0px)) 0 max(0.75rem, env(safe-area-inset-left, 0px));
    }
    .navbar__bar { height: 4rem; padding: 0 1rem; }
    .nav-logo { height: 35px; }

    .section-title { font-size: 40px; }
    .hero-title { font-size: 56px; }

    .hero-overlay {
        background:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.72) 100%);
    }

    .hero-overlay::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
        pointer-events: none;
    }

    .grid-4,
    .grid-3:not(.project-grid) { grid-template-columns: repeat(2, 1fr); }

    .stat-item h3 { font-size: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .grid-2,
    .grid-3:not(.project-grid),
    .grid-4,
    .grid-5 { grid-template-columns: 1fr; gap: 30px; }

    .hero {
        height: auto;
        min-height: 90vh;
        padding: 140px 0 80px;
        overflow: hidden;
        background-position: center center;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
        width: 100%;
        max-width: none;
        padding: 0 10px;
    }

    .hero-title {
        font-size: 40px;
        word-wrap: break-word;
        hyphens: auto;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
        font-size: 16px;
        max-width: 100%;
        line-height: 1.65;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 12px;
    }

    .about-hero { height: 45vh !important; min-height: 280px; }
    .legal-hero { height: 35vh !important; min-height: 220px; }
    .legal-content { 
        padding: 60px 40px !important; 
    }
    .legal-section ul {
        margin-left: 25px !important;
    }
    .content-section { padding: 60px 0 !important; }

    .about .grid-2 {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .about-left { display: contents; }

    .about-image { order: 1; }
    .about-text { margin-top: 40px; }
    .vision-mission { order: 3; }
    .about-sub-image { display: none; }

    .section { padding: 50px 0; }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 40px;
    }

    .section-tag { letter-spacing: 3px; font-size: 11px; }

    .stat-item h3 { font-size: 36px; }

    .project-card {
        width: min(340px, calc(100vw - 2.5rem));
    }

    .project-img { height: 260px; }

    .project-info { padding: 20px; }
    .project-info h3 { font-size: 24px; }

    .project-footer {
        justify-content: center;
    }

    .project-grid {
        scroll-padding-inline: 20px;
    }

    .reveal-left,
    .reveal-right {
        transform: translateY(24px);
    }

    .reveal-left.active,
    .reveal-right.active {
        transform: translateY(0);
    }

    .feature-card { padding: 28px 24px; }

    .testimonial-card {
        width: min(300px, calc(100vw - 2rem));
        min-height: 280px;
        padding: 1.75rem;
    }

    .testimonial-card__quote { font-size: 2.5rem; }

    .contact-form { padding: 28px 20px; }

    .social-links {
        flex-wrap: wrap;
        gap: 12px 20px;
    }

    .footer { padding: 40px 0 20px; }
    .footer-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px; 
    }
    .footer-brand { grid-column: span 2; text-align: center; }
    .footer-brand p { margin: 15px auto 0; max-width: 85%; }
    .footer-logo { height: 50px; margin-bottom: 10px; }
    .footer-links h4 { font-size: 18px; margin-bottom: 15px; }
    .footer-links ul li { margin-bottom: 8px; }
    .footer-bottom { 
        margin-top: 30px; 
        padding-top: 20px; 
        flex-direction: column; 
        text-align: center; 
        gap: 10px; 
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float img { width: 28px; }

    .scroll-indicator { display: none; }

    .story-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .founder-grid { gap: 2rem; }

    .leadership-text { text-align: center; }
    .leadership-text .section-tag,
    .leadership-text .section-title { text-align: center; }

    .more-to-come { min-height: 280px; }

    .blog-grid { gap: 16px; }

    .blog-card {
        width: min(260px, 72vw);
    }

    .blog-img { height: 150px; }

    .blog-content {
        padding: 16px;
    }

    .blog-content h3 {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .blog-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    .blog-content .date {
        margin-bottom: 10px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: max(0.75rem, env(safe-area-inset-top, 0px)) max(0.625rem, env(safe-area-inset-right, 0px)) 0 max(0.625rem, env(safe-area-inset-left, 0px));
    }
    .navbar__bar { padding: 0 0.875rem; height: 3.75rem; }
    .nav-logo { height: 30px; }

    .navbar__mobile {
        padding: 1.5rem;
        margin-top: 0.5rem;
    }

    .hero {
        padding-top: 110px;
        background-position: 60% center;
    }

    .hero-title { font-size: 32px; }
    .section-title { font-size: 28px; }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .stat-item h3 { font-size: 32px; }

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

    .project-card {
        width: min(300px, calc(100vw - 2rem));
    }
    .project-img { height: 220px; }

    .blog-card {
        width: min(230px, 68vw);
    }

    .blog-img { height: 130px; }

    .blog-content { padding: 14px; }
    .blog-content h3 { font-size: 15px; }
    .blog-content p { font-size: 12px; }

    .value-card { padding: 28px 20px; }
}

.leadership-text {
}

.leadership-text .lead {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 20px;
}

.leadership-text p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* --- LOCATION TABS --- */
.location-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.location-tab {
    padding: 12px 30px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-body);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.location-tab:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.location-tab.active {
    background: var(--gold-primary);
    color: var(--bg-primary);
    border-color: var(--gold-primary);
}

/* Slide-in animation for Mumbai sub-tabs */
.mumbai-sub-tabs {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateX(-50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.mumbai-sub-tabs.visible {
    opacity: 1;
    max-height: 200px;
    transform: translateX(0);
    margin-top: 20px;
}

.mumbai-sub-tabs .location-tab {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8.4px 21px; /* 30% smaller than 12px 30px */
    font-size: 9.8px; /* 30% smaller than 14px */
}

.mumbai-sub-tabs.visible .location-tab {
    opacity: 1;
    transform: translateX(0);
}

.mumbai-sub-tabs.visible .location-tab:nth-child(1) { transition-delay: 0s; }
.mumbai-sub-tabs.visible .location-tab:nth-child(2) { transition-delay: 0.05s; }
.mumbai-sub-tabs.visible .location-tab:nth-child(3) { transition-delay: 0.1s; }
.mumbai-sub-tabs.visible .location-tab:nth-child(4) { transition-delay: 0.15s; }
.mumbai-sub-tabs.visible .location-tab:nth-child(5) { transition-delay: 0.2s; }
.mumbai-sub-tabs.visible .location-tab:nth-child(6) { transition-delay: 0.25s; }

/* --- PARTNERS GRID --- */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.partner-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.partner-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--gold-primary);
    display: block;
}

.partner-card h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--text-white);
}

.partner-card .partner-role {
    font-size: 14px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- ABOUT PAGE PREMIUM STYLES --- */

/* Hero Section Premium */
.about-hero-premium {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(163, 108, 66, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(163, 108, 66, 0.1), transparent 40%);
    pointer-events: none;
}

.hero-content-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 140px 20px 80px;
}

.hero-left {
    max-width: 600px;
}

.hero-title-premium {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-white);
    font-family: 'Cormorant Garamond', serif;
}

.hero-title-premium span {
    color: var(--gold-primary);
    font-style: italic;
}

.hero-subtitle-premium {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-shape-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    opacity: 0.3;
    animation: morph 8s ease-in-out infinite;
    filter: blur(2px);
}

.abstract-logo {
    position: relative;
    z-index: 1;
    width: 220px;
    height: 220px;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 1;
}

[data-theme="light"] .abstract-logo {
    mix-blend-mode: multiply;
    filter: grayscale(100%) brightness(0) sepia(100%) saturate(400%) hue-rotate(330deg) brightness(80%);
    opacity: 1;
}

@keyframes morph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    50% {
        border-radius: 60% 40% 30% 70% / 50% 40% 70% 60%;
    }
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
}

.our-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.story-text p {
    font-size: 16px;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.highlight-card {
    background: var(--bg-surface);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    font-size: 36px;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.highlight-card h3 {
    font-size: 40px;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 100px 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card, .mission-card {
    background: var(--bg-secondary);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.vm-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.vision-card h3, .mission-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.vision-card p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
}

.mission-points {
    list-style: none;
    padding: 0;
}

.mission-points li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-body);
    font-size: 16px;
}

.mission-points li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
}

.leadership-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    margin-top: 16px;
}

.promoter-card {
    display: flex;
    gap: 50px;
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    margin-bottom: 60px;
    align-items: center;
    transition: var(--transition-smooth);
}

.promoter-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.promoter-photo-placeholder {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-secondary));
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.promoter-card:hover .promoter-photo-placeholder {
    transform: scale(1.05);
    border-color: var(--gold-primary);
}

.photo-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
}

.promoter-info h3 {
    font-size: 32px;
    margin-bottom: 8px;
}

.designation {
    color: var(--gold-primary);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.bio {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.7;
}

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

.partner-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-smooth);
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.partner-photo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bg-surface), var(--bg-secondary));
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.partner-card:hover .partner-photo-placeholder {
    transform: scale(1.1);
    border-color: var(--gold-primary);
}

.placeholder-small {
    color: var(--text-muted);
    font-size: 12px;
}

.partner-card h4 {
    font-size: 22px;
    margin-bottom: 8px;
}

.partner-role {
    color: var(--gold-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Engineering Section */
.engineering-section {
    padding: 100px 0;
}

.engineering-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.engineering-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.engineering-item:hover {
    border-color: var(--gold-primary);
    transform: translateX(10px);
}

.eng-icon {
    font-size: 32px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.eng-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-white);
}

.eng-text p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
}

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

.why-card {
    background: var(--bg-surface);
    padding: 30px 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.why-emoji {
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
}

.why-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    padding-right: 50px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 50px;
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--gold-primary);
    border-radius: 50%;
    top: 0;
    z-index: 10;
    box-shadow: 0 0 0 4px var(--bg-primary);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-content {
    background: var(--bg-secondary);
    padding: 24px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    border-color: var(--gold-primary);
}

.timeline-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-body);
}

/* Values Section */
.values-section {
    padding: 100px 0;
}

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

.value-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-body);
}

/* Associates Section */
.associates-section {
    padding: 100px 0;
}

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

.associate-card {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    font-size: 16px;
    color: var(--text-white);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.associate-card:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-5px);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(163, 108, 66, 0.15), transparent 70%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-content h2 span {
    color: var(--gold-primary);
    font-style: italic;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1024px) {
    .hero-content-premium {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-left {
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-right {
        order: -1;
    }
    
    .abstract-shape {
        width: 280px;
        height: 280px;
    }
    
    .our-story-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .associates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title-premium {
        font-size: 36px;
    }
    
    .promoter-card {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .promoter-photo-placeholder {
        width: 220px;
        height: 220px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        margin-left: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        left: 12px !important;
        right: auto !important;
    }
    
    .highlights-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 20px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    .highlights-grid::-webkit-scrollbar {
        display: none;
    }
    
    .highlights-grid .highlight-card {
        flex: 0 0 auto;
        width: min(280px, calc(100vw - 4rem));
        scroll-snap-align: start;
    }
    
    .partners-grid,
    .why-choose-grid,
    .values-grid,
    .associates-grid {
        grid-template-columns: 1fr;
    }
}

@media (hover: none) and (pointer: coarse) {
    .highlight-card:hover,
    .vision-card:hover,
    .mission-card:hover,
    .partner-card:hover,
    .why-card:hover,
    .value-card:hover,
    .associate-card:hover {
        transform: none;
    }
}

/* --- Projects Page Styles --- */
.projects-hero {
    padding-bottom: 40px;
}

#all-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex-wrap: wrap;
    overflow: visible;
}

@media (max-width: 991px) {
    #all-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #all-projects-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Project Detail Page Styles --- */
.project-detail-page .project-hero-section {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
}

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.project-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.project-hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 24px auto 0 auto;
    max-width: 800px;
}

.highlight-item {
    background: var(--bg-surface);
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    text-align: left;
    transition: var(--transition-smooth);
    font-size: 15px;
    color: var(--text-white);
    position: relative;
    padding-left: 40px;
}

.highlight-item::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
}

.highlight-item:hover {
    border-color: var(--gold-primary);
    transform: translateX(5px);
}

.highlight-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.highlight-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

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

.amenity-item {
    background: var(--bg-surface);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-smooth);
}

.amenity-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.amenity-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.amenity-item h3 {
    font-size: 18px;
}

.location-content {
    margin-top: 40px;
}

.location-address {
    font-size: 20px;
    color: var(--text-white);
    margin-bottom: 30px;
    text-align: center;
}

.location-map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-inner {
    text-align: center;
}

.map-inner p:first-child {
    font-size: 60px;
    margin-bottom: 10px;
}

.map-inner p:last-child {
    color: var(--text-muted);
}

.enquiry-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .enquiry-form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .highlights-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }
}

/* Project Hero Section */
.project-hero-section {
    height: 80vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
}

.project-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.project-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.project-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.project-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Highlights Section */
.highlights-section {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.mb-60 {
    margin-bottom: 60px;
}

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

.highlight-item {
    background: var(--bg-surface);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.highlight-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 0;
}

/* Amenities Section */
.amenities-section {
    padding: 100px 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.amenity-item {
    background: var(--bg-surface);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-smooth);
}

.amenity-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.amenity-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.amenity-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    margin-bottom: 0;
}

/* Location Section */
.location-section {
    padding: 100px 0;
}

.location-content {
    margin-top: 40px;
    text-align: center;
}

.location-address {
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 40px;
    font-family: 'Cormorant Garamond', serif;
}

.location-map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-inner {
    text-align: center;
}

.map-inner p:first-child {
    font-size: 64px;
    margin-bottom: 10px;
}

.map-inner p:last-child {
    color: var(--text-muted);
    font-size: 18px;
}

/* Enquiry Section */
.enquiry-section {
    padding: 100px 0;
}

.enquiry-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.enquiry-form {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-white);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
}

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

.w-100 {
    width: 100%;
}

.enquiry-contact {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.enquiry-contact h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--text-white);
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--gold-primary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-item span,
.contact-item a {
    color: var(--text-white);
    font-size: 18px;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--gold-primary);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .enquiry-form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .project-hero-section {
        height: 70vh;
    }
    .highlights-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .enquiry-form {
        padding: 30px 20px;
    }
}

/* Surface & Secondary Backgrounds */
.surface-bg {
    background: var(--bg-surface);
}

.secondary-bg {
    background: var(--bg-secondary);
}

/* --- Content-Rich Project Detail Page --- */
.text-gold {
    color: var(--gold-primary);
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    background: transparent;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
}

.pd-not-found {
    padding-top: 150px;
    padding-bottom: 80px;
    text-align: center;
}

.pd-not-found p {
    margin: 20px 0 30px;
    font-size: 18px;
}

.pd-breadcrumb {
    padding: 100px 0 12px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pd-breadcrumb__list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.pd-breadcrumb__list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.pd-breadcrumb__list a:hover {
    color: var(--gold-primary);
}

.pd-breadcrumb__sep {
    color: var(--text-muted);
}

.pd-breadcrumb__current {
    color: var(--gold-primary);
    font-weight: 500;
}

.pd-section-nav {
    position: sticky;
    top: calc(1.5rem + 4.5rem); /* Accounts for navbar padding and height */
    z-index: 9998;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    transition: box-shadow 0.3s;
}

.pd-section-nav.is-stuck {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.pd-section-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 0;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.pd-section-nav__list::-webkit-scrollbar {
    display: none;
}

.pd-section-nav__link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 999px;
    transition: var(--transition-smooth);
}

.pd-section-nav__link:hover {
    color: var(--gold-primary);
    background: rgba(201, 162, 39, 0.1);
}

.pd-section-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pd-section-nav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--gold-primary);
    flex-shrink: 0;
    z-index: 10001;
    pointer-events: auto;
}

.pd-section-nav__toggle svg {
    width: 2rem;
    height: 2rem;
}

.pd-section-nav__mobile {
    position: fixed;
    z-index: 9999;
    left: 0;
    right: 0;
    margin: 0 1rem;
    padding: 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    width: auto;
    max-width: calc(100% - 2rem);
    box-sizing: border-box;
}

.pd-section-nav__mobile.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.pd-section-nav__mobile li + li {
    margin-top: 0.5rem;
}

.pd-section-nav__mobile .pd-section-nav__link {
    display: block;
    text-align: center;
}

.pd-section-nav__mobile:not(.is-open) * {
    pointer-events: none !important;
}



.hero-config {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 8px;
}

.pd-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.pd-hero-badge {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.4);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.pd-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pd-highlights-image {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.pd-highlights-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.pd-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.pd-highlights-list li {
    position: relative;
    padding: 14px 0 14px 28px;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-white);
}

.pd-highlights-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
}

.pd-why-invest {
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.pd-why-invest h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.pd-why-invest p {
    color: var(--text-muted);
    line-height: 1.7;
}

.pd-overview-section {
    padding: 100px 0;
}

.pd-overview-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pd-overview-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-white);
    margin-bottom: 20px;
}

.pd-overview-secondary {
    color: var(--text-muted) !important;
}

.pd-section-desc {
    max-width: 720px;
    margin: 16px auto 0;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
}

.pd-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.pd-stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.pd-stat-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.pd-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.pd-gallery-section {
    padding: 100px 0;
}

.pd-gallery-note {
    color: var(--text-muted);
    font-size: 15px;
    margin-top: 12px;
}

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

.pd-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    aspect-ratio: 4 / 3;
}

.pd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.pd-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #fff;
    font-size: 14px;
}

.pd-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.pd-lightbox[hidden] {
    display: none !important;
}

.pd-lightbox__image {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
}

.pd-lightbox__close,
.pd-lightbox__prev,
.pd-lightbox__next {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.pd-lightbox__close:hover,
.pd-lightbox__prev:hover,
.pd-lightbox__next:hover {
    background: rgba(201, 162, 39, 0.5);
}

.pd-lightbox__close {
    top: 20px;
    right: 20px;
}

.pd-lightbox__prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.pd-lightbox__next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.pd-lightbox__caption {
    color: #fff;
    margin-top: 16px;
    font-size: 16px;
}

.pd-pricing-section {
    padding: 100px 0;
}

.pd-pricing-cta {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--bg-surface);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.pd-pricing-cta p {
    margin-bottom: 24px;
    line-height: 1.7;
    color: var(--text-white);
}

.pd-pricing-table-wrap {
    overflow-x: auto;
}

.pd-pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-surface);
    border-radius: 16px;
    overflow: hidden;
}

.pd-pricing-table th,
.pd-pricing-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.pd-pricing-table th {
    background: var(--bg-secondary);
    color: var(--gold-primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pd-pricing-table td {
    color: var(--text-white);
}

.pd-bhk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.pd-bhk-card {
    padding: 32px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-align: center;
}

.pd-bhk-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.pd-bhk-area {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pd-bhk-price {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 16px;
}

.pd-bhk-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pd-bhk-card li {
    padding: 6px 0 6px 20px;
    position: relative;
    color: var(--text-muted);
    font-size: 14px;
}

.pd-bhk-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
}

.pd-floorplan-section {
    padding: 100px 0;
}

.pd-floorplan-placeholder {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--bg-surface);
    border-radius: 20px;
    border: 1px dashed var(--border-color);
}

.pd-floorplan-placeholder p {
    margin-bottom: 24px;
    line-height: 1.7;
    color: var(--text-muted);
}

.pd-master-plan {
    margin-bottom: 40px;
    text-align: center;
}

.pd-master-plan h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.pd-master-plan img {
    max-width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.pd-floorplan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pd-floorplan-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.pd-floorplan-type {
    padding: 14px 20px;
    background: var(--bg-secondary);
    font-weight: 600;
    color: var(--gold-primary);
}

.pd-floorplan-card img {
    width: 100%;
    display: block;
}

.pd-floorplan-meta {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.pd-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.pd-location-map {
    background: var(--bg-surface);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.pd-location-map-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-surface));
    border-bottom: 1px solid var(--border-color);
}

.pd-location-map-header span:first-child {
    font-size: 28px;
}

.pd-location-map-header strong {
    display: block;
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 4px;
}

.pd-location-map-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.pd-location-map-frame {
    height: 400px;
}

.pd-location-map-frame iframe,
.pd-location-map-frame .map-inner {
    width: 100%;
    height: 100%;
}

.pd-map-note {
    font-size: 14px !important;
    margin-top: 8px;
}

.pd-location-category {
    margin-bottom: 28px;
}

.pd-location-category h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--gold-primary);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.pd-location-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pd-location-category li {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.pd-place-icon {
    font-size: 18px;
}

.pd-place-name {
    color: var(--text-white);
    font-size: 15px;
}

.pd-place-distance {
    color: var(--text-muted);
    font-size: 13px;
    white-space: nowrap;
}

.pd-faq-section {
    padding: 100px 0;
}

.pd-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.pd-faq-item {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-surface);
}

.pd-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
}

.pd-faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--gold-primary);
    font-size: 20px;
    transition: transform 0.3s, background 0.3s;
}

.pd-faq-item.is-open .pd-faq-toggle {
    transform: rotate(45deg);
    background: var(--gold-primary);
    color: var(--bg-primary);
}

.pd-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.pd-faq-item.is-open .pd-faq-answer {
    max-height: 400px;
}

.pd-faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

.pd-developer-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.pd-developer-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
    align-items: center;
}

.pd-developer-logo img {
    max-width: 100%;
    height: auto;
}

.pd-developer-content .section-title {
    text-align: left;
    margin: 12px 0 20px;
}

.pd-developer-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.pd-developer-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
}

.pd-developer-stats div {
    text-align: center;
}

.pd-developer-stats strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--gold-primary);
}

.pd-developer-stats span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.pd-rera-strip {
    padding: 24px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pd-rera-strip p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.pd-rera-strip a {
    color: var(--gold-primary);
}

.pd-rera-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.pd-rera-qr {
    max-height: 80px;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .pd-highlights-grid,
    .pd-location-grid,
    .pd-developer-grid {
        grid-template-columns: 1fr;
    }

    .pd-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pd-developer-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pd-breadcrumb {
        padding-top: 90px;
    }

    .pd-section-nav {
        top: calc(1rem + 4rem); /* Accounts for navbar padding and height on mobile */
    }

    .pd-gallery-grid,
    .pd-stats-grid {
        grid-template-columns: 1fr;
    }

    .pd-developer-content .section-title {
        text-align: center;
    }

    .pd-developer-content {
        text-align: center;
    }

    .pd-developer-content .section-tag {
        display: block;
        text-align: center;
    }
}
