/* ==========================================================================
   THE URBAN INTERIOR - CSS STYLESHEET
   ========================================================================== */

/* 1. ROOT VARIABLES & DESIGN TOKENS */
:root {
    /* Color Palette */
    --primary-dark: #111111;
    --secondary-dark: #1c1c1c;
    --secondary-dark-rgb: 28, 28, 28;
    --warm-beige: #f5ebe0;
    --warm-beige-rgb: 245, 235, 224;
    --beige-light: #fcfbf9;
    --accent-gold: #c5a880;
    --accent-gold-hover: #b89047;
    --accent-gold-rgb: 197, 168, 128;
    --white: #ffffff;
    --text-main: #2b2b2b;
    --text-muted: #666666;
    
    /* Branding Colors */
    --whatsapp-green: #25d366;
    --whatsapp-green-hover: #20ba5a;
    --whatsapp-green-rgb: 37, 211, 102;
    --error-red: #d9534f;
    --border-color: #eae6df;
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Grid & Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    --header-height-scrolled: 70px;
    
    /* Animations & Shadows */
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.06);
    --shadow-premium: 0 20px 50px rgba(197, 168, 128, 0.08);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
}

/* 2. BASE RESET & GLOBAL 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);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--primary-dark);
}

p {
    font-weight: 300;
}

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

ul {
    list-style: none;
}

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

input, select, textarea, button {
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    border: none;
}

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

.section-padding {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--beige-light);
}

.grid {
    display: grid;
    gap: 30px;
}

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

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

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

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

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

/* Section Header Styling */
.section-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.section-badge::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 1px;
    background-color: var(--accent-gold);
    margin-right: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.section-lead-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 300;
}

/* 4. BUTTONS & INTERACTION */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 168, 128, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-block {
    display: flex;
    width: 100%;
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

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

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* 5. STICKY HEADER & NAVIGATION */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 100;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: var(--header-height-scrolled);
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}

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

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--white);
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-text {
    color: var(--primary-dark);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 0;
    position: relative;
}

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

.main-header.scrolled .nav-link {
    color: var(--text-muted);
}

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

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

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

.header-cta .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.main-header.scrolled .menu-toggle .bar {
    background-color: var(--primary-dark);
}

/* 6. HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 8s ease-out;
}

.hero-section:hover .hero-bg {
    transform: scale(1.05);
}

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

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(197, 168, 128, 0.15);
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-gold 2s infinite;
}

.hero-title {
    font-size: 3.75rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.65;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Floating rating & badges card */
.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: flex-end;
}

.rating-card {
    background-color: rgba(28, 28, 28, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-top: 3px solid var(--accent-gold);
    padding: 24px;
    border-radius: var(--border-radius-md);
    width: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.rating-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.rating-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 280px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.trust-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    transform: translateX(-5px);
}

.trust-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* Scroll Mouse Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-mouse .wheel {
    width: 3px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scroll-wheel 1.6s infinite;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

/* 7. ABOUT SECTION */
.about-details {
    padding-right: 30px;
}

.location-highlight {
    background-color: var(--beige-light);
    border-left: 3px solid var(--accent-gold);
    padding: 24px;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin-top: 40px;
    box-shadow: var(--shadow-soft);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.loc-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
}

.location-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.address-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

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

.feature-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-sm);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--accent-gold);
    color: var(--white);
}

.feat-icon {
    width: 24px;
    height: 24px;
}

.feature-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-info p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* 8. SERVICES SECTION */
.services-section .grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--beige-light);
    color: var(--accent-gold);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background-color: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
    transform: rotateY(180deg);
}

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

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

/* 9. PORTFOLIO SECTION */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

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

.portfolio-item {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 1;
    transform: scale(1);
}

.portfolio-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.9);
}

.portfolio-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-color: #eee;
}

.portfolio-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-image-wrapper img {
    transform: scale(1.08);
}

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

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

.overlay-action {
    background-color: var(--white);
    color: var(--primary-dark);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.portfolio-item:hover .overlay-action {
    transform: translateY(0);
}

.portfolio-info {
    padding: 20px 24px;
    background-color: var(--white);
}

.portfolio-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.portfolio-category {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 10. WHY CHOOSE US SECTION */
.why-content {
    padding-right: 20px;
}

.why-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.why-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-point-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.why-point h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

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

.why-card-container {
    display: flex;
    justify-content: flex-end;
}

.highlight-why-card {
    background-color: var(--warm-beige);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    max-width: 420px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    position: relative;
    overflow: hidden;
}

.highlight-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.15) 0%, transparent 70%);
}

.gold-quote {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent-gold);
    line-height: 1;
    display: block;
    height: 40px;
    margin-top: -20px;
}

.highlight-why-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.highlight-why-text {
    font-size: 1rem;
    color: #4a453f;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.signature-line {
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--accent-gold);
}

.signature-name {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
}

/* 11. PROCESS SECTION */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 60px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 40px;
    width: calc(100% - 80px);
    height: 1px;
    background-color: var(--border-color);
    z-index: 1;
}

.process-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px 24px;
    border-radius: var(--border-radius-md);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

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

.process-number {
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.process-card:hover .process-number {
    background-color: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
}

.process-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

/* 12. REVIEWS SECTION */
.reviews-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.google-rating-summary {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.g-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.google-svg-logo {
    width: 40px;
    height: 40px;
}

.summary-score {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.summary-stars {
    color: var(--accent-gold);
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.summary-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.g-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 2px;
}

.g-link:hover {
    color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
}

.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 24px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.review-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-medium);
}

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

.avatar {
    width: 46px;
    height: 46px;
    background-color: rgba(197, 168, 128, 0.15);
    color: var(--accent-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 14px;
    font-size: 1rem;
}

.user-meta h4 {
    font-size: 1.05rem;
    font-weight: 600;
}

.review-stars {
    color: var(--accent-gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 2px;
}

.review-source-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.review-source-icon .google-svg-logo {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
}

/* 13. CTA CONVERSION BANNER */
.cta-banner-card {
    background-color: var(--warm-beige);
    padding: 60px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    text-align: center;
    border: 1px solid rgba(197, 168, 128, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-banner-title {
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.cta-banner-text {
    font-size: 1.1rem;
    color: #4a453f;
    max-width: 650px;
    margin: 0 auto 35px;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.cta-banner-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-banner-buttons .btn {
    min-width: 180px;
}

.btn-outline-white {
    background-color: transparent;
    color: var(--primary-dark);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-outline-white:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

/* 14. CONTACT SECTION */
.contact-form-wrapper {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

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

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

.contact-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form .required {
    color: var(--error-red);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background-color: var(--beige-light);
    border: 1px solid var(--border-color);
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition-smooth);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent-gold);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

.contact-form .error-msg {
    display: none;
    font-size: 0.78rem;
    color: var(--error-red);
    margin-top: 4px;
    font-weight: 500;
}

.contact-form .form-group.invalid input,
.contact-form .form-group.invalid select {
    border-color: var(--error-red);
    background-color: rgba(217, 83, 79, 0.02);
}

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

.contact-details-wrapper {
    display: flex;
    flex-direction: column;
}

.details-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.details-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--warm-beige);
    padding-bottom: 10px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 35px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    width: 44px;
    height: 44px;
    background-color: var(--beige-light);
    color: var(--accent-gold);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-info-item:hover .info-icon {
    background-color: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-top: 2px;
}

.contact-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid var(--border-color);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    text-align: center;
    background-color: var(--beige-light);
}

.quick-action-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    border-color: var(--primary-dark);
}

.quick-action-btn.highlighted {
    grid-column: span 2;
    background-color: var(--accent-gold);
    color: var(--white);
    border-color: var(--accent-gold);
}

.quick-action-btn.highlighted:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
}

/* 15. FIXED CONTACT SIDEBAR BUTTON */
.floating-contact-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(calc(100% - 50px));
    z-index: 99999;
    background-color: var(--whatsapp-green);
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 50px 0 0 50px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.floating-contact-btn:hover {
    transform: translateY(-50%) translateX(0);
    background-color: var(--whatsapp-green-hover);
}

.floating-contact-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.floating-contact-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 12px;
    white-space: nowrap;
}

/* Desktop Pulse attention drawer */
.floating-contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px 0 0 50px;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
    pointer-events: none;
}

/* 16. FOOTER SECTION */
.main-footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    border-top: 3px solid var(--accent-gold);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

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

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-rating-badge .rating-g {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    background-color: #4285f4;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-rating-badge .stars {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.footer-rating-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
}

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

.footer-contact-item {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.7);
}

.footer-contact-item a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    background-color: #0b0b0b;
    padding: 24px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal-links a:hover {
    color: var(--accent-gold);
}

.footer-legal-links .separator {
    margin: 0 8px;
    opacity: 0.3;
}

/* 17. SCROLL REVEAL ANIMATIONS */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Keyframes */
@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(197, 168, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 168, 128, 0); }
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Page fade-in animations on load */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title.animate-fade-in {
    animation-delay: 0.2s;
}

.hero-subtitle.animate-fade-in {
    animation-delay: 0.4s;
}

.hero-actions.animate-fade-in {
    animation-delay: 0.6s;
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fade-in-right 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-right {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Tablet Layout (under 1024px) */

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mid-tablet / Mobile Layout (under 768px) */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    /* Navigation Hamburger Menu */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--primary-dark);
        z-index: 98;
        transition: var(--transition-smooth);
        padding: 50px 30px;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    
    .nav-link {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .main-header.scrolled .nav-link {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .main-header.scrolled .nav-link:hover, 
    .main-header.scrolled .nav-link.active {
        color: var(--accent-gold);
    }
    
    .header-cta {
        display: none; /* CTA hidden in small header, nav gets it if required, or simple floating buttons */
    }
    
    /* Hamburger Active Animation */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero layout stacking */
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-sidebar {
        align-items: center;
    }
    
    .rating-card, .trust-list {
        width: 100%;
        max-width: 320px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    /* About Location */
    .about-details {
        padding-right: 0;
    }
    
    /* Portfolio filter buttons wrap */
    .portfolio-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Why Choose Side Card */
    .why-points-grid {
        grid-template-columns: 1fr;
    }
    
    .why-card-container {
        justify-content: center;
        margin-top: 20px;
    }
    
    .highlight-why-card {
        max-width: 100%;
        padding: 35px 25px;
    }
    
    /* Process timeline cards stack */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-card {
        padding: 24px;
    }
    
    /* Reviews rating card stack */
    .reviews-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .google-rating-summary {
        max-width: 320px;
        margin: 0 auto;
        padding: 30px;
    }
    
    /* CTA card layout */
    .cta-banner-card {
        padding: 40px 20px;
    }
    
    .cta-banner-title {
        font-size: 1.8rem;
    }
    
    .cta-banner-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .cta-banner-buttons .btn {
        width: 100%;
    }
    
    /* Contact Form Layout */
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .details-card {
        padding: 30px 20px;
    }
    
    .contact-quick-actions {
        grid-template-columns: 1fr;
    }
    
    .quick-action-btn.highlighted {
        grid-column: span 1;
    }
    
    /* Fixed Contact button for Mobile */
    .floating-contact-btn {
        position: fixed !important;
        right: 20px !important;
        bottom: 20px !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        border-radius: 50% !important;
        width: 56px !important;
        height: 56px !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
        z-index: 999999 !important;
    }
    
    .floating-contact-btn:hover {
        background-color: var(--whatsapp-green-hover) !important;
        transform: scale(1.05) !important;
    }
    
    .floating-contact-icon {
        margin: 0 !important;
        display: block !important;
        width: 26px !important;
        height: 26px !important;
    }
    
    .floating-contact-text {
        display: none !important; /* Hide text on mobile */
    }
    
    .floating-contact-btn::before {
        border-radius: 50% !important;
    }
    
    /* Footer bottom stack */
    .footer-bottom-flex {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .logo-text {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
