/* ==========================================
   CSS RESET & ROOT VARIABLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-green: #2c5f2d;
    --primary-dark: #1a3a1b;
    --primary-light: #3d7f3e;
    --secondary-gold: #d4af37;
    --gold-dark: #b8941f;
    --gold-light: #f4d03f;
    
    /* Neutral Colors */
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --white: #ffffff;
    --bg-light: #f9faf9;
    --bg-cream: #faf8f5;
    --border-light: #e5e5e5;
    
    /* WhatsApp Green */
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128C7E;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2c5f2d 0%, #3d7f3e 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(28, 47, 28, 0.92) 0%, rgba(28, 47, 28, 0.98) 100%);
    --gradient-hero: linear-gradient(135deg, #1a3a1b 0%, #2c5f2d 50%, #1a3a1b 100%);
    
    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* ==========================================
   BASE STYLES
   ========================================== */

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
    scroll-margin-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   PRELOADER
   ========================================== */

.preloader {
    position: fixed;
    inset: 0;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: white;
}

.loader i {
    font-size: 60px;
    color: var(--secondary-gold);
    margin-bottom: 20px;
    animation: float 2s ease-in-out infinite;
}

.loader p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-base);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-green);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: white;
}

.btn-whatsapp {
    background: var(--whatsapp-green);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-nav {
    padding: 10px 24px;
    font-size: 14px;
}

/* ==========================================
   NAVIGATION
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none; /* ✅ Remove underline */
    color: inherit;        /* ✅ Keep text color */
    cursor: pointer;       /* ✅ Show pointer on hover */
}

/* Desktop */
.brand-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 768px) {
    .brand-logo-img {
        width: 45px;
        height: 45px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .brand-logo-img {
        width: 40px;
        height: 40px;
    }
}

/* ✅ UPDATED: Custom logo image */
.brand-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: var(--transition-base);
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

/* Keep this if you still use icons elsewhere */
.brand-logo i {
    font-size: 42px;
    color: var(--primary-green);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-green);
    letter-spacing: 0.5px;
}

.brand-name sup {
    font-size: 10px;
    font-weight: 600;
}

.brand-tagline {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-gold);
    font-family: var(--font-heading);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-gold);
    transition: var(--transition-base);
    border-radius: 3px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* ==========================================
   HERO SECTION - ENHANCED
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 150px 0 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--secondary-gold);
    top: -300px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: white;
    bottom: -200px;
    left: -100px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--secondary-gold);
    top: 50%;
    left: 10%;
    animation: float 10s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: var(--secondary-gold);
}

.hero-title {
    font-size: 64px;
    color: white;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-title sup {
    font-size: 24px;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-values {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.value-item i {
    color: var(--secondary-gold);
    font-size: 20px;
}

.value-divider {
    width: 2px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   HERO STATS - FIXED & ENHANCED
   ========================================== */

.hero-stats-wrapper {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 0;
    margin-top: 60px; /* ✅ REPLACED <br> TAGS WITH PROPER SPACING */
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    transition: var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 24px;
    color: var(--text-dark);
}

.stat-content {
    color: white;
}

.stat-number {
    font-size: 40px;
    color: var(--secondary-gold);
    margin-bottom: 8px;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin-top: 80px; /* ✅ PROPER SPACING INSTEAD OF <br> */
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.scroll-indicator span {
    width: 3px;
    height: 15px;
    background: white;
    border-radius: 3px;
    opacity: 0.5;
    animation: scrollDown 1.5s ease-in-out infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollDown {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

/* ==========================================
   SECTION HEADERS
   ========================================== */

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-gold);
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title sup {
    font-size: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 700px;
    line-height: 1.7;
}

.section-header.center .section-description {
    margin: 0 auto;
}

/* ==========================================
   ✅ NEW: WHATSAPP SECTION CTAs
   ========================================== */

.section-whatsapp-cta {
    margin-top: 50px;
}

.wa-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e9 100%);
    padding: 35px 40px;
    border-radius: 20px;
    border: 2px solid rgba(37, 211, 102, 0.2);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.wa-cta-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--whatsapp-green);
}

.wa-cta-icon {
    width: 70px;
    height: 70px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 36px;
    color: white;
    animation: pulse 2s infinite;
}

.wa-cta-content {
    flex: 1;
}

.wa-cta-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.wa-cta-content p {
    color: var(--text-gray);
    font-size: 16px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */

.about-section {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.image-badge i {
    font-size: 32px;
    color: var(--secondary-gold);
}

.image-badge span {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
}

.pattern-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--gradient-gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.about-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 35px;
}

.core-values {
    margin-bottom: 35px;
}

.value-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border-left: 4px solid transparent;
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary-gold);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-icon i {
    font-size: 28px;
    color: white;
}

.value-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.value-text p {
    color: var(--text-gray);
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--secondary-gold);
    font-size: 18px;
}

/* ==========================================
   DESIGNS SECTION
   ========================================== */

.designs-section {
    background: white;
}

.designs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.design-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    position: relative;
}

.design-card.featured {
    border: 3px solid var(--secondary-gold);
}

.design-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.design-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.design-badge.premium {
    background: var(--gradient-gold);
    color: var(--text-dark);
}

.design-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.design-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition-slow);
}

.design-card:hover .design-image img {
    transform: scale(1.1);
}

.design-content {
    padding: 35px;
}

.design-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.design-content > p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.design-features {
    margin-bottom: 30px;
}

.design-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.design-features li:last-child {
    border-bottom: none;
}

.design-features i {
    color: var(--secondary-gold);
    font-size: 16px;
}

.design-actions {
    display: flex;
    gap: 15px;
}

.design-actions .btn {
    flex: 1;
}

/* ==========================================
   MATERIALS SECTION
   ========================================== */

.materials-section {
    background: var(--bg-cream);
}

.materials-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.materials-visual {
    position: relative;
}

.materials-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.material-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.material-badge i {
    font-size: 32px;
    color: var(--secondary-gold);
}

.material-badge span {
    font-weight: 700;
    font-size: 16px;
}

.materials-content h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.materials-content > p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.benefit-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 22px;
    color: white;
}

.benefit-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.benefit-text p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.specifications {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.specifications h4 {
    font-size: 22px;
    margin-bottom: 20px;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.spec-item i {
    font-size: 24px;
    color: var(--secondary-gold);
    margin-top: 5px;
}

.spec-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 3px;
}

.spec-item p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ==========================================
   PROCESS SECTION
   ========================================== */

.process-section {
    background: white;
}

.process-steps-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.process-step-compact {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-light);
    transition: var(--transition-base);
    position: relative;
}

.process-step-compact:hover {
    border-color: var(--secondary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-icon-box {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 15px;
}

.step-icon-box i {
    font-size: 28px;
    color: white;
}

.step-title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.step-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.step-image-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-base);
}

.step-image-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.step-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--text-dark);
}

.step-checklist i {
    color: var(--secondary-gold);
    font-size: 12px;
}

.process-cta {
    margin-top: 40px;
}

.cta-box {
    background: var(--gradient-primary);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-box h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* ==========================================
   PROJECTS SECTION
   ========================================== */

.projects-section {
    background: var(--bg-light);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 35px;
}

.project-album {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.project-album:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.album-cover {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-album:hover .album-cover img {
    transform: scale(1.15);
}

.album-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.album-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-album:hover .album-overlay {
    opacity: 1;
}

.view-album-btn {
    background: var(--secondary-gold);
    color: var(--text-dark);
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 10px;
}

.view-album-btn:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
}

.album-info {
    padding: 25px;
}

.album-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.album-info p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.album-info i {
    color: var(--secondary-gold);
}

.album-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 14px;
    background: var(--bg-cream);
    color: var(--primary-green);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* ==========================================
   ✅ VIDEO GALLERY SECTION
   ========================================== */

.video-gallery-section {
    background: white;
    padding: 70px 0;
}

.video-gallery-wrapper {
    position: relative;
    margin-bottom: 50px;
    padding: 0 80px;
}

/* Navigation Arrows */
.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-base);
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

.gallery-nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.gallery-nav-btn.prev {
    left: 0;
}

.gallery-nav-btn.next {
    right: 0;
}

/* Video Gallery Container */
.video-gallery-container {
    overflow: hidden;
    padding: 10px 0;
}

.video-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Video Card */
/* ✅ ENHANCED: Better click indication */
.video-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    cursor: pointer;
    position: relative; /* ✅ ADD THIS */
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* ✅ ADD THIS: External link indicator */
.video-card::after {
    content: '\f35d'; /* Font Awesome external link icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: var(--transition-base);
    z-index: 5;
}

.video-card:hover::after {
    opacity: 1;
}

/* Video Thumbnail */
.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #1a3a1b 0%, #2c5f2d 100%);
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Play Overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    opacity: 0;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--secondary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
}

.video-card:hover .play-button {
    background: var(--gold-light);
    transform: scale(1.2);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.play-button i {
    font-size: 32px;
    color: var(--text-dark);
    margin-left: 5px; /* Optical alignment */
}

/* Video Duration Badge */
.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Video Info */
.video-info {
    padding: 20px;
    background: white;
}

.video-info h4 {
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.4;
    
    /* Modern text truncation with fallback */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2; /* ✅ Standard property for compatibility */
    overflow: hidden;
    
    /* Ensure consistent height for 2 lines */
    min-height: 48px;
    max-height: 48px;
}

/* Fallback for browsers that don't support line-clamp */
@supports not (line-clamp: 2) {
    .video-info h4 {
        display: block;
        max-height: 48px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.video-info p {
    color: var(--text-gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-info i {
    color: var(--secondary-gold);
    font-size: 12px;
}

/* Gallery Pagination Dots */
.gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    padding: 0;
}

.pagination-dot.active {
    background: var(--primary-green);
    transform: scale(1.3);
}

.pagination-dot:hover {
    background: var(--primary-light);
    transform: scale(1.2);
}

/* Video CTA */
.video-cta {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ==========================================
   RESPONSIVE - VIDEO GALLERY
   ========================================== */

@media (max-width: 1024px) {
    .video-gallery-wrapper {
        padding: 0 70px;
    }

    .video-card {
        flex: 0 0 calc(50% - 15px);
    }

    .gallery-nav-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .gallery-nav-btn.prev {
        left: 0;
    }

    .gallery-nav-btn.next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .video-gallery-section {
        padding: 50px 0;
    }

    .video-gallery-wrapper {
        padding: 0 60px;
    }

    .video-card {
        flex: 0 0 calc(100% - 10px);
    }

    .gallery-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .gallery-nav-btn.prev {
        left: 5px;
    }

    .gallery-nav-btn.next {
        right: 5px;
    }

    .play-button {
        width: 65px;
        height: 65px;
    }

    .play-button i {
        font-size: 26px;
    }

    .video-grid {
        gap: 20px;
    }

    .video-info h4 {
        font-size: 16px;
    }

    .video-cta {
        flex-direction: column;
    }

    .video-modal-info {
        padding: 20px;
    }

    .video-modal-info h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .video-gallery-wrapper {
        padding: 0 50px;
    }

    .video-info {
        padding: 15px;
    }

    .video-duration {
        font-size: 12px;
        padding: 4px 8px;
    }

    .modal-video-container {
        border-radius: 10px;
    }

    .modal-video-container .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .gallery-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .gallery-nav-btn.prev {
        left: 0;
    }

    .gallery-nav-btn.next {
        right: 0;
    }
}

/* Smooth scrolling for video grid */
@media (prefers-reduced-motion: reduce) {
    .video-grid {
        transition: none;
    }
}

/* ==========================================
   ✅ NEW: FAQ SECTION
   ========================================== */

.faq-section {
    background: var(--bg-light);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto 50px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 28px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
}

.faq-question:hover {
    background: var(--bg-cream);
}

.faq-item.active .faq-question {
    background: var(--bg-cream);
    border-bottom: 2px solid var(--border-light);
}

.faq-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 20px;
    color: white;
}

.faq-text {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-heading);
    line-height: 1.4;
}

.faq-badge {
    padding: 5px 12px;
    background: var(--secondary-gold);
    color: var(--text-dark);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.faq-toggle i {
    font-size: 14px;
    color: white;
    transition: var(--transition-base);
}

.faq-item.active .faq-toggle {
    background: var(--secondary-gold);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 20px 28px 28px 88px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    margin: 15px 0;
    padding-left: 0;
}

.faq-answer ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-answer ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-gold);
    font-weight: 700;
}

.faq-answer strong {
    color: var(--primary-green);
    font-weight: 700;
}

/* FAQ CTA */
.faq-cta {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.faq-cta-inner h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.faq-cta-inner p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.faq-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   ORDER SECTION
   ========================================== */

.order-section {
    background: var(--gradient-primary);
    color: white;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.order-info .section-subtitle {
    color: var(--secondary-gold);
}

.order-info .section-title {
    color: white;
    margin-bottom: 20px;
}

.order-info > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.order-steps {
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-gold);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h4 {
    color: white;
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    opacity: 0.9;
    line-height: 1.6;
}

.order-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit i {
    font-size: 24px;
    color: var(--secondary-gold);
}

.benefit span {
    font-weight: 600;
}

.qr-code-section {
    text-align: center;
}

.qr-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 30px;
}

.qr-code {
    width: 300px;
    height: 300px;
    margin: 0 auto 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.qr-code img {
    width: 100%;
    height: 100%;
}

.qr-instruction {
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.qr-instruction i {
    color: var(--primary-green);
    font-size: 20px;
}

.alternative-order {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.alternative-order p {
    margin-bottom: 20px;
    font-weight: 600;
}

.alternative-order .btn {
    display: flex;
    margin-bottom: 15px;
}

.alternative-order .btn:last-child {
    margin-bottom: 0;
}

/* ==========================================
   ✅ ENHANCED CONTACT SECTION - COMPACT
   ========================================== */

.contact-section {
    background: var(--bg-light);
    padding: 60px 0; /* Reduced from 80px */
}

.contact-grid-compact {
    max-width: 1100px;
    margin: 0 auto;
}

/* Contact Info Row - Horizontal Layout */
.contact-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.info-card-compact {
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-align: center;
    border-top: 3px solid var(--secondary-gold);
}

.info-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon-compact {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon-compact i {
    font-size: 26px;
    color: white;
}

.info-content-compact h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-content-compact p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.link-btn-compact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-base);
}

.link-btn-compact:hover {
    color: var(--secondary-gold);
    gap: 10px;
}

/* Contact Actions Bar */
.contact-actions-bar {
    background: white;
    padding: 30px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.action-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.action-icon i {
    font-size: 22px;
    color: var(--text-dark);
}

.action-content {
    flex: 1;
}

.action-content h5 {
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.action-content p {
    font-size: 13px;
    color: var(--text-gray);
}

.action-btn {
    padding: 10px 20px;
    background: var(--whatsapp-green);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
    white-space: nowrap;
}

.action-btn:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
}

.action-btn-outline {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.action-btn-outline:hover {
    background: var(--primary-green);
    color: white;
}

.action-divider {
    width: 2px;
    height: 60px;
    background: var(--border-light);
}

/* Social Section Compact */
.social-section-compact {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
    padding: 35px 40px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 30px;
}

.social-section-compact h4 {
    font-size: 24px;
    color: white;
    margin-bottom: 8px;
}

.social-section-compact > p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 25px;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-btn-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    transition: var(--transition-base);
    min-width: 110px;
}

.social-btn-large:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-gold);
    background: rgba(255, 255, 255, 0.15);
}

.social-btn-large i {
    font-size: 28px;
}

.social-btn-large span {
    font-size: 13px;
    font-weight: 600;
}

.social-btn-large.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-btn-large.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    border-color: #bc1888;
}

.social-btn-large.youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
}

.social-btn-large.whatsapp:hover {
    background: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
}

.social-handle-large {
    color: var(--secondary-gold);
    font-weight: 600;
    font-size: 16px;
}

/* Map Section Compact */
.map-section-compact {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.map-section-compact h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-section-compact h4 i {
    color: var(--secondary-gold);
    font-size: 24px;
}

.map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

/* ==========================================
   RESPONSIVE - CONTACT COMPACT
   ========================================== */

@media (max-width: 1024px) {
    .contact-info-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-actions-bar {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }

    .action-item {
        width: 100%;
    }

    .action-divider {
        width: 100%;
        height: 2px;
    }

    .social-links-large {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-info-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-card-compact {
        padding: 20px 15px;
    }

    .contact-actions-bar {
        padding: 20px;
    }

    .action-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }

    .social-section-compact {
        padding: 25px 20px;
    }

    .social-links-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .social-btn-large {
        padding: 15px;
        min-width: auto;
    }

    .map-section-compact {
        padding: 20px;
    }

    .map-wrapper iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .info-icon-compact {
        width: 50px;
        height: 50px;
    }

    .info-icon-compact i {
        font-size: 22px;
    }

    .contact-actions-bar {
        gap: 15px;
    }

    .action-icon {
        width: 45px;
        height: 45px;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   CANDID GALLERY SECTION
   ========================================== */

.candid-gallery-section {
    background: var(--bg-cream);
    padding: 70px 0;
}

/* Gallery Filter Tabs */
.gallery-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-filter-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery-filter-tab:hover,
.gallery-filter-tab.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.gallery-filter-tab i {
    font-size: 16px;
}

/* Masonry Gallery Grid */
.masonry-gallery {
    column-count: 4;
    column-gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    break-inside: avoid;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-base);
    background: white;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28, 47, 28, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
    border-radius: 12px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-view-btn {
    width: 60px;
    height: 60px;
    background: var(--secondary-gold);
    border: none;
    border-radius: 50%;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-view-btn:hover {
    background: var(--gold-light);
    transform: scale(1.2) rotate(90deg);
}

/* Load More Button */
.gallery-load-more {
    text-align: center;
}

/* Hidden items (for load more functionality) */
.gallery-item.hidden {
    display: none;
}

/* Fade in animation for new items */
.gallery-item.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE - GALLERY
   ========================================== */

@media (max-width: 1024px) {
    .masonry-gallery {
        column-count: 3;
        column-gap: 15px;
    }

    .gallery-item {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .candid-gallery-section {
        padding: 50px 0;
    }

    .masonry-gallery {
        column-count: 2;
        column-gap: 12px;
    }

    .gallery-item {
        margin-bottom: 12px;
    }

    .gallery-filter-tabs {
        gap: 8px;
    }

    .gallery-filter-tab {
        padding: 10px 18px;
        font-size: 14px;
    }

    .gallery-view-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .masonry-gallery {
        column-count: 1;
    }

    .gallery-filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .gallery-filter-tab {
        flex-shrink: 0;
    }
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.footer-top {
    padding-bottom: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

/* ✅ Footer logo image */
.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Keep existing footer-logo i if needed */
.footer-logo i {
    font-size: 42px;
    color: var(--secondary-gold);
}

.footer-brand {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.footer-brand sup {
    font-size: 10px;
}

.footer-tagline {
    display: block;
    font-size: 13px;
    color: var(--secondary-gold);
    font-family: var(--font-heading);
}

.footer-desc {
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-values {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-values span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.footer-values i {
    color: var(--secondary-gold);
}

.footer-col h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--secondary-gold);
    padding-left: 5px;
}

.footer-links i {
    font-size: 10px;
    color: var(--secondary-gold);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact i {
    color: var(--secondary-gold);
    font-size: 18px;
    margin-top: 3px;
}

.footer-contact a:hover {
    color: var(--secondary-gold);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--secondary-gold);
    color: var(--text-dark);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links-bottom {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links-bottom a:hover {
    color: var(--secondary-gold);
}

/* ==========================================
   ✅ WHATSAPP CHAT WIDGET - MOBILE OPTIMIZED
   ========================================== */

.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

/* ==========================================
   Toggle Button
   ========================================== */

.whatsapp-toggle {
    width: 65px;
    height: 65px;
    background: var(--whatsapp-green);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
    position: relative;
}

.whatsapp-toggle:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.1);
}

.whatsapp-toggle i {
    font-size: 32px;
    color: white;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #ff3b30;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid white;
    animation: bounce 2s infinite;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--whatsapp-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ==========================================
   Chat Box - Desktop
   ========================================== */

.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-chat-box.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

/* ==========================================
   Chat Header
   ========================================== */

.chat-header {
    background: var(--gradient-primary);
    padding: 18px 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-avatar i {
    font-size: 22px;
    color: var(--primary-green);
}

.chat-info {
    flex: 1;
    min-width: 0;
}

.chat-info h4 {
    color: white;
    font-size: 15px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    flex-shrink: 0;
}

.status-dot.online {
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-close {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--transition-base);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chat-close i {
    font-size: 16px;
}

/* ==========================================
   Chat Messages
   ========================================== */

.chat-messages {
    padding: 20px;
    max-height: 200px;
    overflow-y: auto;
    background: #f5f5f5;
}

.chat-message {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar i {
    font-size: 14px;
    color: white;
}

.message-bubble {
    background: white;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 0;
}

.message-bubble p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 6px;
    color: var(--text-dark);
    word-wrap: break-word;
}

.message-bubble p:last-of-type {
    margin-bottom: 0;
}

.message-time {
    font-size: 10px;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

/* ==========================================
   Quick Actions
   ========================================== */

.chat-quick-actions {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: white;
    border-top: 1px solid var(--border-light);
}

.quick-btn {
    padding: 12px 10px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
}

.quick-btn:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.quick-btn i {
    font-size: 18px;
    color: var(--primary-green);
}

.quick-btn:hover i {
    color: white;
}

.quick-btn span {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}

/* ==========================================
   Chat CTA
   ========================================== */

.chat-cta {
    padding: 15px;
    background: white;
    border-radius: 0 0 20px 20px;
}

.btn-chat-whatsapp {
    width: 100%;
    background: var(--whatsapp-green);
    color: white;
    padding: 14px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.btn-chat-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-chat-whatsapp i {
    font-size: 18px;
}

/* ==========================================
   MOBILE OPTIMIZATIONS (max-width: 768px)
   ========================================== */

@media (max-width: 768px) {
    
    /* Widget position - above mobile action bar */
    .whatsapp-widget {
        bottom: 85px;
        right: 15px;
    }

    /* Toggle button - smaller */
    .whatsapp-toggle {
        width: 58px;
        height: 58px;
    }

    .whatsapp-toggle i {
        font-size: 28px;
    }

    .notification-badge {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }

    /* Chat Box - Full width on mobile */
    .whatsapp-chat-box {
        position: fixed;
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
        max-height: 80vh;
        display: flex;
        flex-direction: column;
    }

    .whatsapp-chat-box.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* Header - slightly larger */
    .chat-header {
        padding: 16px 15px;
        border-radius: 20px 20px 0 0;
        flex-shrink: 0;
    }

    .chat-avatar {
        width: 42px;
        height: 42px;
    }

    .chat-avatar i {
        font-size: 20px;
    }

    .chat-info h4 {
        font-size: 14px;
    }

    .status {
        font-size: 11px;
    }

    /* Messages - scrollable area */
    .chat-messages {
        padding: 15px;
        max-height: none;
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .message-avatar {
        width: 30px;
        height: 30px;
    }

    .message-avatar i {
        font-size: 13px;
    }

    .message-bubble {
        padding: 10px 12px;
    }

    .message-bubble p {
        font-size: 14px;
    }

    /* Quick Actions - 2x2 grid */
    .chat-quick-actions {
        padding: 12px;
        gap: 8px;
        flex-shrink: 0;
    }

    .quick-btn {
        padding: 14px 8px;
        gap: 8px;
    }

    .quick-btn i {
        font-size: 20px;
    }

    .quick-btn span {
        font-size: 12px;
    }

    /* CTA - larger touch target */
    .chat-cta {
        padding: 12px 15px 20px;
        flex-shrink: 0;
    }

    .btn-chat-whatsapp {
        padding: 16px;
        font-size: 15px;
        min-height: 52px;
    }

    .btn-chat-whatsapp i {
        font-size: 20px;
    }

    /* Add backdrop overlay when chat is open */
    .whatsapp-chat-box.active::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* ==========================================
   SMALL MOBILE (max-width: 480px)
   ========================================== */

@media (max-width: 480px) {
    
    .whatsapp-widget {
        bottom: 80px;
        right: 10px;
    }

    .whatsapp-toggle {
        width: 55px;
        height: 55px;
    }

    .whatsapp-toggle i {
        font-size: 26px;
    }

    .chat-header {
        padding: 14px 12px;
    }

    .chat-avatar {
        width: 38px;
        height: 38px;
    }

    .chat-info h4 {
        font-size: 13px;
    }

    .chat-quick-actions {
        padding: 10px;
        gap: 8px;
    }

    .quick-btn {
        padding: 12px 6px;
    }

    .quick-btn span {
        font-size: 11px;
    }

    .chat-cta {
        padding: 10px 12px 16px;
    }

    .btn-chat-whatsapp {
        padding: 14px;
        font-size: 14px;
    }
}

/* ==========================================
   LANDSCAPE MODE (Mobile Horizontal)
   ========================================== */

@media (max-width: 768px) and (orientation: landscape) {
    
    .whatsapp-chat-box {
        max-height: 90vh;
    }

    .chat-messages {
        max-height: 120px;
    }
}

/* ==========================================
   TABLET ADJUSTMENTS (768px - 1024px)
   ========================================== */

@media (min-width: 768px) and (max-width: 1024px) {
    
    .whatsapp-widget {
        bottom: 30px;
        right: 20px;
    }

    .whatsapp-chat-box {
        width: 360px;
    }

    .chat-quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   FLOATING BUTTONS
   ========================================== */

.floating-buttons {
    position: fixed;
    bottom: 120px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.scroll-top {
    background: var(--primary-green);
    color: white;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    transition: var(--transition-base);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* ==========================================
   MODALS
   ========================================== */

/* Album Modal */
.album-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    overflow-y: auto;
}

.album-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    inset: 0;
}

.modal-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    z-index: 10001;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10002;
    transition: var(--transition-base);
}

.modal-close:hover {
    background: var(--secondary-gold);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-content {
    padding: 60px 40px 40px;
}

.modal-header {
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-gray);
    font-size: 16px;
}

.album-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.album-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-base);
}

.album-gallery img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* Image Lightbox Modal */
.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-modal.active {
    display: flex;
}

.image-modal .modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    width: auto;
    height: auto;
    background: transparent;
    font-size: 50px;
    color: white;
    border-radius: 0;
}

.image-modal .modal-close:hover {
    color: var(--secondary-gold);
    transform: rotate(90deg);
}

.image-modal .modal-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--shadow-xl);
    padding: 0;
}

.modal-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    max-width: 80%;
    text-align: center;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-base);
}

.modal-nav:hover {
    background: var(--secondary-gold);
    color: var(--text-dark);
}

.modal-nav.prev {
    left: 30px;
}

.modal-nav.next {
    right: 30px;
}

.modal-counter {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .section-title {
        font-size: 40px;
    }
    
    .hero-title {
        font-size: 52px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-grid,
    .order-grid,
    .contact-grid,
    .materials-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .designs-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .process-steps-compact {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    /* WhatsApp Widget Mobile */
    .whatsapp-chat-box {
        width: calc(100vw - 40px);
        right: 50%;
        transform: translateX(50%) scale(0.8) translateY(20px);
    }

    .whatsapp-chat-box.active {
        transform: translateX(50%) scale(1) translateY(0);
    }

    .wa-cta-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transition: var(--transition-base);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-actions .btn-nav {
        display: none;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }

    .hero-stats-wrapper {
        padding: 30px 0;
        margin-top: 40px; /* ✅ Responsive spacing */
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .stat-icon i {
        font-size: 22px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 12px;
    }

    .scroll-indicator {
        margin-top: 60px; /* ✅ Responsive spacing */
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .benefits-grid,
    .spec-grid,
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .process-steps-compact {
        grid-template-columns: 1fr;
    }

    .step-image-grid {
        grid-template-columns: 1fr;
    }

    .album-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* FAQ Mobile */
    .faq-item.active .faq-answer {
        padding: 20px 20px 20px 20px;
    }

    .faq-icon {
        display: none;
    }

    .faq-text {
        font-size: 15px;
    }

    .faq-cta {
        padding: 35px 25px;
    }

    .faq-cta-buttons {
        flex-direction: column;
    }

    /* WhatsApp Widget */
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-toggle {
        width: 60px;
        height: 60px;
    }

    .whatsapp-toggle i {
        font-size: 28px;
    }

    .chat-quick-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .design-content {
        padding: 25px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .modal-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .modal-nav.prev {
        left: 10px;
    }
    
    .modal-nav.next {
        right: 10px;
    }

    .album-gallery {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 40px 20px 20px;
    }

    .faq-question {
        padding: 18px 15px;
    }

    .wa-cta-box {
        padding: 25px 20px;
    }

    .wa-cta-icon {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .wa-cta-content h3 {
        font-size: 20px;
    }

    .whatsapp-chat-box {
        bottom: 70px;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Selection styling */
::selection {
    background: var(--secondary-gold);
    color: var(--text-dark);
}

::-moz-selection {
    background: var(--secondary-gold);
    color: var(--text-dark);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ==========================================
   ✅ COMPREHENSIVE RESPONSIVE FIXES - ALL DEVICES
   ========================================== */

/* ==========================================
   GLOBAL RESPONSIVE IMPROVEMENTS
   ========================================== */

/* Prevent horizontal scroll on all devices */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Ensure all sections don't overflow */
section {
    overflow-x: hidden;
}

/* Container responsive padding */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Better image handling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   MOBILE BOTTOM ACTION BAR
   ========================================== */

.mobile-action-bar {
    display: none; /* Hidden on desktop */
}

@media (max-width: 768px) {
    .mobile-action-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        z-index: 998;
    }

    .mobile-action-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        color: var(--text-dark);
        font-size: 12px;
        font-weight: 600;
        padding: 5px 15px;
        transition: var(--transition-base);
    }

    .mobile-action-btn i {
        font-size: 22px;
        color: var(--primary-green);
    }

    .mobile-action-btn.whatsapp i {
        color: var(--whatsapp-green);
    }

    .mobile-action-btn:active {
        transform: scale(0.95);
    }

    /* Add bottom padding to body to prevent content hiding behind bar */
    body {
        padding-bottom: 70px;
    }
}

/* ==========================================
   TABLET OPTIMIZATIONS (768px - 1024px)
   ========================================== */

@media (min-width: 768px) and (max-width: 1024px) {
    
    /* Section spacing */
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 16px;
    }

    /* Hero adjustments */
    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    /* Grid adjustments */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-grid,
    .order-grid,
    .contact-grid,
    .materials-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Design cards */
    .designs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    /* Video gallery */
    .video-card {
        flex: 0 0 calc(50% - 15px);
    }

    /* Process steps */
    .process-steps-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Projects grid */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Results grid */
    .results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Contact info row */
    .contact-info-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Contact actions bar - stack vertically */
    .contact-actions-bar {
        flex-direction: column;
        gap: 20px;
    }

    .action-divider {
        width: 100%;
        height: 2px;
    }

    /* FAQ items */
    .faq-accordion {
        max-width: 100%;
    }

    /* Candid gallery */
    .masonry-gallery {
        column-count: 3;
    }
}

/* ==========================================
   MOBILE OPTIMIZATIONS (max-width: 768px)
   ========================================== */

@media (max-width: 768px) {
    
    /* Global */
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .section-description {
        font-size: 15px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }

    /* Hero section */
    .hero {
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-title sup {
        font-size: 14px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-values {
        flex-direction: column;
        gap: 15px;
    }

    .value-divider {
        width: 100%;
        height: 2px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Stats */
    .hero-stats-wrapper {
        padding: 25px 0;
        margin-top: 30px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: white;
        flex-direction: column;
        padding: 25px 20px;
        gap: 15px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-actions .btn-nav {
        display: none;
    }

    /* About section */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .image-wrapper img {
        height: 400px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    /* Designs section */
    .designs-grid {
        grid-template-columns: 1fr;
    }

    .design-content {
        padding: 25px 20px;
    }

    .design-actions {
        flex-direction: column;
    }

    /* Materials section */
    .materials-showcase {
        grid-template-columns: 1fr;
    }

    .materials-visual img {
        height: 350px;
    }

    .benefits-grid,
    .spec-grid {
        grid-template-columns: 1fr;
    }

    /* Process section */
    .process-steps-compact {
        grid-template-columns: 1fr;
    }

    .step-image-grid {
        grid-template-columns: 1fr;
    }

    .step-image-grid img {
        height: 200px;
    }

    /* Projects section */
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-filter {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .filter-btn {
        flex-shrink: 0;
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Results/Video gallery */
    .video-gallery-wrapper {
        padding: 0 50px;
    }

    .video-card {
        flex: 0 0 calc(100% - 10px);
    }

    .gallery-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .video-cta {
        flex-direction: column;
    }

    /* Results Before/After */
    .results-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .before-after-container {
        height: 250px;
    }

    /* FAQ section */
    .faq-question {
        padding: 15px;
        font-size: 15px;
    }

    .faq-icon {
        display: none; /* Hide icon on mobile to save space */
    }

    .faq-item.active .faq-answer {
        padding: 15px;
    }

    .faq-cta {
        padding: 30px 20px;
    }

    .faq-cta-buttons {
        flex-direction: column;
    }

    /* Contact section */
    .contact-info-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-actions-bar {
        padding: 20px 15px;
        flex-direction: column;
        gap: 15px;
    }

    .action-item {
        flex-direction: column;
        text-align: center;
    }

    .action-divider {
        width: 100%;
        height: 2px;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }

    .social-section-compact {
        padding: 25px 20px;
    }

    .social-links-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .social-btn-large {
        padding: 15px;
    }

    .map-section-compact {
        padding: 20px 15px;
    }

    .map-wrapper iframe {
        height: 250px;
    }

    /* Candid gallery */
    .candid-gallery-section {
        padding: 40px 0;
    }

    .masonry-gallery {
        column-count: 2;
        column-gap: 12px;
    }

    .gallery-item {
        margin-bottom: 12px;
    }

    .gallery-filter-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-filter-tab {
        flex-shrink: 0;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* WhatsApp widget adjustments */
    .whatsapp-widget {
        bottom: 80px; /* Above mobile action bar */
    }

    .whatsapp-toggle {
        width: 55px;
        height: 55px;
    }

    .whatsapp-chat-box {
        bottom: 145px;
        right: 10px;
        width: calc(100vw - 20px);
        max-width: 380px;
    }

    .floating-buttons {
        bottom: 85px; /* Above mobile action bar */
    }

    /* Modals */
    .album-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .modal-content {
        padding: 40px 15px 15px;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .modal-nav.prev {
        left: 10px;
    }

    .modal-nav.next {
        right: 10px;
    }
}

/* ==========================================
   SMALL MOBILE (max-width: 480px)
   ========================================== */

@media (max-width: 480px) {
    
    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 24px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 18px 15px;
    }

    .video-gallery-wrapper {
        padding: 0 40px;
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 25px 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }

    .masonry-gallery {
        column-count: 1;
    }

    .album-gallery {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   TOUCH DEVICE OPTIMIZATIONS
   ========================================== */

/* Better tap targets */
@media (max-width: 768px) {
    
    /* Minimum tap target size */
    a, button, .btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Prevent text selection on buttons */
    button, .btn {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }

    /* Remove hover effects on touch devices */
    @media (hover: none) {
        .btn:hover,
        .video-card:hover,
        .project-album:hover,
        .design-card:hover {
            transform: none;
        }
    }

    /* Prevent zoom on input focus (iOS) */
    input, select, textarea {
        font-size: 16px !important;
    }
}

/* ==========================================
   LANDSCAPE MODE FIXES (Mobile Horizontal)
   ========================================== */

@media (max-width: 768px) and (orientation: landscape) {
    
    .hero {
        padding: 80px 0 30px;
        min-height: auto;
    }

    .hero-stats-wrapper {
        margin-top: 20px;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 24px;
    }

    section {
        padding: 40px 0;
    }
}

/* ==========================================
   PRINT STYLES (Bonus)
   ========================================== */

@media print {
    
    .navbar,
    .whatsapp-widget,
    .floating-buttons,
    .mobile-action-bar,
    .scroll-indicator,
    .hero-buttons,
    .gallery-nav-btn,
    .filter-btn {
        display: none !important;
    }

    body {
        padding-bottom: 0;
    }

    section {
        page-break-inside: avoid;
    }
}