/* Modern CSS Reset & Cross-Browser Consistency */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

/* 
  Normalize and Reset for cross-browser consistency:
  1. Use a more robust box-sizing.
  2. Prevent mobile font size adjustments.
  3. Consistent line-height and font-family stack.
*/
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* Tiny minimalist base font size */
    font-size: 16px; /* Increased by 2px (from 14px) */
    overflow-x: hidden;
    height: 100%;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    /* Tiny minimalist body text */
    font-size: 0.75rem;
    overflow-x: hidden;
    min-height: 100%;
    width: 100%;
    
    /* Strict font rendering across all browsers */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-tap-highlight-color: transparent;
    word-wrap: break-word;
    overflow-wrap: break-word;
    
    /* Cross-browser font features */
    font-feature-settings: "kern", "liga", "clig", "calt";
    -webkit-font-feature-settings: "kern", "liga", "clig", "calt";
    -moz-font-feature-settings: "kern", "liga", "clig", "calt";
    
    /* Force consistent font weight rendering */
    font-weight: 400;
    font-style: normal;
}

/* Ensure images don't break layout */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border: none;
}

/* 
  Standardize form elements for cross-browser consistency 
*/
input, button, textarea, select {
    font: inherit;
    color: inherit;
    background: transparent;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:focus, textarea:focus, select:focus {
    outline: none;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* 
  End of Modern Reset 
*/

:root {
    --primary-color: #0a0a0a;
    --accent-color: #d4af37;
    --text-color: #f0f0f0;
    --light-text: #a0a0a0;
    --bg-color: #0a0a0a;
    --secondary-bg: #111111;
    --border-color: rgba(255, 255, 255, 0.1);
    /* Professional Font Stack */
    --font-family: 'Inter', 'Montserrat', sans-serif !important;
    --header-font: 'Inter', 'Montserrat', sans-serif !important;
    --container-width: 1200px;
    --transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow: 0 10px 40px rgba(0,0,0,0.5);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    text-wrap: balance;
    -webkit-hyphens: auto;
    hyphens: auto;
    font-weight: 400; /* Reduced thickness from 700 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    text-wrap: pretty;
}

.container {
    width: min(100% - 40px, var(--container-width));
    margin-inline: auto;
    /* Fallback for older browsers */
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, #b8860b, var(--accent-color), #f1c40f);
    z-index: 2000;
    box-shadow: 0 0 10px var(--accent-color);
}

/* Typography */
h1, h2, h3 {
    color: #fff;
    line-height: 1.1;
    font-weight: 400; /* Reduced thickness from 700 */
    letter-spacing: -1px;
}

/* Fluid Headings with Professional Scaling */
h1 {
    font-size: clamp(1.4rem, 5vw, 2.2rem); /* Tiny minimalist scale */
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

h2 {
    font-size: clamp(1.1rem, 4vw, 1.6rem); /* Tiny minimalist scale */
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(0.9rem, 2vw, 1.1rem); /* Tiny minimalist scale */
    margin-bottom: 0.8rem;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

/* Glassmorphism improvements */
.service-card, .testimonial-card, .contact-form {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    -webkit-background-clip: text;
    background-clip: text;
}

.sub-title {
    display: block;
    text-transform: uppercase;
    letter-spacing: clamp(3px, 1vw, 6px);
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    font-weight: 500; /* Reduced from 700 */
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: clamp(1rem, 2vw, 1.4rem) clamp(2rem, 4vw, 3.5rem);
    border-radius: 0; /* Modern sharp look */
    text-decoration: none;
    font-weight: 500; /* Reduced from 700 */
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: #fff;
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: #fff;
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-text {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500; /* Reduced from 700 */
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    font-size: 12px; /* Reduced from 14px */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-text:hover {
    gap: 24px;
    color: #fff;
}

/* Navbar */
.navbar {
    padding: 24px 0; /* Reduced padding for a more compact header */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 12px 0;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}

nav[aria-label="Main Navigation"] {
    margin-left: auto; /* Pushes the entire navigation to the far right */
}

.logo-img {
    height: 80px; /* Slightly reduced for better fit */
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    /* Bolder and more attractive look */
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
    mix-blend-mode: normal; 
    border-radius: 4px;
    /* Removed bulky border and background for better alignment */
    cursor: pointer;
    display: block;
    vertical-align: middle;
}

.logo-img:hover {
    transform: scale(1.05) translateY(-2px);
    filter: brightness(1.3) contrast(1.1) drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    z-index: 2000;
    position: relative;
}

.navbar.scrolled .logo-img {
    height: 55px; /* Slightly reduced for elegance */
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    gap: 30px; /* Reduced gap to bring links closer together */
}

.nav-links li {
    margin-left: 24px;
    margin-right: 24px;
}

/* If gap is supported, remove margin to avoid double spacing */
@supports (gap: 48px) {
    .nav-links li {
        margin: 0;
    }
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 700; /* Made bold for better visibility */
    font-size: 11px; /* Increased from 8px for better visibility */
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 3px; /* Slightly reduced tracking to balance size */
    opacity: 0.9;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--accent-color);
    transform: scale(1.1) translateY(-2px);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.burger div {
    width: 30px;
    height: 1px;
    background-color: #fff;
    margin: 10px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for modern browsers */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background: #000;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 0.6;
    transform: scale(1);
    z-index: 2;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: 3;
}

.hero-content {
    max-width: 1200px;
    position: relative;
    z-index: 4;
    padding: 40px;
    /* Removed radial gradient for a cleaner, image-like look */
    background: transparent;
    animation: heroContentFadeIn 1.5s ease-out forwards;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-main-title {
    font-size: clamp(22px, 4vw, 48px); /* Reduced from 28px-64px for a more minimalist, tiny feel */
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 300; /* Slightly increased from 100 for better clarity at smaller size */
    line-height: 1.3;
    text-align: center;
}

.thin-text {
    font-family: 'Quicksand', sans-serif;
    font-weight: 300; /* Quicksand light weight for the rounded thin look */
    letter-spacing: clamp(4px, 1.2vw, 14px); /* Slightly wider spacing for luxury feel */
    opacity: 0.95;
    display: inline-block;
    text-transform: uppercase;
}

.script-text {
    font-family: 'Dancing Script', cursive;
    text-transform: none;
    color: var(--accent-color);
    font-size: 1.1em;
    margin: 0 10px;
    font-weight: 400;
    letter-spacing: 0;
    display: inline-block;
    vertical-align: middle;
    /* Adding a slight glow to match the artistic feel */
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero-subtitle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.subtitle-line {
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
    opacity: 0.8;
}

.hero-tagline {
    font-size: clamp(10px, 1.2vw, 14px);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
    opacity: 0.9;
}

.hero-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.mini-logo {
    height: 30px;
    width: auto;
    filter: brightness(1.2);
}

.brand-name {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #fff;
}

.hero-description {
    font-size: 11px; /* Even smaller for that tiny luxury look */
    max-width: 550px;
    margin: 0 auto 50px;
    line-height: 2;
    font-weight: 400; /* Increased from 300 to make it stronger */
    color: rgba(255, 255, 255, 0.85); /* Increased opacity from 0.6 to make it stand out */
    letter-spacing: 1.5px;
    text-transform: none;
}

.btn-discover {
    background-color: var(--accent-color) !important;
    color: #000 !important;
    font-weight: 600 !important;
    font-size: 10px !important;
    letter-spacing: 2px !important;
    padding: 15px 40px !important;
    border: none !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-discover:hover {
    background-color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Hero H1 Visibility */
.hero h1 {
    display: block;
}

.hero .sub-title {
    color: var(--accent-color);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 5px;
}

.hero-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
}

/* Scroll Indicator */
.hero-scroll-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.hero-scroll-indicator {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
    padding: 30px;
}

.hero-scroll-container:hover .hero-scroll-indicator {
    opacity: 0.8;
    transform: translateY(0);
}

.hero-scroll-indicator i {
    font-size: 19px;
    color: var(--accent-color);
    animation: bounce 2s infinite;
}

.section-padding {
    padding: clamp(2rem, 5vw, 4rem) 0; /* Significantly reduced to bring pages closer */
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    position: relative;
    padding-bottom: 2rem;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: rgba(212, 175, 55, 0.3);
}

.section-header::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    z-index: 1;
}

.about-text h2, .section-header h2, .project-content h2 {
    font-size: 1.1rem; /* Drastically reduced tiny font */
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 0;
    font-weight: 400;
}

.sub-title {
    display: none; /* Hide previous sub-title as H2 now serves this role */
}

.section-desc {
    font-size: 0.8rem;
    margin-top: 1.5rem;
    color: var(--light-text);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: clamp(40px, 8vw, 160px);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 80px !important;
}

.about-vertical .about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-image, .about-text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 450px;
    flex: 1 1 450px;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    filter: grayscale(0.2) contrast(1.1);
}

.experience-badge {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background-color: var(--accent-color);
    color: #000;
    padding: 48px;
    border-radius: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-width: 220px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.experience-badge .number {
    font-size: clamp(40px, 4vw + 10px, 64px);
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: clamp(10px, 1vw, 12px);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-top: 10px;
}

/* Mission & Vision Section */
.mission-vision-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: clamp(40px, 5vw, 96px);
    margin-bottom: clamp(80px, 10vw, 192px);
}

.mission-box, .vision-box {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 400px;
    flex: 1 1 400px;
    background: transparent;
    padding: 0;
    border: none;
    transition: var(--transition);
}

.mission-box:hover, .vision-box:hover {
    transform: translateY(-5px);
}

.mission-box h3, .vision-box h3 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--accent-color);
}

.values-section {
    margin-top: 160px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.value-item {
    background: transparent;
    padding: 20px 0;
    border: none;
    text-align: left;
    transition: var(--transition);
    border-bottom: 1px solid var(--glass-border);
}

.value-item:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.value-icon {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.value-item h4 {
    font-size: clamp(20px, 2vw + 10px, 28px);
    margin-bottom: 20px;
    color: #fff;
}

.value-item p {
    font-size: clamp(14px, 1vw + 10px, 16px);
    color: var(--light-text);
}

/* Services Section */
.services-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(20px, 3vw, 40px); /* Reduced gap to fit three items better */
}

.service-card {
    background: #111;
    padding: 40px 30px; /* Reduced from 60px 40px */
    border-radius: 0;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px; /* Reduced from 380px to accommodate 3-column layout */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.9) 100%);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover::before {
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.95) 100%);
}

/* Specific background images for services */
.service-card:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1558591710-4b4a1ae0f04d?auto=format&fit=crop&w=800&q=80'); }
.service-card:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1560185007-c5ca9d2c014d?auto=format&fit=crop&w=800&q=80'); }
.service-card:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=800&q=80'); }
.service-card:nth-child(4) { background-image: url('https://images.unsplash.com/photo-1513519245088-0e12902e5a38?auto=format&fit=crop&w=800&q=80'); }
.service-card:nth-child(5) { background-image: url('https://images.unsplash.com/photo-1603584173870-7f1efd98042a?auto=format&fit=crop&w=1200&q=80'); } /* High-end showroom background */

.service-card:hover {
    transform: translateY(-20px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.service-icon {
    font-size: 28px; /* Reduced from 40px */
    color: var(--accent-color);
    margin-bottom: 16px; /* Reduced from 24px */
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    display: block;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: clamp(18px, 1.5vw + 8px, 24px); /* Reduced from 24-32px */
    font-weight: 400;
}

.service-card p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.service-list {
    list-style: none;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--glass-border);
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: clamp(14px, 1vw + 10px, 16px);
    margin-bottom: 12px;
    color: var(--light-text);
}

.service-list i {
    color: var(--accent-color);
    font-size: 14px;
}

/* Featured Project Section */
.project-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: clamp(40px, 6vw, 100px); /* Reduced gap slightly for a tighter fit */
    -webkit-box-align: stretch; /* Stretch to keep image and text container on same level */
    -ms-flex-align: stretch;
    align-items: stretch;
}

.project-image, .project-content {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 450px;
    flex: 1 1 450px;
}

.project-content h2 {
    margin-bottom: 40px;
}

.project-stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: clamp(30px, 5vw, 64px);
    margin: 48px 0;
    padding-top: 32px;
    border-top: 1px solid var(--glass-border);
}

.stat strong {
    display: block;
    font-size: 19px;
    color: var(--accent-color);
}

.stat span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-text);
}

.project-image {
    display: flex;
}

.project-image img {
    width: 100%;
    height: 100%; /* Take full height of container to stay level with text */
    min-height: 400px;
    max-height: 500px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* Ensure last section before footer has minimal bottom padding */
main > section:last-of-type.section-padding,
#contact.section-padding,
#values.section-padding,
#gallery.section-padding {
    padding-bottom: 0 !important; /* Completely closed the space */
}

/* Modern Split Footer Design */
.footer {
    padding: 0;
    background: #000;
    color: #fff;
    position: relative;
    border-top: 1px solid var(--glass-border); /* Subtle line between contact and footer */
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    min-height: 400px;
}

.footer-brand-section {
    flex: 2;
    padding: 0 clamp(20px, 5vw, 80px) 80px; /* Removed top padding to close gap from footer side */
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(10, 10, 10, 0.95)), url('NewBackground.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start; /* Align all columns at the top */
}

.footer-brand-info {
    flex: 1.5;
    min-width: 250px;
}

.footer-brand-info p {
    margin: 30px 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-social-column {
    flex: 1;
    min-width: 200px;
}

.footer-social-column h4 {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-social-column h4::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.social-box-grid {
    display: flex;
    gap: 15px;
}

.social-box {
    width: 45px;
    height: 45px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.social-box:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.footer-links-column {
    flex: 1;
    min-width: 200px;
}

.footer-links-column h4 {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links-column h4::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.footer-links-column ul {
    list-style: none;
}

.footer-links-column ul li {
    margin-bottom: 15px;
}

.footer-links-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-column ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-contact-section {
    flex: 1;
    background-color: #080808; /* Very dark grey instead of blue */
    padding: 80px clamp(20px, 5vw, 60px);
    min-width: 320px;
}

.footer-contact-section h4 {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-contact-section h4::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

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

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom-bar {
    background: #0a0a0a;
    padding: 25px clamp(20px, 5vw, 80px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.scroll-top-btn {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.scroll-top-btn:hover {
    background: #fff;
    color: var(--accent-color);
    transform: translateY(-5px);
}

@media screen and (max-width: 992px) {
    .footer-brand-section {
        flex: 100%;
    }
    .footer-contact-section {
        flex: 100%;
    }
}

/* Gallery Section */
.gallery-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(350px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.gallery-item {
    overflow: hidden;
    height: 500px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
    filter: brightness(0.8) contrast(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 16px;
    transform: translateY(30px);
    transition: var(--transition);
}

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

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

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

/* Testimonials Slider */
.testimonials-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 32px; /* Slightly reduced gap for better fit */
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 21.33px);
    background: transparent;
    padding: 40px;
    border: none;
    border-left: 2px solid var(--accent-color);
    min-width: 400px;
    transition: var(--transition);
    position: relative;
    box-sizing: border-box;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

@media screen and (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 16px); /* 2 cards visible on tablets */
    }
}

@media screen and (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%; /* 1 card visible on mobile */
    }
}

.testimonial-card .stars {
    color: var(--accent-color);
    margin-bottom: 24px; /* Reduced spacing */
    font-size: 14px;
}

.testimonial-card p {
    font-style: italic;
    font-size: 18px; /* Slightly reduced */
    margin-bottom: 32px; /* Reduced spacing */
    color: #fff;
    font-weight: 300;
    line-height: 1.6;
}

.client-info strong {
    display: block;
    font-size: clamp(16px, 1.5vw + 10px, 20px);
    color: #fff;
}

.client-info span {
    font-size: clamp(12px, 1vw, 14px);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Contact Section */
.contact-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: clamp(60px, 12vw, 192px);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.contact-info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 350px;
    flex: 1 1 350px;
}

.info-details {
    margin-top: 80px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 56px;
    gap: 40px;
}

.info-item i {
    width: 60px;
    height: 60px;
    background-color: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent-color);
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.info-item:hover i {
    background-color: var(--accent-color);
    color: #000;
    transform: rotate(45deg);
}

.contact-form {
    background-color: transparent;
    padding: 0;
    border: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    box-shadow: none;
    -webkit-box-flex: 1.5;
    -ms-flex: 1.5 1 600px;
    flex: 1.5 1 600px;
}

.form-group {
    margin-bottom: 24px; /* Reduced from 48px */
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 16px 0; /* Reduced from 24px */
    border: none;
    border-bottom: 1px solid var(--glass-border);
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: clamp(16px, 1vw + 10px, 18px);
    transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

#formStatus {
    font-size: 16px;
    font-weight: 500;
    transition: all 0.5s ease;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.contact-form .btn {
    width: 100%;
    margin-top: 32px; /* Reduced from 48px */
    cursor: pointer;
}

/* Footer */
.footer {
    padding: 192px 0 96px;
    background-color: #000;
    color: #fff;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 128px;
}

.footer-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo .logo-img {
    height: 100px;
    width: auto;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
    mix-blend-mode: normal;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.footer-logo .logo-img:hover {
    transform: scale(1.3) translateY(-10px);
    filter: brightness(1.4) contrast(1.1) drop-shadow(0 0 40px rgba(212, 175, 55, 0.7));
    border-color: var(--accent-color);
}

.footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 64px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    transition: var(--transition);
}

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

.social-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 48px;
}

.social-links a {
    color: #fff;
    font-size: 26px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-10px);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 64px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--light-text);
    letter-spacing: 1px;
}

/* Reveal Animations */
.reveal, .reveal-left, .reveal-right, .reveal-top, .reveal-bottom {
    opacity: 0;
    transition: 1s cubic-bezier(0.25, 1, 0.5, 1) all;
    visibility: hidden; /* Hide to prevent overlap before animation */
}

/* Fallback: If JavaScript is disabled or fails to run, show content immediately */
.no-js .reveal, 
.no-js .reveal-left, 
.no-js .reveal-right, 
.no-js .reveal-top, 
.no-js .reveal-bottom {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Also show content if active class is not applied after 2 seconds (safety) */
@media (prefers-reduced-motion: no-preference) {
    .reveal:not(.active), .reveal-left:not(.active), .reveal-right:not(.active), .reveal-top:not(.active), .reveal-bottom:not(.active) {
        /* This is a safety measure - if after 3s they aren't active, show them anyway */
        animation: reveal-safety 0.1s forwards 3s;
    }
}

@keyframes reveal-safety {
    to { opacity: 1; visibility: visible; transform: none; }
}

.gallery-item.reveal {
    transition-duration: 0.6s; /* Even faster for gallery items */
}

.reveal { transform: translateY(80px); }
.reveal-left { transform: translateX(-80px); }
.reveal-right { transform: translateX(80px); }
.reveal-top { transform: translateY(-80px); }
.reveal-bottom { transform: translateY(80px); }

.reveal.active, .reveal-left.active, .reveal-right.active, .reveal-top.active, .reveal-bottom.active {
    opacity: 1;
    transform: translate(0, 0);
    visibility: visible;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1500;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-10px) scale(1.05);
    background-color: #128c7e;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 29px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    border: none;
    margin-top: 16px;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    color: #fff;
}

.form-divider {
    text-align: center;
    margin: 32px 0;
    position: relative;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--glass-border);
}

.form-divider span {
    background: var(--bg-color);
    padding: 0 24px;
    position: relative;
    color: var(--light-text);
    font-size: 13px;
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px;
    }
    .whatsapp-float span {
        display: none;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    animation: zoomIn 0.3s ease;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--accent-color);
    padding: 20px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 16px;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 3001;
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

@keyframes zoomIn {
    from {transform: scale(0.5); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* Mobile Responsive */
@media screen and (max-width: 1200px) {
    .contact-grid {
        gap: 96px;
    }
}

@media screen and (max-width: 992px) {
    .about-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 80px;
    }
    
    .contact-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 60px;
    }
    
    .about-image, .about-text {
        width: 100%;
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
    }

    .contact-info {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 350px;
        flex: 1 1 350px;
    }
    
    .contact-form {
        -webkit-box-flex: 1.5;
        -ms-flex: 1.5 1 600px;
        flex: 1.5 1 600px;
    }

    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 64px;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .section-padding {
        padding: 160px 0;
    }
    .footer-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 96px;
        text-align: center;
    }
    .footer-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 32px;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: auto; /* Reduced from 100vh */
        width: 100%; /* Cover full width but only for a small part */
        max-width: 100%;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 80px 0 30px; /* Space for logo/burger and bottom padding */
        transform: translateY(-100%); /* Slide down instead of from right */
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 999;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links li a {
        font-size: 0.8rem; /* Tiny mobile nav links */
        font-weight: 400;
        letter-spacing: 2px;
    }

    .burger {
        display: block;
        z-index: 1001;
        cursor: pointer;
    }

    .burger div {
        width: 30px; /* Reduced from 35px */
        height: 1px;
        background-color: #fff;
        margin: 8px; /* Reduced from 12px for more compact look */
        transition: var(--transition);
    }

    .toggle .line1 {
        -webkit-transform: rotate(-45deg) translate(-9px, 9px);
        -ms-transform: rotate(-45deg) translate(-9px, 9px);
        transform: rotate(-45deg) translate(-9px, 9px);
        background-color: var(--accent-color) !important;
    }
    .toggle .line2 {
        opacity: 0;
    }
    .toggle .line3 {
        -webkit-transform: rotate(45deg) translate(-9px, -9px);
        -ms-transform: rotate(45deg) translate(-9px, -9px);
        transform: rotate(45deg) translate(-9px, -9px);
        background-color: var(--accent-color) !important;
    }
    
    @keyframes navLinkFade {
        from {
            opacity: 0;
            -webkit-transform: translateX(50px);
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }

    .hero h1 {
        font-size: 24px; /* Reduced from 36px */
    }
    .hero p {
        font-size: 14px; /* Reduced from 18px */
        margin-bottom: 30px;
    }
    .section-padding {
        padding: 2.5rem 0; /* Tighter gaps on mobile */
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .hero-content {
        padding: 1.5rem;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        padding: 1rem;
    }
    .about-text h2, .section-header h2, .project-content h2 {
        font-size: 22px; /* Reduced from 36px */
    }
}

@media screen and (max-width: 480px) {
     .logo-img {
         height: 60px;
     }
     .experience-badge {
        padding: 32px;
        min-width: 180px;
    }
    .experience-badge .number {
        font-size: 40px;
    }
    .footer-logo .logo-img {
        height: 60px;
    }
}

/* Why Choose Section Styles */
.why-choose-section {
    margin-top: clamp(40px, 5vw, 60px); /* Reduced from 80-140px to move Contemporary Kitchen section up */
}

.why-choose-title {
    font-size: clamp(0.9rem, 2.5vw, 1.3rem) !important; /* Reduced font size */
    margin-bottom: clamp(30px, 5vw, 60px) !important;
}

.why-choose-section .sub-title {
    font-size: clamp(0.6rem, 1.2vw, 0.75rem); /* Even smaller subtitle */
    margin-bottom: 0.8rem;
}

.why-choose-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(30px, 4vw, 48px);
}

.why-item {
    background: transparent;
    padding: 0;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px;
    transition: var(--transition);
}

.why-item:hover {
    background: transparent;
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}

.why-icon {
    font-size: 18px; /* Reduced from 24px */
    color: var(--accent-color);
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 40px; /* Reduced from 50px */
    height: 40px; /* Reduced from 50px */
    background: rgba(212, 175, 55, 0.08);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
}

.why-item p {
    font-size: clamp(12px, 0.8vw + 8px, 14px); /* Reduced from 14-16px */
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
}

@media screen and (max-width: 768px) {
    .why-item {
        gap: 16px;
        padding: 24px;
    }
    
    .why-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* FINAL MOBILE RESPONSIVE OVERRIDES */
@media screen and (max-width: 768px) {
    /* Global Mobile Typography Reductions - Tiny & Consistent */
    body, p, .section-desc, .why-item p, .service-card p, .project-content p, .testimonial-card p, .contact-info p, .footer p {
        font-size: 13px !important; /* Unified tiny body text - Increased by 2px (from 11px) */
        line-height: 1.6 !important;
    }

    h1, .hero-main-title {
        font-size: 22px !important; /* Unified tiny H1 */
        letter-spacing: -0.02em !important;
        line-height: 1.2 !important;
    }
    
    h2, .section-header h2, .project-content h2, .about-text h2 {
        font-size: 18px !important; /* Unified tiny H2 */
        letter-spacing: -0.01em !important;
        line-height: 1.3 !important;
        text-transform: uppercase !important;
    }

    #who-we-are h2, #about h2, .project-content h2 {
        font-size: 16px !important; /* Even smaller for specific feature headers */
    }

    h3, .service-card h3, .footer-brand-info h4, .footer-social-column h4, .footer-links-column h4, .footer-contact-section h4 {
        font-size: 15px !important; /* Unified tiny H3/H4 */
        margin-bottom: 12px !important;
    }

    .sub-title {
        font-size: 9px !important;
        letter-spacing: 2px !important;
    }

    .section-padding {
        padding: 10px 0 !important; /* Minimized to close gaps between sections on mobile */
    }

    .hero {
        padding: 100px 15px 120px !important; /* Increased bottom padding to prevent overlap with scroll indicator */
        min-height: 100vh !important; /* Back to full height on mobile for luxury feel */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-scroll-container {
        height: 100px !important; /* Reduced height on mobile */
        opacity: 1 !important; /* Always visible on mobile */
    }

    .hero-scroll-indicator {
        opacity: 0.8 !important;
        transform: translateY(0) !important;
        padding: 15px !important;
        gap: 10px !important;
    }
    
    .why-choose-section {
        margin-top: 30px !important; /* Reduced margin for mobile */
    }

    .why-choose-grid {
        gap: 15px !important; /* Reduced gap between items on mobile */
    }

    .why-item {
        padding: 10px 0 !important; /* Significantly reduced padding to close gaps */
        gap: 12px !important;
    }
    
    .hero-main-title {
        gap: 8px !important;
    }

    .thin-text {
        letter-spacing: 2px !important;
    }

    .script-text {
        font-size: 0.9em !important;
    }

    .hero-description {
        font-size: 11px !important; /* Matches unified body text */
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
        font-weight: 500 !important; /* Stronger for mobile readability */
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        gap: 0 !important; /* No gap needed for carousel */
        overflow-x: auto !important; /* Allow manual scrolling */
        scroll-snap-type: x mandatory !important; /* Snap to images */
        display: flex !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .gallery-item {
        flex: 0 0 100% !important; /* Each item takes full width */
        scroll-snap-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 350px !important;
        transition: opacity 0.5s ease-in-out !important;
        display: block !important; /* Keep items in flex container */
    }
    
    .hero-content {
        padding: 30px 15px !important;
        text-align: center !important;
    }
    
    .hero-btns {
        flex-direction: column !important;
        width: 100% !important;
        gap: 15px !important;
        align-items: center !important; /* Ensure buttons are centered in the column */
        justify-content: center !important;
    }
    
    .btn {
        width: auto !important; /* Changed from 100% to auto to allow natural centering */
        min-width: 220px !important; /* Maintain a consistent professional width */
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 12px 20px !important;
        font-size: 10px !important;
        text-align: center !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr !important; /* Stack normally on mobile */
        gap: 20px !important;
    }

    /* Footer Mobile Improvements */
    .footer-top {
        flex-direction: column !important;
    }

    .footer-brand-section {
        order: 3; /* Move logo/brand section to the bottom */
        padding: 40px 20px !important;
        gap: 30px !important;
        text-align: center;
        justify-content: center;
    }

    .footer-brand-info {
        flex: 1 1 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand-info p {
        margin: 15px 0;
    }

    .footer-social-column, .footer-links-column {
        flex: 1 1 100%;
        padding: 30px 20px 0 !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social-column h4, .footer-links-column h4, .footer-contact-section h4 {
        justify-content: center;
        margin-bottom: 20px !important;
    }

    .social-box-grid {
        justify-content: center;
    }

    .footer-contact-section {
        order: 1; /* Move contact to the top of footer */
        padding: 40px 20px !important;
        min-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer-links-column {
        order: 2; /* Links in the middle */
        padding-bottom: 30px !important;
    }

    /* Centralize Request a Quote button in contact section */
    .contact-form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-form .btn {
        width: auto !important;
        min-width: 250px;
        margin: 0 auto !important;
    }

    .service-card {
        min-height: 300px !important;
        padding: 30px 20px !important;
    }

    .service-card h3 {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }

    .service-card p {
        font-size: 11px !important;
    }
}
