/* ===========================
   WESTWORTH DEVELOPMENT GROUP LTD.
   Luxury Property Development
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for fixed header */
}

:root {
    --white: #ffffff;
    --black: #000000;
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --gold-light: #F0D878;
    --text-light: rgba(255, 255, 255, 0.9);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    overflow-x: hidden;
    background: var(--black);
}

/* Force font rendering to prevent FOUT glitches */
.logo-center h1,
.logo-center p {
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-display: swap;
}

/* Hide logo until fonts are loaded to prevent flickering */
.fonts-loading .logo-center h1,
.fonts-loading .logo-center p {
    visibility: hidden;
}

.fonts-loaded .logo-center h1,
.fonts-loaded .logo-center p {
    visibility: visible;
}

/* ===========================
   TRANSPARENT HEADER
   =========================== */

.header-transparent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 60px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
}

/* Logo Center */
.logo-center {
    text-align: center;
    color: var(--white);
    grid-column: 2;
}

.logo-center a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo-center a:hover,
.logo-center a:active,
.logo-center a:focus {
    color: inherit;
    text-decoration: none;
}

.logo-center h1 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 8px;
    margin-bottom: -5px;
    visibility: visible;
    opacity: 1;
}

.logo-center p {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--gold);
    visibility: visible;
    opacity: 1;
}

/* Navigation */
.nav-left {
    display: flex;
    gap: 35px;
    justify-content: flex-start;
}

.nav-right {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: flex-end;
}

.nav-links-right {
    display: flex;
    gap: 35px;
}

.nav-left a,
.nav-links-right a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
    padding-bottom: 5px;
}

.nav-left a::after,
.nav-links-right a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-left a:hover,
.nav-links-right a:hover {
    color: var(--gold);
}

.nav-left a:hover::after,
.nav-links-right a:hover::after {
    width: 100%;
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 20px;
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 5px;
    transition: opacity 0.3s;
}

.icon-btn:hover {
    color: var(--gold);
}

/* ===========================
   FULL SCREEN HERO
   =========================== */

.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.3));
}

/* Hero Tagline */
.hero-tagline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.hero-tagline p {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    line-height: 1.3;
    max-width: 900px;
}

.tagline-word {
    display: inline-block;
    will-change: transform, opacity, filter;
}

/* Explore Indicator */
.explore-indicator {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--white);
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.explore-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--gold);
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

/* ===========================
   THE ART OF DETAIL SECTION
   =========================== */

.art-detail-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.art-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.art-circle {
    position: relative;
    width: 700px;
    height: 700px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 100px rgba(0,0,0,0.3);
    z-index: 5;
    transform: scale(0);
    opacity: 0;
}

.circle-content {
    text-align: center;
    padding: 80px;
    color: var(--black);
    opacity: 0;
    transform: translateY(20px);
}

.art-title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.art-title .italic {
    font-style: italic;
    font-weight: 400;
    text-transform: lowercase;
}

.art-description {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    max-width: 450px;
}

.art-button {
    display: inline-block;
    color: var(--black);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 2px solid var(--black);
    transition: all 0.3s;
}

.art-button:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* ===========================
   PILLARS SECTION
   =========================== */

.pillars-section {
    padding: 120px 60px;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    color: var(--black);
    margin-bottom: 80px;
    letter-spacing: 1px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pillar-card {
    background: #fafafa;
    overflow: hidden;
    transition: transform 0.3s;
}

.pillar-card:hover {
    transform: translateY(-10px);
}

.pillar-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.pillar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pillar-card:hover .pillar-image img {
    transform: scale(1.05);
}

.pillar-content {
    padding: 40px 30px;
}

.pillar-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.pillar-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 1200px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .art-circle {
        width: 500px;
        height: 500px;
    }

    .circle-content {
        padding: 50px;
    }

    .art-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .header-transparent {
        padding: 20px 30px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .logo-center h1 {
        font-size: 24px;
    }

    .hero-tagline p {
        font-size: 28px;
        letter-spacing: 4px;
        padding: 0 20px;
    }

    .art-circle {
        width: 90vw;
        height: 90vw;
        max-width: 400px;
        max-height: 400px;
    }

    .art-title {
        font-size: 28px;
    }

    .art-description {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* ===========================
   STATS SECTION
   =========================== */

.stats-section {
    padding: 80px 60px;
    background: var(--black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 64px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-number::after {
    content: '%';
    font-size: 48px;
    margin-left: 5px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ===========================
   SUSTAINABILITY SECTION
   =========================== */

.sustainability-section {
    padding: 120px 60px;
    background: var(--white);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.sustainability-card {
    text-align: center;
    padding: 40px 30px;
    background: #fafafa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sustainability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.sustainability-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.sustainability-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.sustainability-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */

.testimonials-section {
    padding: 120px 60px;
    background: #f8f8f8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 45px 40px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.author-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 13px;
    color: #999;
    letter-spacing: 0.5px;
}

/* ===========================
   FEATURED COMMUNITIES
   =========================== */

.featured-section {
    padding: 120px 60px;
    background: var(--black);
}

.featured-section .section-title {
    color: var(--white);
}

.featured-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -60px;
    margin-bottom: 80px;
    font-weight: 300;
}

/* Animated Subtitle - Door Opening Reveal */
.subtitle-animated {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    color: transparent !important;
    position: relative;
    display: block;
    width: 100%;
    max-width: 900px;
    margin: -50px auto 80px;
    padding: 30px 60px;
    text-align: center;
    overflow: hidden;
    transition: color 1.2s ease 1s;
}

.subtitle-animated.reveal {
    color: var(--gold) !important;
}

.subtitle-animated::before,
.subtitle-animated::after {
    content: '';
    position: absolute;
    top: 0;
    width: 51%;
    height: 100%;
    background: var(--black);
    z-index: 2;
    opacity: 0;
    visibility: hidden;
}

.subtitle-animated::before {
    left: 0;
    transform-origin: left center;
}

.subtitle-animated::after {
    right: 0;
    transform-origin: right center;
}

/* Trigger animation only when scrolled into view */
.subtitle-animated.reveal::before {
    opacity: 1;
    visibility: visible;
    border-right: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    animation: door-swing-left 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.subtitle-animated.reveal::after {
    opacity: 1;
    visibility: visible;
    border-left: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    animation: door-swing-right 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes door-swing-left {
    0% {
        transform: perspective(1200px) rotateY(0deg);
    }
    100% {
        transform: perspective(1200px) rotateY(-105deg);
    }
}

@keyframes door-swing-right {
    0% {
        transform: perspective(1200px) rotateY(0deg);
    }
    100% {
        transform: perspective(1200px) rotateY(105deg);
    }
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-card {
    background: #1a1a1a;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
}

.featured-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.05);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-card:hover .featured-overlay {
    opacity: 1;
}

.featured-cta {
    color: var(--gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 30px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.featured-cta:hover {
    background: var(--gold);
    color: var(--black);
}

.featured-content {
    padding: 35px 30px;
}

.featured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.featured-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 1px;
}

.featured-status {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 3px;
}

.featured-status.available {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.featured-status.coming-soon {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.featured-location {
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.featured-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.featured-details {
    display: flex;
    gap: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

/* ===========================
   CONTACT SECTION
   =========================== */

.contact-section {
    padding: 100px 60px;
    background: var(--white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
    font-weight: 300;
}

.contact-methods {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-button.primary {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
}

.contact-button.primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.contact-button.secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.contact-button.secondary:hover {
    background: var(--black);
    color: var(--white);
}

/* ===========================
   FOOTER
   =========================== */

.footer {
    background: #0a0a0a;
    color: var(--white);
    padding: 80px 60px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo h3 {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 6px;
    margin-bottom: 5px;
}

.footer-logo p {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    max-width: 280px;
}

.footer-column h4 {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a,
.footer-column ul li {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--gold);
}

.footer-contact li {
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ===========================
   MODAL & FORM STYLES
   =========================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--white);
    margin: 5% auto;
    padding: 50px;
    max-width: 700px;
    border-radius: 4px;
    position: relative;
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 32px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--black);
}

.modal-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 500;
}

.modal-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.form-note {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
    text-align: center;
}

/* Social Hub - Expandable container for WhatsApp + Instagram */
.social-float-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1500;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 12px;
}

/* Main toggle button */
.social-toggle {
    width: 56px;
    height: 56px;
    background: var(--black);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-toggle:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

.social-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    transition: all 0.3s;
}

.social-toggle:hover svg {
    color: var(--black);
    transform: rotate(90deg);
}

/* Social buttons container - hidden by default */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-float-container:hover .social-buttons {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* Individual social button style */
.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--black);
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateX(-5px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* ===========================
   RESPONSIVE - FEATURED & CONTACT
   =========================== */

@media (max-width: 1200px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat-number {
        font-size: 48px;
    }

    .sustainability-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .featured-section,
    .contact-section,
    .sustainability-section,
    .testimonials-section {
        padding: 80px 30px;
    }

    .section-subtitle {
        margin-top: -40px;
        margin-bottom: 50px;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-methods {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
    }

    .footer {
        padding: 60px 30px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===========================
   LUXURY ANIMATIONS
   =========================== */

/* Subtle image zoom on hover for pillar/project cards */
.pillar-image {
    overflow: hidden;
    position: relative;
}

.pillar-image img {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.pillar-card:hover .pillar-image img,
.featured-card:hover .card-image img {
    transform: scale(1.08);
}

/* Smooth scale on CTA buttons */
.contact-button,
.submit-btn,
a[href="contact.html"].contact-button {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.contact-button:hover,
.submit-btn:hover {
    transform: translateY(-2px);
}

.contact-button.primary:hover {
    background: var(--gold-dark);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.contact-button.secondary:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Fade-in animation for section titles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

/* Delay for staggered effect */
.section-container .section-title {
    animation-delay: 0.2s;
}

/* Button hover border animation */
a[style*="border: 2px solid"]:hover {
    background: var(--gold) !important;
    color: var(--white) !important;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Gold circle icons scale on page load */
@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Subtle parallax effect on hero backgrounds */
.hero-bg {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth featured card hover */
.featured-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Pillar card subtle lift */
.pillar-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* WhatsApp button enhanced hover */
.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ============================================================
   PORTFOLIO PAGE SPECIFIC STYLES
   ============================================================ */

/* Portfolio Filter Wrapper */
.portfolio-filter-wrapper {
    background: var(--white);
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.filter-btn {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 28px;
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
}

.filter-btn:hover {
    background: var(--black);
    color: var(--white);
}

.filter-btn.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* Portfolio Grid Wrapper */
.portfolio-grid-wrapper {
    background: var(--light-gray);
    padding: 80px 0;
}

.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.95);
    position: absolute;
    pointer-events: none;
}

/* CTA Section Styles */
.cta-section {
    background: var(--black);
    padding: 100px 0;
    text-align: center;
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 16px 48px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.cta-button.primary {
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
}

.cta-button.primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* Sold status badge */
.featured-status.sold {
    background: #6c757d;
    color: var(--white);
}

/* Responsive adjustments for portfolio */
@media (max-width: 768px) {
    .portfolio-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .portfolio-filter-wrapper {
        padding: 60px 0 40px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 1.8rem;
    }
}

/* Portfolio Filter Groups */
.portfolio-filters-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.filter-group-label {
    font-family: '''Cinzel''', serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
}

.filter-group .portfolio-filters {
    margin-top: 0;
}

@media (max-width: 768px) {
    .portfolio-filters-container {
        gap: 25px;
    }

    .filter-group-label {
        font-size: 12px;
    }
}

/* ===========================
   MOBILE RESPONSIVE STYLES
   =========================== */

@media (max-width: 768px) {
    /* Mobile Navigation - Show as stacked centered list */
    .nav-left,
    .nav-links-right {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .header-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .logo-center {
        order: -1;
        margin-bottom: 10px;
    }

    .logo-center h1 {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .logo-center p {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .nav-left a,
    .nav-links-right a {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .nav-right {
        width: 100%;
    }

    /* Hero Section Mobile */
    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-content h2 {
        font-size: 28px;
        letter-spacing: 3px;
        padding: 0 20px;
    }

    /* Sections padding */
    .art-section,
    .pillars-section,
    .featured-section,
    .contact-section {
        padding: 60px 20px !important;
    }

    .section-title {
        font-size: 32px !important;
    }

    .section-subtitle {
        font-size: 14px !important;
        padding: 0 10px;
    }

    /* Pillars Grid */
    .pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* Featured Projects Grid */
    .featured-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* Stats Section */
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px;
    }

    /* Footer */
    .footer {
        padding: 60px 20px 30px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }

    /* Modal Mobile */
    .modal-content {
        margin: 10% 20px;
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr !important;
    }

    /* Social Float Mobile */
    .social-float-container {
        bottom: 15px;
        right: 15px;
    }

    .social-btn {
        padding: 12px 18px;
        font-size: 13px;
    }
}
