/* ==========================================================================
   SKYWALLS INTERIORS - PREMIUM WEB STYLING SYSTEM
   ========================================================================== */

/* 1. CSS VARIABLES & THEME CONFIGURATION */
:root {
    /* Color Palette */
    --color-charcoal-black: #121212;
    --color-charcoal-dark: #1a1a1a;
    --color-charcoal-medium: #2c2c2c;
    --color-ivory-white: #ffffff;
    --color-warm-beige: #fbf9f6;
    --color-warm-beige-dark: #f5f0e6;
    --color-deep-teal: #0d3b41;
    --color-deep-teal-light: #164e53;
    --color-deep-teal-hover: #1b5d63;
    --color-muted-gold: #c5a880;
    --color-muted-gold-dark: #b08f62;
    --color-muted-gold-light: #dfcbb3;
    --color-wooden-brown: #6f4e37;
    --color-soft-grey: #f0f0f0;
    --color-medium-grey: #a0a0a0;
    --color-text-dark: #1e2229;
    --color-text-muted: #5e6675;
    
    /* Functional Accents */
    --color-natural-green: #2e6f40;
    --color-natural-green-hover: #235531;
    --color-whatsapp-green: #25d366;
    --color-whatsapp-green-hover: #20ba5a;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
    --shadow-medium: 0 15px 35px rgba(18, 18, 18, 0.08);
    --shadow-premium-hover: 0 20px 45px rgba(22, 78, 83, 0.15);
    --shadow-gold-glow: 0 8px 25px rgba(197, 168, 128, 0.25);
    
    /* Grid & Layout */
    --container-max-width: 1200px;
    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 2. SYSTEM RESETS & BASE STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-warm-beige);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-charcoal-black);
    font-weight: 700;
    line-height: 1.25;
}

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

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

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* 3. REUSABLE UTILITIES & LAYOUTS */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-muted-gold-dark);
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-charcoal-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc-center {
    max-width: 650px;
    margin: 0 auto 50px auto;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}

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

.highlight-text {
    color: var(--color-deep-teal);
    background: linear-gradient(120deg, rgba(13, 59, 65, 0.08) 0%, rgba(13, 59, 65, 0.08) 100%);
    padding: 0 4px;
}

/* Scroll Entrance Base Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* BUTTONS SYSTEM */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    gap: 10px;
    font-size: 0.95rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background-color: var(--color-deep-teal);
    color: var(--color-ivory-white);
}

.btn-primary:hover {
    background-color: var(--color-deep-teal-hover);
    box-shadow: 0 8px 20px rgba(13, 59, 65, 0.25);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--color-muted-gold);
    color: var(--color-charcoal-black);
    box-shadow: var(--shadow-gold-glow);
}

.btn-accent:hover {
    background-color: var(--color-muted-gold-dark);
    color: var(--color-ivory-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(176, 143, 98, 0.35);
}

.btn-outline {
    border: 2px solid var(--color-deep-teal);
    color: var(--color-deep-teal);
}

.btn-outline:hover {
    background-color: var(--color-deep-teal);
    color: var(--color-ivory-white);
    transform: translateY(-2px);
}

.btn-outline-white {
    border: 2px solid var(--color-ivory-white);
    color: var(--color-ivory-white);
}

.btn-outline-white:hover {
    background-color: var(--color-ivory-white);
    color: var(--color-charcoal-black);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color-charcoal-black);
    color: var(--color-ivory-white);
}

.btn-secondary:hover {
    background-color: var(--color-charcoal-medium);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full-width {
    width: 100%;
}

/* 4. HEADER & STICKY NAVIGATION */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(251, 249, 246, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(18, 18, 18, 0.05);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.main-header.scrolled .logo {
    color: var(--color-ivory-white);
}

.main-header.scrolled .nav-link {
    color: var(--color-soft-grey);
}

.main-header.scrolled .nav-link:hover,
.main-header.scrolled .nav-link.active {
    color: var(--color-muted-gold);
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--color-charcoal-black);
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    position: relative;
    padding: 8px 0;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--color-deep-teal);
}

.header-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Mobile Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
}

.hamburger .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-charcoal-black);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.main-header.scrolled .hamburger .bar {
    background-color: var(--color-ivory-white);
}

/* Active hamburger state */
.hamburger.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* 5. HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--color-ivory-white);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.92) 0%, rgba(13, 59, 65, 0.85) 60%, rgba(18, 18, 18, 0.75) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    animation: fadeIn 1s ease-out forwards;
}

.hero-subtitle {
    display: inline-block;
    color: var(--color-muted-gold);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-ivory-white);
    margin-bottom: 24px;
}

.hero-title .highlight-text {
    background: none;
    color: var(--color-muted-gold);
    padding: 0;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
}

.badge-icon {
    font-size: 1rem;
    color: var(--color-muted-gold);
}

/* Floating Service Card */
.hero-floating-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding: 32px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    align-self: center;
    position: relative;
    overflow: hidden;
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero-floating-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-muted-gold);
}

.floating-label {
    display: block;
    color: var(--color-muted-gold);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.floating-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-ivory-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.floating-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* 6. ABOUT SECTION */
.about-section {
    padding: 100px 0;
    background-color: var(--color-ivory-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.about-desc {
    font-size: 1.08rem;
    color: var(--color-text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
}

.about-highlight-box {
    background-color: var(--color-warm-beige);
    padding: 24px 32px;
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--color-deep-teal);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 16px;
}

.highlight-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.highlight-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.highlight-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.about-features-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    background-color: var(--color-warm-beige);
    padding: 28px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(18, 18, 18, 0.03);
}

.feature-card:hover {
    transform: translateX(8px);
    background-color: var(--color-ivory-white);
    box-shadow: var(--shadow-medium);
    border-color: rgba(197, 168, 128, 0.2);
}

.feature-icon-wrapper {
    color: var(--color-deep-teal);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}


/* 7. SERVICES SECTION */
.services-section {
    padding: 100px 0;
    background-color: var(--color-warm-beige);
}

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

.service-card {
    background-color: var(--color-ivory-white);
    padding: 36px 28px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(18, 18, 18, 0.02);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-muted-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium-hover);
    border-color: rgba(22, 78, 83, 0.1);
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.service-icon {
    color: var(--color-deep-teal);
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card:hover .service-icon {
    color: var(--color-muted-gold-dark);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}


/* 8. GALLERY SECTION */
.gallery-section {
    padding: 100px 0;
    background-color: var(--color-ivory-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--border-radius-md);
    background-color: var(--color-warm-beige);
    color: var(--color-text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(18, 18, 18, 0.05);
}

.filter-btn:hover {
    background-color: var(--color-soft-grey);
}

.filter-btn.active {
    background-color: var(--color-deep-teal);
    color: var(--color-ivory-white);
    border-color: var(--color-deep-teal);
    box-shadow: 0 4px 12px rgba(13, 59, 65, 0.2);
}

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

.gallery-item {
    background-color: var(--color-warm-beige);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item.hide {
    display: none;
    opacity: 0;
}

.gallery-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 59, 65, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.overlay-text {
    color: var(--color-ivory-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 20px;
    border: 1px solid var(--color-muted-gold);
    border-radius: var(--border-radius-sm);
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-info {
    padding: 20px;
}

.gallery-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-category {
    font-size: 0.8rem;
    color: var(--color-muted-gold-dark);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}


/* 9. WHY CHOOSE US SECTION */
.why-choose-section {
    padding: 100px 0;
    background-color: var(--color-warm-beige);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 60px;
    align-items: stretch;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.point-item {
    display: flex;
    gap: 16px;
}

.point-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-muted-gold);
    line-height: 1;
}

.point-text h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.point-text p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Premium side card */
.why-choose-side-card {
    background-color: var(--color-charcoal-black);
    color: var(--color-ivory-white);
    border-radius: var(--border-radius-lg);
    padding: 48px 36px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.why-choose-side-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(197, 168, 128, 0.1);
    border-radius: 50%;
}

.side-card-content {
    position: relative;
    z-index: 2;
}

.why-choose-side-card h3 {
    color: var(--color-ivory-white);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.why-choose-side-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.side-card-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-muted-gold);
}

.stat-lbl {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.side-card-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background-color: var(--color-deep-teal);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* 10. PROCESS TIMELINE */
.process-section {
    padding: 100px 0;
    background-color: var(--color-ivory-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 50px;
}

/* Horizontal line between steps on desktop */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--color-muted-gold) 0, var(--color-muted-gold) 8px, transparent 8px, transparent 16px);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number-badge {
    width: 50px;
    height: 50px;
    background-color: var(--color-warm-beige-dark);
    border: 2px solid var(--color-muted-gold);
    color: var(--color-charcoal-black);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    transition: var(--transition-smooth);
}

.process-step:hover .step-number-badge {
    background-color: var(--color-deep-teal);
    color: var(--color-ivory-white);
    border-color: var(--color-deep-teal);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(13, 59, 65, 0.2);
}

.step-card {
    background-color: var(--color-warm-beige);
    padding: 24px 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(18, 18, 18, 0.03);
    transition: var(--transition-smooth);
    min-height: 180px;
}

.process-step:hover .step-card {
    background-color: var(--color-ivory-white);
    box-shadow: var(--shadow-medium);
    border-color: rgba(197, 168, 128, 0.25);
    transform: translateY(-4px);
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}


/* 11. REVIEWS SECTION */
.reviews-section {
    padding: 100px 0;
    background-color: var(--color-warm-beige);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.rating-summary-card {
    background-color: var(--color-ivory-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(18, 18, 18, 0.03);
}

.google-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.summary-google-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.rating-number-stars {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 8px;
}

.rating-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-charcoal-black);
    line-height: 1;
}

.stars-display {
    font-size: 1.5rem;
    color: var(--color-muted-gold-dark);
}

.stars-display .half-star {
    color: var(--color-medium-grey);
}

.reviews-count-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.review-trust-note {
    border-top: 1px solid var(--color-soft-grey);
    padding-top: 20px;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-card {
    background-color: var(--color-ivory-white);
    padding: 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(18, 18, 18, 0.02);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--color-deep-teal);
    color: var(--color-ivory-white);
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-meta h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.review-stars {
    color: var(--color-muted-gold-dark);
    font-size: 0.85rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    line-height: 1.6;
    font-style: italic;
}


/* 12. CONVERSION CTA BANNER */
.cta-banner-section {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--color-ivory-white);
    text-align: center;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 59, 65, 0.95) 0%, rgba(18, 18, 18, 0.95) 100%);
    z-index: 1;
}

.cta-banner-container {
    position: relative;
    z-index: 2;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    color: var(--color-ivory-white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.25;
}

.cta-banner-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
}

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


/* 13. CONTACT SECTION & FORM */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-ivory-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
}

.contact-form-card {
    background-color: var(--color-warm-beige);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(18, 18, 18, 0.02);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--color-muted-gold);
    padding-bottom: 10px;
    display: inline-block;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--color-text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: var(--color-ivory-white);
    border: 1.5px solid rgba(18, 18, 18, 0.1);
    padding: 12px 16px;
    border-radius: var(--border-radius-md);
    color: var(--color-text-dark);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-deep-teal);
    box-shadow: 0 0 0 3px rgba(13, 59, 65, 0.08);
}

.form-group.error input,
.form-group.error select {
    border-color: #e74c3c;
}

.error-msg {
    color: #e74c3c;
    font-size: 0.75rem;
    display: none;
    margin-top: 4px;
}

.form-group.error .error-msg {
    display: block;
}

/* Contact Details Col */
.contact-details-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-details-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: 2px solid var(--color-muted-gold);
    padding-bottom: 10px;
    display: inline-block;
}

.showroom-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.details-item {
    display: flex;
    gap: 16px;
}

.details-icon {
    font-size: 1.5rem;
    color: var(--color-muted-gold-dark);
    margin-top: 2px;
}

.details-info strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.details-info p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.phone-link {
    color: var(--color-deep-teal);
    font-weight: 600;
}

.phone-link:hover {
    color: var(--color-muted-gold-dark);
}

.contact-quick-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    gap: 8px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.quick-btn.call-action {
    background-color: var(--color-deep-teal);
    color: var(--color-ivory-white);
}

.quick-btn.call-action:hover {
    background-color: var(--color-deep-teal-hover);
    transform: translateY(-2px);
}

.quick-btn.whatsapp-action {
    background-color: var(--color-whatsapp-green);
    color: var(--color-ivory-white);
}

.quick-btn.whatsapp-action:hover {
    background-color: var(--color-whatsapp-green-hover);
    transform: translateY(-2px);
}

.quick-btn.maps-action {
    background-color: var(--color-charcoal-black);
    color: var(--color-ivory-white);
}

.quick-btn.maps-action:hover {
    background-color: var(--color-charcoal-medium);
    transform: translateY(-2px);
}

/* Map representation Visual Card */
.maps-visual-box {
    background: linear-gradient(135deg, var(--color-charcoal-dark) 0%, var(--color-charcoal-black) 100%);
    color: var(--color-ivory-white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    border: 1px solid rgba(197, 168, 128, 0.15);
    text-align: center;
    margin-top: 10px;
}

.map-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.map-icon {
    color: var(--color-muted-gold);
}

.map-placeholder-content h4 {
    color: var(--color-ivory-white);
    font-size: 1.1rem;
    font-weight: 700;
}

.map-placeholder-content p {
    font-size: 0.85rem;
    color: var(--color-medium-grey);
}

.map-btn {
    display: inline-block;
    background-color: var(--color-muted-gold);
    color: var(--color-charcoal-black);
    padding: 10px 20px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 8px;
    transition: var(--transition-smooth);
}

.map-btn:hover {
    background-color: var(--color-muted-gold-dark);
    color: var(--color-ivory-white);
    transform: translateY(-2px);
}


/* 14. FIXED WHATSAPP SIDEBAR / FLOATING WIDGET */
.whatsapp-fixed-widget {
    position: fixed;
    z-index: 999;
    transition: var(--transition-smooth);
}

/* Desktop: Vertical sidebar tab sticking to the right edge */
@media (min-width: 769px) {
    .whatsapp-fixed-widget {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .whatsapp-widget-container {
        display: flex;
        align-items: center;
        background-color: var(--color-whatsapp-green);
        color: var(--color-ivory-white);
        padding: 16px 20px;
        border-top-left-radius: var(--border-radius-md);
        border-bottom-left-radius: var(--border-radius-md);
        gap: 10px;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }

    .whatsapp-svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
        transform: rotate(90deg); /* Adjust SVG orientation for vertical text */
    }

    .whatsapp-widget-text {
        font-family: var(--font-heading);
        font-weight: 700;
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .whatsapp-fixed-widget:hover .whatsapp-widget-container {
        background-color: var(--color-whatsapp-green-hover);
        padding-right: 28px; /* Expand slightly outward on hover */
    }
}

/* Mobile: Round floating button in bottom right corner */
@media (max-width: 768px) {
    .whatsapp-fixed-widget {
        right: 20px;
        bottom: 20px;
    }

    .whatsapp-widget-container {
        width: 60px;
        height: 60px;
        background-color: var(--color-whatsapp-green);
        color: var(--color-ivory-white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        cursor: pointer;
        position: relative;
    }

    /* Hide text on mobile */
    .whatsapp-widget-text {
        display: none;
    }

    .whatsapp-svg {
        width: 32px;
        height: 32px;
        fill: currentColor;
    }

    /* Pulse animation effect around the mobile button */
    .whatsapp-widget-container::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: var(--color-whatsapp-green);
        opacity: 0.6;
        z-index: -1;
        animation: pulseWave 2s infinite;
    }

    .whatsapp-fixed-widget:hover .whatsapp-widget-container {
        background-color: var(--color-whatsapp-green-hover);
        transform: scale(1.05);
    }
}


/* 15. BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    background-color: var(--color-charcoal-black);
    color: var(--color-ivory-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    z-index: 998;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-deep-teal);
    transform: translateY(-3px);
}


/* 16. FOOTER SECTION */
.footer {
    background-color: var(--color-charcoal-black);
    color: var(--color-soft-grey);
    padding: 80px 0 30px 0;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 0.7fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--color-ivory-white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-muted-gold);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-ivory-white);
    display: block;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    font-size: 0.82rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-muted-gold);
    border: 1px solid rgba(197, 168, 128, 0.25);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
}

.footer-socials a:hover {
    background-color: var(--color-muted-gold);
    color: var(--color-charcoal-black);
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--color-muted-gold);
    padding-left: 4px;
}

.footer-address {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact-info {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.footer-contact-info a {
    color: var(--color-muted-gold-light);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}


/* 17. KEYFRAME ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulseWave {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}


/* 18. RESPONSIVE BREAKPOINTS (MEDIA QUERIES) */

/* Large screens and Desktops */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-grid, .why-choose-grid, .reviews-grid, .contact-grid {
        gap: 40px;
    }
}

/* Tablets & Small Desktops */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-floating-card {
        max-width: 500px;
        justify-self: start;
    }
    
    .about-grid, .why-choose-grid, .reviews-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features-container {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .feature-card {
        flex: 1 1 250px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .process-timeline::before {
        display: none; /* Hide connector lines in grid wrap */
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Mobile & Large Phones */
@media (max-width: 768px) {
    /* Header modifications */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px; /* Below header height */
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-charcoal-black);
        padding: 40px 24px;
        transition: var(--transition-smooth);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .nav-link {
        color: var(--color-soft-grey);
        font-size: 1.2rem;
        width: 100%;
    }
    
    .header-cta {
        display: none; /* Hide header CTA button on small mobile */
    }
    
    .hero-section {
        padding-top: 100px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .step-card {
        min-height: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .contact-form-card {
        padding: 24px 16px;
    }
    
    .reviews-section .rating-summary-card {
        padding: 24px 16px;
    }
    
    .reviews-section .review-card {
        padding: 20px 16px;
    }
}
