/* Design Token Definitions */
:root {
    --color-slate-900: #12191D;
    --color-slate-800: #1A2328;
    --color-slate-700: #26323A;
    --color-slate-600: #384A56;
    --color-sand-100: #FCFAF6;
    --color-sand-200: #F6F0E5;
    --color-sand-300: #EAE0CD;
    --color-sand-400: #DFD2B7;
    --color-gold: #C5A059;
    --color-gold-hover: #B28E46;
    --color-gold-light: #F5EFE2;
    --color-gold-dark: #8C6F34;
    --color-text-dark: #1E272C;
    --color-text-light: #FCFAF6;
    --color-text-muted: #5F7381;
    --color-border: #DFD2B7;
    
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-out;
    --shadow-premium: 0 10px 30px rgba(18, 25, 29, 0.03);
    --shadow-heavy: 0 20px 40px rgba(18, 25, 29, 0.08);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --max-width: 1200px;
}

/* Global Reset & Base Elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-sand-100);
    color: var(--color-text-dark);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.625;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Custom Selection & Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--color-sand-200);
}
::-webkit-scrollbar-thumb {
    background: var(--color-slate-700);
    border: 2px solid var(--color-sand-200);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

::selection {
    background-color: var(--color-gold);
    color: var(--color-slate-900);
}

/* Typography Standards */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-slate-800);
}

p {
    margin-bottom: 1rem;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

ul {
    list-style: none;
}

/* Reusable Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.text-center-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.max-w-600 {
    max-width: 600px;
}

.text-gold {
    color: var(--color-gold);
}

/* Common Section Headers */
.section-kicker {
    display: inline-block;
    font-family: var(--font-headings);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-slate-900);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

/* Header & Glassmorphic Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-sand-100);
    border-bottom: 1px solid rgba(223, 210, 183, 0.4);
    box-shadow: 0 4px 20px rgba(18, 25, 29, 0.03);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    height: 80px;
}

.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.2);
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-headings);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-slate-900);
    line-height: 1.1;
}

.brand-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
}

.landmark-badge {
    background-color: var(--color-gold-light);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-slate-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.landmark-badge i {
    color: var(--color-gold);
}

.landmark-badge:hover {
    background-color: var(--color-sand-200);
    border-color: var(--color-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-slate-800);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--color-gold);
}

.contact-btn {
    background-color: var(--color-slate-900);
    color: var(--color-sand-100) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(18, 25, 29, 0.15);
    border: 1px solid transparent;
}

.contact-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-slate-900) !important;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-slate-900);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: var(--color-sand-100);
    box-shadow: -10px 0 40px rgba(18, 25, 29, 0.1);
    z-index: 1050;
    transition: var(--transition-smooth);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-drawer.open {
    right: 0;
}

.mobile-drawer-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--color-slate-900);
    cursor: pointer;
}

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 3rem;
}

.drawer-link {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-slate-900);
}

.drawer-link:hover {
    color: var(--color-gold);
}

.drawer-contact-btn {
    background-color: var(--color-slate-900);
    color: var(--color-sand-100);
    text-align: center;
    padding: 0.875rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(18, 25, 29, 0.1);
}

.drawer-footer {
    border-top: 1px solid var(--color-sand-300);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.drawer-whatsapp {
    background-color: #25D366;
    color: #fff;
    text-align: center;
    padding: 0.875rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 180px 0 100px;
    background-color: var(--color-sand-200);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.05), transparent 60%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background-color: var(--color-sand-300);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.775rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-slate-800);
    margin-bottom: 1.75rem;
    animation: float 4s ease-in-out infinite;
}

.trust-badge i {
    color: var(--color-gold);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-slate-900);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-credentials {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-slate-800);
}

.credential-item i {
    color: var(--color-gold);
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-primary {
    background-color: var(--color-slate-900);
    color: var(--color-sand-100);
    padding: 1.125rem 2.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(18, 25, 29, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid transparent;
}

.cta-primary:hover {
    background-color: var(--color-gold);
    color: var(--color-slate-900);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.3);
}

.cta-secondary {
    background: none;
    border: 2px solid var(--color-slate-900);
    color: var(--color-slate-900);
    padding: 1rem 2.125rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.cta-secondary:hover {
    background-color: var(--color-slate-900);
    color: var(--color-sand-100);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    width: 100%;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    aspect-ratio: 4/3;
    border: 4px solid var(--color-sand-100);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.visual-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: rgba(26, 35, 40, 0.95);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(197, 160, 89, 0.5);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    color: var(--color-sand-100);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.badge-num {
    font-family: var(--font-headings);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
}

.badge-lbl {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.hero-features-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: var(--color-slate-900);
    color: var(--color-sand-100);
    padding: 2.25rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    max-width: var(--max-width);
    margin: 50px auto 0;
}

.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(223, 210, 183, 0.2);
}

.feature-bar-item:last-child {
    border-right: none;
}

.feature-bar-item i {
    font-size: 2rem;
    color: var(--color-gold);
}

.feature-bar-item h4 {
    color: var(--color-sand-100);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-bar-item p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background-color: var(--color-sand-100);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card {
    background-color: var(--color-sand-200);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 360px;
    position: relative;
    transition: var(--transition-smooth);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px dashed var(--color-gold);
    border-radius: var(--border-radius-md);
    pointer-events: none;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.profile-img-frame {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 6px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-slate-900) 100%);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.profile-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-sand-200);
}

.profile-card-details h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.profile-card-details p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
}

.license-tag {
    background-color: var(--color-slate-900);
    color: var(--color-gold);
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 1rem;
}

.pillar-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background-color: var(--color-sand-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.pillar-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.pillar-text p {
    font-size: 0.925rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 120px 0;
    background-color: var(--color-sand-100);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-card {
    background-color: var(--color-sand-200);
    border: 1px solid var(--color-border);
    padding: 3.5rem 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border: 1px dashed rgba(197, 160, 89, 0.3);
    border-radius: var(--border-radius-md);
    pointer-events: none;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--color-gold);
}

.why-card-icon {
    width: 56px;
    height: 56px;
    background-color: var(--color-slate-900);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 10px rgba(18, 25, 29, 0.08);
}

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    color: var(--color-slate-900);
}

.why-card p {
    font-size: 0.925rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background-color: var(--color-sand-200);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.service-card {
    background-color: var(--color-sand-100);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--color-gold);
}

.service-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.service-card:hover .service-img {
    transform: scale(1.06);
}

.service-icon-floating {
    position: absolute;
    bottom: -20px;
    right: 24px;
    width: 48px;
    height: 48px;
    background-color: var(--color-slate-900);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 2px solid var(--color-sand-100);
}

.service-card-body {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-body h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card-body p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    border-top: 1px solid var(--color-sand-200);
    padding-top: 1.25rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-slate-800);
}

/* Plot Tool Section */
.plot-tool-section {
    padding: 120px 0;
    background-color: var(--color-sand-100);
}

.plot-tool-content {
    display: flex;
    flex-direction: column;
}

.calculator-card {
    background-color: var(--color-sand-200);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    margin-top: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.input-group label {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-slate-900);
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    width: 100%;
    padding: 1.125rem 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-slate-900);
    background-color: var(--color-sand-100);
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: var(--transition-fast);
}

.custom-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.15);
}

.custom-select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    color: var(--color-gold);
    pointer-events: none;
}

/* Calculator Result Block */
.calculator-result {
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
    animation: fadeIn 0.4s ease-out forwards;
}

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

.calculator-result.hidden {
    display: none;
}

.result-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-headings);
    font-size: 0.725rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold-dark);
}

#result-bhk-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-slate-900);
}

.result-body {
    margin-bottom: 2rem;
}

#result-description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.vastu-note {
    background-color: var(--color-gold-light);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 0.875rem 1.25rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    color: var(--color-slate-800);
}

.vastu-note i {
    color: var(--color-gold);
}

.result-whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background-color: #25D366;
    color: #fff;
    padding: 1.125rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    transition: var(--transition-smooth);
}

.result-whatsapp-cta:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.plot-tool-visual {
    display: flex;
    justify-content: center;
}

.blueprint-card {
    background-color: var(--color-slate-900);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-heavy);
    color: var(--color-sand-100);
    max-width: 400px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blueprint-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(197, 160, 89, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.04) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.blueprint-compass {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    animation: rotateCompass 30s linear infinite;
}

@keyframes rotateCompass {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.blueprint-card h3 {
    color: var(--color-sand-100);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blueprint-card p {
    font-size: 0.9rem;
    color: rgba(252, 250, 246, 0.7);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Portfolio Gallery Section */
.gallery-section {
    padding: 120px 0;
    background-color: var(--color-sand-200);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.gallery-tab-btn {
    background-color: var(--color-sand-100);
    border: 1px solid var(--color-border);
    color: var(--color-slate-800);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-tab-btn.active, .gallery-tab-btn:hover {
    background-color: var(--color-slate-900);
    color: var(--color-sand-100);
    border-color: var(--color-slate-900);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-premium);
    background-color: var(--color-slate-900);
    border: 2px solid var(--color-sand-100);
    animation: cardEntrance 0.5s ease-out forwards;
}

@keyframes cardEntrance {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 25, 29, 0.95) 0%, rgba(18, 25, 29, 0.4) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    opacity: 0;
    transition: var(--transition-smooth);
    transform: translateY(10px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

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

.gallery-item-tag {
    display: inline-block;
    align-self: flex-start;
    background-color: var(--color-gold);
    color: var(--color-slate-900);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 0.625rem;
}

.gallery-overlay h4 {
    color: var(--color-sand-100);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    font-size: 0.775rem;
    color: rgba(252, 250, 246, 0.7);
    margin-bottom: 1rem;
}

.gallery-zoom-btn {
    background-color: rgba(252, 250, 246, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(252, 250, 246, 0.3);
    color: var(--color-sand-100);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition-fast);
}

.gallery-zoom-btn:hover {
    background-color: var(--color-sand-100);
    color: var(--color-slate-900);
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--color-sand-100);
}

.testimonials-slider-container {
    max-width: 750px;
    margin: 0 auto;
    background-color: var(--color-sand-200);
    border: 1px solid var(--color-border);
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-premium);
    position: relative;
}

.testimonials-slider-container::before {
    content: '"';
    font-family: var(--font-headings);
    font-size: 10rem;
    font-weight: 900;
    color: var(--color-sand-300);
    position: absolute;
    top: -20px;
    left: 40px;
    line-height: 1;
    pointer-events: none;
}

.testimonial-slide {
    display: none;
    flex-direction: column;
    animation: slideFade 0.5s ease-out forwards;
}

.testimonial-slide.active {
    display: flex;
}

@keyframes slideFade {
    from { opacity: 0; transform: translateX(15px); }
    to { opacity: 1; transform: translateX(0); }
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--color-slate-900);
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.author-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.author-info p {
    font-size: 0.775rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    border-top: 1px solid var(--color-sand-300);
    padding-top: 2rem;
}

.slider-arrow {
    background-color: var(--color-sand-100);
    border: 1px solid var(--color-border);
    color: var(--color-slate-900);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    background-color: var(--color-slate-900);
    color: var(--color-sand-100);
    border-color: var(--color-slate-900);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-sand-400);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--color-gold);
}

/* Contact & Inquiries Section */
.contact-section {
    padding: 120px 0;
    background-color: var(--color-sand-200);
}

.contact-info-block {
    display: flex;
    flex-direction: column;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin: 2rem 0;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.detail-icon {
    width: 44px;
    height: 44px;
    background-color: var(--color-sand-100);
    border: 1px solid var(--color-border);
    color: var(--color-gold);
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.detail-text p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.map-link-container {
    margin-top: 1rem;
}

.map-anchor-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background-color: var(--color-slate-900);
    color: var(--color-sand-100);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.map-anchor-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-slate-900);
}

/* Form Styles */
.form-container-card {
    background-color: var(--color-sand-100);
    border: 1px solid var(--color-border);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-heavy);
}

.form-container-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.form-container-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-slate-800);
}

.form-group input, .form-group textarea {
    padding: 0.875rem 1.125rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-slate-900);
    background-color: var(--color-sand-200);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

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

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-gold);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.1);
}

.form-submit-btn {
    width: 100%;
    background-color: var(--color-slate-900);
    color: var(--color-sand-100);
    border: none;
    padding: 1.125rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    box-shadow: 0 4px 15px rgba(18, 25, 29, 0.1);
    transition: var(--transition-smooth);
}

.form-submit-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-slate-900);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

/* Footer Styles */
.main-footer {
    background-color: var(--color-slate-900);
    color: var(--color-sand-100);
    padding: 80px 0 40px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(252, 250, 246, 0.1);
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-sand-100);
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(252, 250, 246, 0.6);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-credentials-box {
    border-left: 2px solid var(--color-gold);
    padding-left: 1rem;
    font-size: 0.8rem;
    color: rgba(252, 250, 246, 0.8);
}

.footer-links-column, .footer-social-column {
    display: flex;
    flex-direction: column;
}

.footer-links-column h4, .footer-social-column h4 {
    color: var(--color-gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.footer-links-column a {
    color: rgba(252, 250, 246, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.875rem;
}

.footer-links-column a:hover {
    color: var(--color-gold);
    transform: translateX(3px);
}

.footer-social-column p {
    font-size: 0.9rem;
    color: rgba(252, 250, 246, 0.6);
    margin-bottom: 1.5rem;
}

.social-links-row {
    display: flex;
    gap: 1rem;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(252, 250, 246, 0.05);
    border: 1px solid rgba(252, 250, 246, 0.1);
    color: var(--color-sand-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.social-icon-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-slate-900);
    border-color: var(--color-gold);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(252, 250, 246, 0.4);
    flex-wrap: wrap;
    gap: 1rem;
}

.credit-text {
    font-weight: 600;
    color: rgba(197, 160, 89, 0.6);
}

/* Lightbox Modal (Shared CSS) */
.video-modal, .image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal-overlay, .image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 25, 29, 0.95);
}

.video-modal-content, .image-modal-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 850px;
    animation: zoomEntrance 0.3s ease-out;
}

.image-modal-content {
    max-width: 700px;
}

.image-modal-content img {
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border: 4px solid var(--color-sand-100);
}

@keyframes zoomEntrance {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.video-modal-close, .image-modal-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: none;
    border: none;
    color: var(--color-sand-100);
    font-size: 1.5rem;
    cursor: pointer;
}

.video-modal-body {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.video-modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Floating WhatsApp FAB Styling */
.floating-whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
}

.floating-whatsapp-fab:hover {
    transform: scale(1.08) rotate(5deg);
}

.whatsapp-tooltips {
    position: absolute;
    right: 75px;
    background-color: rgba(26, 35, 40, 0.95);
    border: 1px solid var(--color-gold);
    color: var(--color-sand-100);
    font-size: 0.775rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.floating-whatsapp-fab:hover .whatsapp-tooltips {
    opacity: 1;
    transform: translateX(0);
}

.footer-seo-line {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-copyright {
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.powered-by {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.bharatos-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-gold);
    font-weight: 700;
    transition: var(--transition-fast);
}

.bharatos-link:hover {
    color: var(--color-sand-100);
}

.bharatos-footer-logo {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    object-fit: cover;
    display: inline-block;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .grid-2 {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }
    
    .footer-social-column {
        grid-column: span 2;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .main-header {
        height: 70px;
    }
    
    .header-container {
        height: 70px;
        padding: 0.5rem 1.5rem;
    }
    
    .landmark-badge, .nav-links {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .hero-section {
        padding: 130px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-credentials {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-features-bar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.75rem;
        margin: 40px auto 0;
    }
    
    .feature-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(223, 210, 183, 0.2);
        padding: 0 0 1.5rem;
    }
    
    .feature-bar-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider-container {
        padding: 3rem 1.5rem;
    }
    
    .testimonials-slider-container::before {
        font-size: 6rem;
        top: -10px;
        left: 20px;
    }
    
    .testimonial-quote {
        font-size: 1.05rem;
    }
    
    .form-container-card {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 40px;
    }
    
    .footer-social-column {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .floating-whatsapp-fab {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.75rem;
    }
    
    .whatsapp-tooltips {
        display: none; /* Hide tooltips on mobile screens */
    }
}

@media (max-width: 500px) {
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hero-title {
        font-size: 2.15rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-section, .services-section, .plot-tool-section, .gallery-section, .testimonials-section, .contact-section {
        padding: 80px 0;
    }
}
