/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLES: SIRI KAMAKSHI KITCHEN GALLERY
   ========================================================================== */

/* --- Import Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- Root Variable Declarations --- */
:root {
    --color-bg-dark: #111111;
    --color-bg-card: #181818;
    --color-gold: #D4AF37;
    --color-gold-hover: #F3E5AB;
    --color-wood: #A67C52;
    --color-white: #FFFFFF;
    --color-text-muted: #A0A0A0;
    --color-glass-bg: rgba(20, 20, 20, 0.65);
    --color-glass-border: rgba(212, 175, 55, 0.2);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-medium: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: 0.25s ease;
    
    --shadow-gold-glow: 0 8px 32px 0 rgba(212, 175, 55, 0.15);
    --shadow-gold-glow-intense: 0 12px 40px 0 rgba(212, 175, 55, 0.35);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-color: var(--color-bg-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: var(--border-radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-wood);
}

/* Selection Highlight */
::selection {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
}

/* Link Resets */
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* List Resets */
ul, ol {
    list-style: none;
}

/* Button & Input Base */
button, input, select, textarea {
    font-family: inherit;
    outline: none;
}

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

/* --- Helper Classes --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold {
    color: var(--color-gold) !important;
}

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

.w-full {
    width: 100%;
}

.id-anchor {
    scroll-margin-top: 90px; /* Offset for sticky header */
}

/* --- Canvas Particles Background --- */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-medium);
    border: 2px solid transparent;
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background-color: var(--color-white);
    color: var(--color-bg-dark);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

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

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

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

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

/* --- Section Layouts --- */
section {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}

.header-divider {
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ==========================================================================
   HEADER / NAVIGATION MENU
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-medium);
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--color-glass-border);
    box-shadow: var(--shadow-dark);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.logo-icon {
    width: 44px;
    height: 44px;
}

.svg-logo {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-white);
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-gold);
}

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    position: relative;
    padding: 6px 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-icon-only {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    transition: var(--transition-fast);
}

.btn-icon-only:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
    transform: scale(1.05);
}

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

.nav-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.nav-cta:hover {
    background-color: var(--color-white);
    color: var(--color-bg-dark);
    transform: translateY(-1px);
}

/* Hamburger toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

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

/* Open states for menu toggle */
.menu-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-gold);
}

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

.menu-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-gold);
}

/* Mobile navigation drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 120px 40px 40px;
    border-left: 1px solid var(--color-glass-border);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open {
    right: 0;
}

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

.mobile-link {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    display: block;
}

.mobile-link:hover {
    color: var(--color-gold);
    padding-left: 8px;
}

.mobile-cta-item {
    margin-top: 24px;
}

.mobile-cta {
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    border-radius: var(--border-radius-sm);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(17, 17, 17, 0.45) 0%, rgba(17, 17, 17, 0.92) 80%);
    z-index: 2;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    margin-top: 40px;
}

.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--color-glass-border);
    padding: 8px 18px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

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

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero-title span {
    display: block;
}

.title-top {
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 auto 40px;
}

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

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

.indicator-mouse {
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    position: relative;
    display: block;
}

.indicator-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite ease-in-out;
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    50% { top: 18px; opacity: 0.3; }
    100% { top: 8px; opacity: 1; }
}

.indicator-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* --- Floating Kitchen Elements --- */
.floating-elements-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    pointer-events: auto;
}

.elem-glass-card {
    background: var(--color-glass-bg);
    border: 1px solid var(--color-glass-border);
    padding: 14px 20px;
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: border var(--transition-fast), box-shadow var(--transition-fast);
}

.elem-glass-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold-glow);
}

.elem-icon {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
}

.elem-glass-card span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
}

/* Layout coordinates of elements */
.elem-cabinet { top: 18%; left: 8%; animation: float-cabinet 8s infinite ease-in-out; }
.elem-chimney { top: 35%; right: 7%; animation: float-chimney 9s infinite ease-in-out; }
.elem-cooktop { bottom: 22%; left: 10%; animation: float-cooktop 7s infinite ease-in-out; }
.elem-panel { top: 12%; right: 18%; animation: float-panel 10s infinite ease-in-out; }
.elem-accessory { bottom: 28%; right: 12%; animation: float-accessory 8.5s infinite ease-in-out; }
.elem-lighting { bottom: 15%; right: 38%; animation: float-lighting 7.5s infinite ease-in-out; }

/* Individual Float Keyframe Animations */
@keyframes float-cabinet {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes float-chimney {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(18px) rotate(-2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes float-cooktop {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-1.5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes float-panel {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(14px) rotate(1.5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes float-accessory {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(-2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@keyframes float-lighting {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(10px) rotate(1.5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: visible;
    padding-bottom: 20px;
    padding-right: 20px;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    border: 3px solid var(--color-gold);
    border-radius: var(--border-radius-md);
    z-index: 1;
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-dark);
    filter: brightness(0.95);
    transition: var(--transition-medium);
}

.about-img:hover {
    transform: translate(-5px, -5px);
}

.about-badge-gold {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    z-index: 3;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.badge-num {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.badge-txt {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

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

.about-p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 10px 0;
}

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

.point-icon-box {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.point-svg {
    width: 100%;
    height: 100%;
}

.point-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 2px;
}

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

.about-review-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: var(--border-radius-md);
    margin-top: 10px;
}

.google-logo {
    width: 36px;
    height: 36px;
}

.svg-google-logo {
    width: 100%;
    height: 100%;
}

.review-meta {
    line-height: 1.3;
}

.review-stars-row {
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 1.05rem;
}

.review-val {
    color: var(--color-white);
    font-size: 0.95rem;
    margin-left: 6px;
}

.review-counter-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: var(--border-radius-md);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-wood));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: var(--color-glass-border);
}

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

.service-icon-wrapper {
    width: 56px;
    height: 56px;
    color: var(--color-gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

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

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
}

.service-list li {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: var(--color-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==========================================================================
   FEATURED KITCHEN SHOWCASE (3D Tilt Cards)
   ========================================================================== */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.showcase-card {
    background: rgba(24, 24, 24, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.showcase-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold-glow);
}

.card-image-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, rgba(17, 17, 17, 0.9) 100%);
}

.card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.card-content-glass {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.card-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    margin-top: auto;
}

.card-specs span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    background-color: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 4px 10px;
    border-radius: 40px;
}

.card-btn {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.card-btn:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 10px 22px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition-medium);
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--color-gold);
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

/* Masonry Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    grid-auto-rows: 240px;
    gap: 20px;
}

/* Responsive Masonry Heights */
.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
}

/* Give items custom height ratios for masonry style */
.gallery-item:nth-child(2n) {
    grid-row: span 2;
}

.gallery-item:nth-child(3n) {
    grid-row: span 1.5;
}

.gallery-img-box {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.8);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: opacity 0.4s ease;
}

.gallery-text {
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.gallery-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    color: var(--color-white);
}

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

.zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0;
    transform: scale(0.8);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover States */
.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

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

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

.gallery-item:hover .zoom-icon {
    opacity: 1;
    transform: scale(1);
}

/* Hide animations for filtered items */
.gallery-item.hide {
    display: none;
}

/* ==========================================================================
   WHY CHOOSE US (Animated Counters)
   ========================================================================== */
.stats-section {
    padding: 120px 0;
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

.stats-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.94);
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-box {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-md);
    padding: 40px 20px;
    backdrop-filter: blur(10px);
    transition: var(--transition-medium);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--color-glass-border);
    box-shadow: var(--shadow-gold-glow);
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    color: var(--color-gold);
    margin: 0 auto 20px;
}

.stat-icon {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.1;
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-glass-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.08);
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
    pointer-events: none;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.reviewer-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.reviewer-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
}

.reviewer-location {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.card-stars {
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-top: 14px;
    font-size: 0.9rem;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info-panel {
    background-color: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.panel-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon-box {
    width: 44px;
    height: 44px;
    background-color: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-svg {
    width: 20px;
    height: 20px;
}

.detail-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    margin-bottom: 4px;
}

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

.contact-link:hover {
    color: var(--color-gold);
}

.quick-action-buttons {
    display: flex;
    gap: 16px;
}

/* Glassmorphic Contact Form */
.contact-form-panel {
    display: flex;
}

.glass-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-glass-border);
    padding: 50px 40px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-dark);
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    backdrop-filter: blur(10px);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: -16px;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 14px 18px;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-group select option {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
}

.form-group textarea {
    resize: none;
}

/* Error states */
.error-msg {
    color: #ff4a4a;
    font-size: 0.75rem;
    font-weight: 500;
    display: none;
    margin-top: 4px;
}

.form-group.invalid input,
.form-group.invalid select {
    border-color: #ff4a4a;
    box-shadow: 0 0 10px rgba(255, 74, 74, 0.15);
}

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

.btn-submit {
    border: none;
    font-size: 0.95rem;
    padding: 16px 20px;
    justify-content: center;
}

.submit-svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-submit:hover .submit-svg {
    transform: translateX(5px) scale(1.1);
}

/* ==========================================================================
   MAP SECTION
   ========================================================================== */
.map-section {
    padding: 0;
    background-color: var(--color-bg-dark);
    position: relative;
    z-index: 2;
}

.map-wrapper {
    position: relative;
    border-top: 1px solid var(--color-glass-border);
    border-bottom: 1px solid var(--color-glass-border);
}

#map-frame {
    filter: invert(90%) hue-rotate(180deg) brightness(0.9); /* Dark mode map styling */
    transition: opacity 0.3s ease;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #0b0b0b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

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

.footer-logo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
}

.footer-logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: -12px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer-rating {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

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

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-white);
    position: relative;
    padding-bottom: 8px;
}

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

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

.footer-links li a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

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

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contacts li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contacts li a:hover {
    color: var(--color-gold);
}

.footer-socials-col {
    gap: 16px;
}

.socials-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

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

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.social-svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   LIGHTBOX MODAL POPUP
   ========================================================================== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-modal.open {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: var(--color-white);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2002;
}

.lightbox-close:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.2rem;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2002;
}

.lightbox-nav:hover {
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    border-color: var(--color-gold);
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2001;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-modal.open .lightbox-content {
    transform: scale(1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--color-glass-border);
}

.lightbox-caption {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-white);
    text-align: center;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

/* ==========================================================================
   FEEDBACK TOAST (FORM SUBMITTED SUCCESS)
   ========================================================================== */
.feedback-toast {
    position: fixed;
    bottom: 30px;
    right: -400px;
    z-index: 9999;
    transition: right 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.feedback-toast.show {
    right: 30px;
}

.toast-content {
    background: rgba(24, 24, 24, 0.9);
    border: 1px solid var(--color-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-md);
    padding: 16px 24px;
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 360px;
}

.toast-icon {
    width: 32px;
    height: 32px;
    background-color: var(--color-gold);
    color: var(--color-bg-dark);
    border-radius: 50%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-text-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2px;
}

.toast-text-box p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (IntersectionObserver classes)
   ========================================================================== */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-fade-left {
    opacity: 0;
    transform: translateX(45px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-fade-right {
    opacity: 0;
    transform: translateX(-45px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-fade-up.active,
.reveal-fade-left.active,
.reveal-fade-right.active {
    opacity: 1;
    transform: translate(0);
}

/* Cascade delays for grids */
.reveal-fade-up:nth-child(2) { transition-delay: 0.15s; }
.reveal-fade-up:nth-child(3) { transition-delay: 0.3s; }
.reveal-fade-up:nth-child(4) { transition-delay: 0.45s; }
.reveal-fade-up:nth-child(5) { transition-delay: 0.6s; }

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet viewports (less than 1024px) */
@screen-large: 1024px;
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 45px;
    }
}

/* Tablet smaller portrait (less than 768px) */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Header menu hamburger visible */
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-actions .nav-cta {
        display: none; /* Hide estimate button in navbar, drawer has it */
    }
    
    /* Hero section titles */
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Floating Elements adjustments */
    .floating-elements-container {
        display: none; /* Hide complex floating overlays on mobile to save performance & layout space */
    }
    
    .stats-section {
        background-attachment: scroll; /* Disable fixed parallax for better mobile scrolling performance */
    }
    
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { right: 20px; top: 20px; }
}

/* Mobile viewports (less than 576px) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .quick-action-buttons {
        flex-direction: column;
    }
    
    .glass-form, .contact-info-panel {
        padding: 30px 20px;
    }
    
    .feedback-toast {
        width: calc(100% - 40px);
        left: 20px;
        right: auto;
        transform: translateY(150px);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    .feedback-toast.show {
        transform: translateY(0);
    }
}
