/* ==========================================================================
   DWARAKA 369 - Luxury Real Estate Website Styles
   ========================================================================== */

/* Root Variables */
:root {
    /* Colors */
    --royal-gold: #D4AF37;
    --warm-ivory: #F8F6F0;
    --off-white: #FAFAF8;
    --charcoal: #2C2C2C;
    --deep-graphite: #1A1A1A;
    --bronze: #CD7F32;
    --gold-light: #ECD9A8;
    --gold-dark: #B8941F;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
      --font-montserrat: 'Montserrat', sans-serif;
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Effects */
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
.back-to-top {
    bottom: 280px !important;
}
body {
    font-family: var(--font-montserrat);
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--warm-ivory);
}

/*body {*/
/*    font-family: var(--font-sans);*/
/*    line-height: 1.6;*/
/*    color: var(--charcoal);*/
/*    background: var(--warm-ivory);*/
/*}*/

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

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

ul {
    list-style: none;
}
/*h1{*/
/*       font-family: var(--font-montserrat)!important;*/
/*}*/
/* Typography */
h1, h2, h3, h4, h5, h6 {
       font-family: var(--font-montserrat)!important;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: var(--royal-gold); }
.text-white { color: white; }
.text-white-70 { color: rgba(255,255,255,0.7); }
.bg-white { background: white; }
.bg-warm-ivory { background: var(--warm-ivory); }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.rounded-img { border-radius: 16px; }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--royal-gold), var(--gold-dark));
    color: var(--deep-graphite);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--royal-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-primary.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

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

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: white;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--charcoal);
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--royal-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--royal-gold);
    transition: var(--transition);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    display: none;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--royal-gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-headline {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Page Hero */
.page-hero {
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 80px;
}

.page-hero-title {
    font-size: 4rem;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--muted-foreground);
    max-width: 800px;
    margin: 0 auto;
}

.title-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
    margin: 24px auto 0;
}

.title-divider.left {
    margin: 24px 0 0;
}

/* Grids */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.highlight-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--royal-gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.highlight-icon svg {
    width: 32px;
    height: 32px;
}

.highlight-card h3 {
    color: var(--deep-graphite);
    margin-bottom: 12px;
}

.highlight-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    color: white;
    font-size: 1.1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-item {
    text-align: center;
    padding: 24px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-gold);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
}

/* Amenities */
.amenities-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.amenity-large {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 500px;
}

.amenity-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenity-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.amenity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.amenity-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 242px;
}

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

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

.amenity-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: var(--royal-gold);
    margin-bottom: 16px;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: #555;
}

.testimonial-author h4 {
    color: var(--deep-graphite);
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--royal-gold);
    color: white;
    transform: scale(1.1);
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

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

.contact-info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-info svg {
    color: var(--royal-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 60px 0 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.phone-btn {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.book-btn {
    background: linear-gradient(135deg, var(--royal-gold), var(--gold-dark));
    color: white;
}

/* Contact Page */
.contact-cards-section {
    position: relative;
    padding-top: 0;
    margin-top: -100px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 10;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-gold);
}

.contact-card-icon svg {
    width: 32px;
    height: 32px;
}

.contact-card h3 {
    color: var(--charcoal);
    margin-bottom: 16px;
}

.contact-card p,
.contact-card a {
    color: #666;
    line-height: 1.6;
}

.contact-card a:hover {
    color: var(--royal-gold);
}

/* Contact Form */
.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.contact-feature {
    display: flex;
    gap: 16px;
}

.contact-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--royal-gold);
    flex-shrink: 0;
}

.contact-feature h3 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.contact-feature p {
    color: #666;
    font-size: 0.95rem;
}

.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--royal-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #059669;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #DC2626;
}

/* Map Section */
.map-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-lg);
}

/* Blogs */
.blog-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 24px;
    background: white;
    color: var(--charcoal);
    border: 1px solid #ddd;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--royal-gold), var(--gold-dark));
    color: white;
    border-color: var(--royal-gold);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    background: var(--royal-gold);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.blog-category {
    color: var(--royal-gold);
    font-weight: 600;
}

.blog-read-time {
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.blog-title a {
    color: var(--deep-graphite);
}

.blog-title a:hover {
    color: var(--royal-gold);
}

.blog-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 16px;
}

.blog-author,
.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more {
    color: var(--royal-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.blog-read-more:hover {
    gap: 12px;
}

/* Blog Detail */
.blog-detail-hero {
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.blog-detail-header {
    max-width: 900px;
    color: white;
}

.blog-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--royal-gold);
    color: white;
    border-radius: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-detail-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-detail-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0.9;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-article {
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-article h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--deep-graphite);
}

.blog-article h3 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.blog-article p {
    margin-bottom: 20px;
    color: #444;
}

.blog-article ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 20px;
}

.blog-article li {
    margin-bottom: 8px;
    color: #444;
}

.blog-tags {
    margin-top: 40px;
    padding: 24px;
    background: var(--warm-ivory);
    border-radius: 12px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.tag {
    padding: 6px 16px;
    background: white;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid #ddd;
}

.blog-share {
    margin-top: 32px;
    padding: 24px;
    border: 1px solid #ddd;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.linkedin { background: #0A66C2; }
.share-btn.whatsapp { background: #25D366; }

.related-blogs {
    margin-top: 80px;
}

/* Newsletter */
.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

/* Two Column Layout */
.two-column-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Philosophy Cards */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.philosophy-card {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.philosophy-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--royal-gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-serif);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 32px;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--royal-gold);
}

/* Developer Section */
.developer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 48px;
}

.developer-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.developer-image {
    height: 400px;
    overflow: hidden;
}

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

.developer-info {
    padding: 32px;
}

.developer-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--royal-gold), var(--gold-dark));
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.developer-info h3 {
    font-size: 1.8rem;
    color: var(--deep-graphite);
    margin-bottom: 4px;
}

.developer-title {
    color: var(--royal-gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.developer-bio {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.developer-highlights {
    list-style: none;
}

.developer-highlights li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
}

.developer-highlights svg {
    color: var(--royal-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .amenities-showcase {
        grid-template-columns: 1fr;
    }
    
    .two-column-section,
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .developer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .desktop-nav,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
        background: white;
        padding: 20px;
        border-top: 1px solid #eee;
    }
    
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .mobile-nav-links a {
        padding: 4px 0;
        color: var(--charcoal);
        border-bottom: 1px solid #eee;
        display: block;
    }
    
    .mobile-cta {
        margin-top: 16px;
        padding: 8px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-headline {
        font-size: 1.8rem;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .blog-detail-title {
        font-size: 2.2rem;
    }
    
    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amenity-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
    }
}

.navbar.head-fixed .nav-links a {
    color: var(--charcoal);
}