/* ===== CSS Variables ===== */
:root {
    --color-primary: #3C2E25;
    --color-primary-light: #967763;
    --color-secondary: #3B2E25;
    --color-bg-light: #F7F6F9;
    --color-bg-white: #FFFFFF;
    --color-text-dark: #3B2E25;
    --color-text-muted: rgba(0, 0, 0, 0.70);
    --color-text-light: #737373;
    --color-accent: #E2EFF2;
    --color-brown: #967763;

    --font-primary: 'Manrope', sans-serif;
    --font-secondary: 'Arimo', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-inter: 'Inter', sans-serif;

    --container-width: 1200px;
    --section-padding: 80px 0;
    --arrow-size: 18.67px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    background: var(--color-bg-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.header.hidden {
    transform: translateY(-100%);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-secondary);
    letter-spacing: -0.5px;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 50px;
}

.nav-links a {
    font-size: 16px;
    font-weight: 400;
    color: var(--color-secondary);
}

.nav-links a.active {
    font-weight: 500;
}

.nav-links a:hover {
    opacity: 0.7;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.language-selector {
    font-size: 16px;
    color: var(--color-secondary);
    padding-right: 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.nav-cta {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-secondary);
    letter-spacing: 0.5px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 100%);
}

.hero-main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 80px 0;
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    gap: 40px;
}

.hero-left {
    max-width: 420px;
    padding-top: 80px;
    flex-shrink: 0;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-title span {
    display: block;
    font-size: 80px;
    line-height: 1;
    color: var(--color-secondary);
}

.title-regular {
    font-family: var(--font-primary);
    font-weight: 500;
}

.title-serif {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
}

.hero-tagline {
    font-family: var(--font-secondary);
    font-size: 18px;
    color: #000;
    margin-bottom: 35px;
}

.phone-input {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.phone-input input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-family: var(--font-primary);
    font-size: 16px;
    color: rgba(47, 47, 47, 0.6);
    outline: none;
    min-width: 0;
}

.phone-input .btn {
    border-radius: 0;
    white-space: nowrap;
    padding: 18px 28px;
}

/* Hero Right - Card and Building */
.hero-right {
    position: relative;
    flex: 1;
    max-width: 750px;
    min-height: clamp(450px, 65vh, 650px);
}

.hero-card {
    background: white;
    border-radius: 30px 80px 30px 30px;
    padding: 30px 35px clamp(200px, 30vh, 320px) 35px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.card-header {
    flex: 1;
}

.card-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.tab {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid rgba(60, 46, 37, 0.3);
    background: transparent;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
}

.card-text {
    padding-right: 20px;
}

.card-title {
    font-size: 32px;
    font-weight: 400;
    color: var(--color-secondary);
    margin-bottom: 8px;
    line-height: 1.2;
}

.card-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: rgba(59, 46, 37, 0.7);
}

.room-tour {
    text-align: right;
    flex-shrink: 0;
}

.tour-label {
    display: block;
    font-size: 11px;
    color: rgba(59, 46, 37, 0.6);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.tour-content {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #E8E4DE;
    border-radius: 15px;
    padding: 10px 12px;
}

.play-btn {
    width: 40px;
    height: 40px;
    background: var(--color-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.play-btn svg {
    width: 12px;
    height: 14px;
}

.tour-content img {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
}

/* Building Showcase */
.building-showcase {
    position: absolute;
    top: clamp(100px, 50vh, 200px);
    left: clamp(-120px, -5vw, -40px);
    right: clamp(-80px, -5vw, -40px);
    z-index: 2;
}

.building-showcase > img {
    width: 150%;
    height: clamp(480px, 35vh, 500px);
    object-fit: contain;
}

.hotspots .hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotspot::after {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

/* Hero Bottom */
.hero-bottom {
    position: relative;
    z-index: 3;
    margin-top: -80px;
}

.hero-bottom-content {
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.materials-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 50%;
}

.materials-card {
    background: var(--color-brown);
    padding: 35px 140px 40px 45px;
    border-top-right-radius: 50px;
    color: white;
    min-width: 380px;
}

.materials-card h4 {
    font-family: var(--font-inter);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.3;
}

.materials-card p {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.9;
}

.interior-preview {
    position: absolute;
    top: 20px;
    right: -40px;
    width: 200px;
    z-index: 2;
}

.interior-preview img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.hero-bottom-right {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.customers-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 50px;
    color: white;
    text-align: center;
}

.customer-avatars {
    display: flex;
    margin-bottom: 8px;
}

.customer-avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    object-fit: cover;
}

.customer-avatars img:first-child {
    margin-left: 0;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 56px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
}

.stat-label {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 300;
    margin-top: 5px;
}

.nature-card {
    padding: 30px 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.nature-card p {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.35;
    letter-spacing: 0.5px;
}

.learn-more {
    font-family: var(--font-inter);
    font-size: 14px;
    text-decoration: underline;
    color: white;
    text-underline-offset: 3px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    border-radius: 8px;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-dark {
    background: var(--color-primary);
    color: white;
    border-radius: 30px;
    padding: 14px 28px;
}

.btn-outline {
    background: white;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    font-weight: 600;
}



.arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--arrow-size);
    height: var(--arrow-size);
    font-size: var(--arrow-size);
    line-height: 1;
    transition: transform 0.3s ease;
}


.arrow svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    
}

.btn:hover .arrow {
    transform: translate(3px, -3px);
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
}

.view-all {
    text-decoration: underline;
    text-underline-offset: 1px;
}

.view-all:hover .view-all{
    text-decoration-color: rgba(0,0,0,0.6);
}

.view-all:hover {
    opacity: 0.8;
}

.view-all:hover .arrow {
    transform: translate(3px, -3px);
}

/* ===== Section Styles ===== */
.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-secondary);
}

.section-title.centered {
    text-align: center;
}

.section-desc {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-text-muted);
}

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

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
}

.stats-header .section-title {
    flex: 0 0 40%;
}

.stats-header .section-desc {
    flex: 1;
    padding-top: 10px;
}

.stats-content {
    display: flex;
    gap: 30px;
}

.stats-left {
    flex: 0 0 420px;
}

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

.stat-card {
    background: var(--color-bg-light);
    border-radius: 25px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 150px;
}

.stat-card.dark {
    background: var(--color-primary);
    color: white;
}

.stat-card.dark .stat-value,
.stat-card.dark .stat-text {
    color: white;
}

.stats-right {
    flex: 1;
}

.stat-card.large {
    height: 100%;
    background: var(--color-bg-light);
    border-radius: 25px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.stat-card-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    height: 100%;
}

.stat-card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.stat-card-image {
    flex: 0 0 200px;
    height: 100%;
}

.stat-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #262626;
}

.stat-text {
    font-size: 16px;
    font-weight: 500;
    color: rgba(47, 47, 47, 0.7);
    margin-top: 8px;
}

.feature-list {
    margin-bottom: 25px;
}

.feature-list li {
    font-size: 15px;
    font-weight: 500;
    line-height: 2;
    color: rgba(47, 47, 47, 0.7);
}

.stat-card.large .btn-dark {
    margin-top: auto;
    align-self: flex-start;
}

/* ===== Projects Section ===== */
.projects-section {
    padding: 80px 0;
    background: var(--color-bg-light);
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
}

.projects-header .section-title {
    flex: 0 0 45%;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.project-card.large {
    grid-row: span 2;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.favorite-btn {
  position: absolute;
  top: 15px;
  right: 15px;

  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.heart-icon {
  width: 22px;
  height: 22px;

  fill: none;
  stroke: #3C2E25;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  display: block;
}

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

.favorite-btn.active {
    color: var(--color-primary);
}


.projects-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    background: #E8E8E8;
}

.testimonials-background {
    position: absolute;
    inset:0;
    z-index: 0;
}

.testimonials-background img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    padding-top: 60px;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.testimonials-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(59, 46, 37, 0.7);
}

/* Horizontal Scrolling Slider */
.testimonials-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    animation: scrollTestimonials 30s linear infinite;
    width: max-content;
    padding: 20px 0;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    min-width: 380px;
    max-width: 380px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.client-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.testimonial-quote {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(59, 46, 37, 0.8);
    margin-bottom: 30px;
    flex-grow: 1;
    min-height: 100px;
}

.project-details {
    display: flex;
    gap: 40px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.project-details .detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(59, 46, 37, 0.5);
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-secondary);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.client-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.client-person-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-secondary);
}

.client-title {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #4A9B9B;
}

/* ===== Performance Stats Section ===== */
.performance-stats {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.perf-stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}

.perf-stat {
    text-align: left;
    padding: 0 40px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.perf-stat:last-child {
    border-right: none;
}

.perf-value {
    display: block;
    font-family: var(--font-secondary);
    font-size: 52px;
    font-weight: 700;
    color: #0F172B;
    margin-bottom: 10px;
    line-height: 1;
}

.perf-label {
    font-family: var(--font-secondary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-brown);
    line-height: 1.5;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: var(--color-bg-light);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.cta-left {
    flex: 0 0 45%;
}

.cta-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(60, 46, 37, 0.5);
    margin-bottom: 20px;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 35px;
}

.cta-features {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 18px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 25px;
}

.cta-features .feature:first-child {
    padding-left: 0;
}

.cta-features .divider {
    width: 1px;
    height: 20px;
    background: rgba(60, 46, 37, 0.15);
}

.cta-features .feature svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.cta-features .feature span {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-top: 25px;
    border-top: 1px solid #E8E3DD;
}

.cta-buttons .btn-primary {
    border-radius: 50px;
    padding: 14px 30px;
    box-shadow: 0 4px 15px rgba(60, 46, 37, 0.2);
}

.cta-right {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.cta-right img {
    width: 100%;
    height: auto;
}

/* ===== Blog Section ===== */
.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-header {
    margin-bottom: 50px;
}

.blog-header .section-title {
    margin-bottom: 10px;
}

.blog-header .section-desc {
    max-width: 600px;
}

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

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.blog-image {
    height: 280px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6A7282;
}

.blog-meta svg {
    flex-shrink: 0;
}

.blog-title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    color: #101828;
    margin-bottom: 12px;
}

.blog-excerpt {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #6A7282;
    margin-bottom: 20px;
}

.blog-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 50px;
}

/* ===== Footer ===== */
.footer {
    background: rgba(60, 46, 37, 0.92);
    padding: 60px 0 0;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 50px;
}

.footer-brand {
    flex: 0 0 320px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo img {
    height: 30px;
    width: auto;
}

.footer-brand .logo-text {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-desc {
    font-family: var(--font-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

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

.social-icon {
    width: 38px;
    height: 38px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact h4 {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-item span {
    font-family: var(--font-secondary);
    font-size: 14px;
}

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

.link-group h4 {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.link-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-group a {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: white;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.link-group a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    font-family: var(--font-secondary);
    font-size: 13px;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-family: var(--font-secondary);
    font-size: 13px;
    color: white;
    opacity: 0.8;
}

.footer-legal a:hover {
    opacity: 1;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1400px) {
    .hero-content {
        padding: 20px 40px 0;
    }

    .hero-title span {
        font-size: 68px;
    }

    .hero-right {
        max-width: 620px;
        min-height: 550px;
    }

    .hero-card {
        padding: 28px 32px 250px 32px;
    }

    .card-title {
        font-size: 28px;
    }

    .building-showcase {
        top: clamp(100px, 14vh, 140px);
    }

    .building-showcase > img {
        height: clamp(260px, 32vh, 420px);
    }
}

@media (max-width: 1200px) {
    .hero-content {
        padding: 20px 30px 0;
        gap: 30px;
    }

    .hero-left {
        padding-top: 40px;
    }

    .hero-right {
        max-width: 520px;
        min-height: clamp(400px, 55vh, 500px);
    }

    .hero-title span {
        font-size: 58px;
    }

    .hero-card {
        padding: 25px 28px clamp(180px, 25vh, 240px) 28px;
    }

    .card-title {
        font-size: 24px;
    }

    .building-showcase {
        top: clamp(90px, 13vh, 130px);
        left: -30px;
        right: -30px;
    }

    .building-showcase > img {
        height: clamp(240px, 30vh, 360px);
    }

    .hero-bottom {
        margin-top: -60px;
    }

    .materials-card {
        min-width: 80px;
        padding: 60px 35px;
    }

    .materials-card h4 {
        font-size: 22px;
    }

    .interior-preview {
        top: -80px;
        right: 0px;
        width: 170px;
    }

    .interior-preview img {
        height: 150px;
    }

    .stats-content {
        flex-direction: column;
    }

    .stats-left {
        flex: none;
        width: 100%;
    }

    .stats-right {
        flex: 1;
        width: 100%;
    }

    .stat-card-content {
        flex-direction: row;
    }

    .stat-card-image {
        flex: 0 0 250px;
    }

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

    .project-card.large {
        grid-row: span 2;
    }

    .testimonial-card {
        min-width: 340px;
        max-width: 340px;
    }
}

@media (max-width: 992px) {
    .header-content {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero-main {
        padding-top: 80px;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        padding: 20px 20px 0;
    }

    .hero-left {
        max-width: 100%;
        padding-top: 20px;
    }

    .hero-title span {
        font-size: 52px;
    }

    .hero-right {
        flex: none;
        width: 100%;
        max-width: 500px;
        min-height: 450px;
    }

    .hero-card {
        position: relative;
        flex-direction: column;
        gap: 20px;
        padding: 25px 25px 200px 25px;
        border-radius: 25px 50px 25px 25px;
    }

    .card-header {
        text-align: left;
        width: 100%;
    }

    .room-tour {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .card-title {
        font-size: 22px;
    }

    .building-showcase {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        margin-top: clamp(-300px, -22vh, -150px);
    }

    .building-showcase > img {
        width: 100%;
        height: clamp(220px, 28vh, 340px);
    }

    .phone-input {
        margin: 0 auto;
    }

    .hero-bottom {
        margin-top: -40px;
    }

    .hero-bottom-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .materials-section {
        flex: 0 0 100%;
        flex-direction: row;
        align-items: flex-end;
    }

    .hero-bottom-right {
        flex: 0 0 100%;
        justify-content: center;
    }

    .materials-card {
        flex: 1;
        min-width: auto;
        border-radius: 0;
        padding: 25px 30px;
    }

    .materials-card h4 {
        font-size: 22px;
    }

    .interior-preview {
        position: relative;
        top: auto;
        right: auto;
        width: 150px;
        margin-left: -20px;
    }

    .interior-preview img {
        height: 140px;
    }

    .customers-stat {
        padding: 25px 50px;
    }

    .stat-number {
        font-size: 48px;
    }

    .nature-card {
        padding: 25px 40px;
        text-align: center;
    }

    .nature-card p {
        font-size: 22px;
    }

    .stats-header,
    .projects-header {
        flex-direction: column;
        gap: 20px;
    }

    .testimonials-title {
        font-size: 38px;
    }

    .testimonial-card {
        min-width: 320px;
        max-width: 320px;
    }

    .stat-card-content {
        flex-direction: column;
    }

    .stat-card-image {
        flex: none;
        width: 100%;
    }

    .stat-card-image img {
        height: 180px;
        width: 100%;
    }

    .cta-content {
        flex-direction: column;
    }

    .cta-left {
        flex: 1;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }

    .perf-stats-grid {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .perf-stat {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 30px;
        text-align: center;
    }

    .perf-stat:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .hero-title span {
        font-size: 44px;
    }

    .hero-right {
        min-height: 400px;
    }

    .hero-card {
        padding: 20px 20px 180px 20px;
    }

    .card-tabs {
        margin-bottom: 15px;
    }

    .tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    .tour-content img {
        width: 60px;
        height: 45px;
    }

    .play-btn {
        width: 35px;
        height: 35px;
    }

    .building-showcase {
        margin-top: clamp(-180px, -20vh, -140px);
    }

    .building-showcase > img {
        height: clamp(200px, 26vh, 300px);
    }

    .hero-bottom-content {
        flex-direction: column;
    }

    .materials-section {
        flex-direction: row;
    }

    .hero-bottom-right {
        flex-direction: row;
        width: 100%;
    }

    .customers-stat,
    .nature-card {
        flex: 1;
    }

    .stat-number {
        font-size: 42px;
    }

    .nature-card p {
        font-size: 20px;
    }

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

   

 

    

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.9);
    }

    .client-name {
        font-size: 20px;
    }

    .testimonials-track {
        animation-duration: 25s;
    }

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

    .project-card.large {
        grid-row: span 1;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .cta-features .divider {
        display: none;
    }

    .cta-features .feature {
        padding: 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title span {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .phone-input {
        flex-direction: column;
        max-width: 100%;
    }

    .phone-input input {
        padding: 15px 20px;
    }

    .phone-input .btn {
        border-radius: 8px;
        margin-top: 10px;
        padding: 15px 20px;
    }

    .header-right {
        gap: 15px;
    }

    .language-selector {
        display: none;
    }

    .hero-right {
        min-height: 350px;
    }

    .hero-card {
        padding: 18px 18px 150px 18px;
        border-radius: 20px 40px 20px 20px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-subtitle {
        font-size: 14px;
    }

    .room-tour {
        position: static;
        margin-top: 15px;
    }

    .tour-label {
        text-align: left;
    }

    .building-showcase {
        margin-top: clamp(-150px, -18vh, -110px);
    }

    .building-showcase > img {
        height: clamp(160px, 22vh, 240px);
    }

    .materials-section {
        flex-direction: column;
    }

    .materials-card {
        border-radius: 0;
        padding: 25px;
    }

    .materials-card h4 {
        font-size: 20px;
    }

    .interior-preview {
        position: relative;
        width: 100%;
        margin-left: 0;
    }

    .interior-preview img {
        height: 120px;
    }

    .hero-bottom-right {
        flex-direction: column;
    }

    .customers-stat {
        padding: 20px 30px;
    }

    .stat-number {
        font-size: 38px;
    }

    .nature-card {
        padding: 20px 25px;
    }

    .nature-card p {
        font-size: 18px;
    }

    .testimonials-header {
        padding-top: 20px;
    }

    .testimonials-title {
        font-size: 28px;
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
    }
}
