/* 
 * ===============================================
 * WOOKS - MOBILE FIRST DESIGN FOR iOS OPTIMIZATION
 * ===============================================
 * 
 * IMPORTANT: This design is MOBILE-FIRST and optimized for iOS devices
 * All styles are designed primarily for mobile phones, then enhanced for larger screens
 * 
 * COLOR PALETTE: Sophisticated Warm Tones
 * - Primary: #546387 (Deep Blue-Purple)
 * - Secondary: #827E63 (Warm Beige-Brown)
 * - Accent: #A4623E (Terracotta Orange)
 * - Light: #F2EDDE (Cream Beige)
 * 
 * Key iOS optimizations:
 * - Touch-friendly button sizes (minimum 44px)
 * - iOS Safari viewport handling
 * - iOS-specific font rendering
 * - iOS scroll behavior
 * - iOS touch interactions
 * 
 * REMEMBER: Always think mobile-first, iOS-optimized when making changes!
 */

/* Reset and Base Styles - Mobile First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent; /* iOS tap highlight removal */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    /* iOS Safari optimizations */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* iOS scroll behavior */
    -webkit-overflow-scrolling: touch;
    /* iOS viewport handling */
    position: relative;
}

/* Mobile-first container - starts with mobile padding */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Mobile-first: smaller padding on mobile */
}

/* iOS-optimized: Larger padding on larger screens */
@media (min-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Header Styles - Mobile First for iOS - Liquid Glass Theme with Parallax */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98); /* Always white background */
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px); /* iOS Safari support */
    border-bottom: 1px solid rgba(130, 126, 99, 0.2); /* Border */
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(84, 99, 135, 0.15);
    /* iOS-specific optimizations */
    -webkit-transform: translateZ(0); /* Hardware acceleration */
    transform: translateZ(0);
    /* Parallax effect */
    will-change: transform, background, box-shadow;
}

/* Header scrolled state - stays white */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 4px 20px rgba(84, 99, 135, 0.15);
    border-bottom: 1px solid rgba(130, 126, 99, 0.2);
}

/* Header overlay removed for solid white background */
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.header.scrolled::before {
    opacity: 0;
}

/* Mobile-first navbar - optimized for iOS touch */
.navbar {
    padding: 0.8rem 0; /* Smaller padding on mobile */
}

/* iOS-optimized: Larger padding on larger screens */
@media (min-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
}

/* Mobile-first nav container with Parallax depth */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Mobile-first: smaller padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Parallax depth effect on nav container */
.header.scrolled .nav-container {
    padding: 0.3rem 15px;
}

/* iOS-optimized: Larger padding on larger screens */
@media (min-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
}

.logo h1 {
    color: #546387; /* Dark text on light glass header */
    font-size: 2rem;
    font-weight: 700;
}

/* Mobile-first logo sizing - optimized for iOS with Parallax */
.logo-img {
    height: 60px; /* 50% larger: 40px * 1.5 = 60px */
    width: auto;
    /* iOS optimizations */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Parallax effect */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, filter;
}

/* Logo parallax on scroll */
.header.scrolled .logo-img {
    transform: scale(0.85) translateY(0);
    filter: drop-shadow(0 2px 8px rgba(84, 99, 135, 0.2));
}

/* iOS-optimized: Larger logo on larger screens */
@media (min-width: 768px) {
    .logo-img {
        height: 75px; /* 50% larger: 50px * 1.5 = 75px */
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #546387; /* Dark text on light glass header */
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: rgba(255, 255, 255, 0.2); /* Glass background */
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin: 0 0.2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* Parallax effect */
    will-change: transform, box-shadow;
}

.nav-link:hover {
    color: #827E63; /* Warm beige on hover */
    background: rgba(130, 126, 99, 0.2); /* Warm beige background on hover */
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 16px rgba(130, 126, 99, 0.35);
}

/* Parallax effect on scroll for nav links */
.header.scrolled .nav-link {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(130, 126, 99, 0.2);
}

.header.scrolled .nav-link:hover {
    background: rgba(130, 126, 99, 0.25);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(130, 126, 99, 0.4);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #827E63; /* Olive green underline */
    transition: width 0.3s ease;
}

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

/* Mobile-first hamburger menu - iOS optimized with Parallax */
.hamburger {
    display: flex; /* Always visible on mobile */
    flex-direction: column;
    cursor: pointer;
    /* iOS touch optimization */
    padding: 8px; /* Larger touch target for iOS */
    -webkit-tap-highlight-color: transparent;
    /* Parallax effect */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    position: relative;
    z-index: 10;
}

.hamburger:hover {
    transform: scale(1.1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #546387; /* Dark bars on light glass header */
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* iOS smooth transitions */
    -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(84, 99, 135, 0.2);
}

/* Parallax hover effect on hamburger bars */
.hamburger:hover .bar:nth-child(1) {
    transform: translateX(-3px);
}

.hamburger:hover .bar:nth-child(2) {
    transform: translateX(0);
}

.hamburger:hover .bar:nth-child(3) {
    transform: translateX(3px);
}

/* Scrolled state for hamburger */
.header.scrolled .bar {
    background-color: #827E63;
    box-shadow: 0 2px 6px rgba(130, 126, 99, 0.3);
}

/* iOS-optimized: Hide hamburger on larger screens */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

/* Mobile-first Hero Section - iOS optimized - Liquid Glass Theme */
.hero {
    min-height: 70vh;
    min-height: 70dvh; /* iOS dynamic viewport height */
    display: flex;
    flex-direction: column; /* Mobile-first: stack vertically */
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F2EDDE 0%, #ffffff 50%, #F2EDDE 100%); /* White gradient */
    color: #546387; /* Dark text on light background */
    padding: 60px 0 30px; /* Mobile-first: smaller padding */
    position: relative;
    overflow: hidden;
    /* iOS optimizations */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Liquid Glass overlay effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(130, 126, 99, 0.1) 0%, 
        rgba(130, 126, 99, 0.05) 50%, 
        rgba(130, 126, 99, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

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

/* iOS-optimized: Horizontal layout on larger screens */
@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        padding: 100px 0 50px;
    }
}

/* Mobile-first hero content */
.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 0 15px; /* Mobile-first: smaller padding */
    text-align: left; /* Always left-aligned */
}

/* iOS-optimized: Larger padding on larger screens */
@media (min-width: 768px) {
    .hero-content {
        padding: 0 20px;
    }
}

/* Mobile-first hero title - iOS optimized */
.hero-title {
    font-size: 2.5rem; /* Mobile-first: smaller font */
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #546387 0%, #827E63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* iOS font rendering optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* iOS-optimized: Larger font on larger screens */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

/* Mobile-first hero subtitle - iOS iMessage style bubble with unified tail */
.hero-subtitle {
    font-size: 1.4rem; /* Mobile-first: larger, more prominent font */
    font-weight: 600; /* iOS style font weight */
    margin-bottom: 3rem; /* Extra space for the chat bubble tail */
    color: #ffffff; /* White text for contrast */
    text-align: left; /* Always left-aligned */
    line-height: 1.4;
    /* iOS font rendering optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* iOS iMessage bubble styling with unified tail */
    display: inline-block;
    padding: 1rem 1.5rem;
    /* Solid green background (iOS style) */
    background: linear-gradient(135deg, #6B8E3D 0%, #556B2F 50%, #7C9A3C 100%);
    /* iOS style shadow with green glow */
    box-shadow: 
        0 8px 32px rgba(107, 142, 61, 0.4),
        0 4px 16px rgba(107, 142, 61, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(85, 107, 47, 0.5);
    /* Unified bubble shape with continuous tail using mask */
    position: relative;
    /* Responsive letter spacing */
    letter-spacing: 0.01em;
    /* Message entrance animation */
    animation: messageSlideIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
}

/* Create continuous unified shape */
.hero-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #6B8E3D 0%, #556B2F 50%, #7C9A3C 100%);
    border-radius: 18px;
    /* Create tail using clip-path */
    clip-path: path('M18 0 L100% 0 L100% calc(100% - 12px) Lcalc(100% - 18px) 100% L18 100% L0 calc(100% - 12px) Z');
    z-index: -1;
    box-shadow: 
        0 8px 32px rgba(107, 142, 61, 0.4),
        0 4px 16px rgba(107, 142, 61, 0.3);
}

/* Message sliding in animation */
@keyframes messageSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    60% {
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Subtle highlight shimmer */
.hero-subtitle::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* iOS-optimized: Larger font on larger screens */
@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.9rem;
        padding: 1.2rem 2rem;
    }
    
    .hero-subtitle::before {
        border-radius: 20px;
        clip-path: path('M20 0 L100% 0 L100% calc(100% - 16px) Lcalc(100% - 20px) 100% L20 100% L0 calc(100% - 16px) Z');
    }
}

/* Mobile-first hero buttons - iOS touch optimized */
.hero-buttons {
    display: flex;
    flex-direction: column; /* Mobile-first: stack vertically */
    gap: 1rem;
    width: 100%; /* Full width on mobile */
}

/* iOS-optimized: Horizontal layout on larger screens */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        width: auto;
    }
}

/* Mobile-first buttons - iOS touch optimized */
.btn {
    padding: 14px 24px; /* Mobile-first: larger touch target */
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease; /* iOS smooth transitions */
    cursor: pointer;
    font-size: 1rem;
    /* iOS touch optimizations */
    -webkit-tap-highlight-color: transparent;
    min-height: 44px; /* iOS minimum touch target */
    min-width: 44px;
    /* iOS hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* iOS-optimized: Smaller padding on larger screens */
@media (min-width: 768px) {
    .btn {
        padding: 12px 30px;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #827E63 0%, #A4623E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(130, 126, 99, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #A4623E 0%, #A4623E 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(130, 126, 99, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #546387;
    border: 2px solid rgba(130, 126, 99, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(130, 126, 99, 0.1);
    color: #827E63;
    border-color: #827E63;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(130, 126, 99, 0.2);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.2); /* White with transparency */
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(130, 126, 99, 0.3); /* Olive border */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Liquid glass shimmer effect */
.hero-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Mobile-first Services Section - iOS optimized - Liquid Glass Theme */
.services {
    padding: 40px 0; /* Mobile-first: smaller padding */
    background: linear-gradient(135deg, #F2EDDE 0%, #ffffff 50%, #F2EDDE 100%); /* White gradient */
    position: relative;
    /* iOS optimizations */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Liquid glass overlay for services */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(130, 126, 99, 0.05) 0%, 
        rgba(130, 126, 99, 0.02) 50%, 
        rgba(130, 126, 99, 0.05) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

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

/* iOS-optimized: Larger padding on larger screens */
@media (min-width: 768px) {
    .services {
        padding: 80px 0;
    }
}

/* Mobile-first section titles - iOS optimized */
.section-title {
    text-align: center;
    font-size: 2rem; /* Mobile-first: smaller font */
    font-weight: 700;
    margin-bottom: 2rem; /* Mobile-first: smaller margin */
    background: linear-gradient(135deg, #546387 0%, #827E63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* iOS font rendering optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* iOS-optimized: Larger font and margin on larger screens */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
}

/* Mobile-first services grid - iOS optimized */
.services-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: single column */
    gap: 1.5rem; /* Mobile-first: smaller gap */
}

/* iOS-optimized: Multi-column layout on larger screens */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

/* Mobile-first service cards - iOS touch optimized */
.service-card {
    background: rgba(255, 255, 255, 0.25); /* Liquid glass background */
    padding: 1.5rem; /* Mobile-first: smaller padding */
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3); /* Glass border */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease; /* iOS smooth transitions */
    position: relative;
    overflow: hidden;
    /* iOS touch optimizations */
    -webkit-tap-highlight-color: transparent;
    /* iOS hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Liquid glass shimmer effect for service cards */
.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 4s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

/* iOS-optimized: Larger padding on larger screens */
@media (min-width: 768px) {
    .service-card {
        padding: 2rem;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(130, 126, 99, 0.2); /* Olive shadow on hover */
    border-color: rgba(130, 126, 99, 0.4); /* Brighter olive border on hover */
    background: rgba(255, 255, 255, 0.35); /* Brighter glass on hover */
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #8c3a2a; /* Brown color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #546387; /* Dark text on light glass */
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #546387; /* Dark blue-gray text */
    line-height: 1.6;
    position: relative;
    z-index: 2;
}


/* Mobile-first Products Section - iOS optimized - Liquid Glass Theme */
/* Products Section - Fluid Design */
.products {
    padding: 60px 0;
    background: linear-gradient(135deg, #F2EDDE 0%, #ffffff 50%, #F2EDDE 100%);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(130, 126, 99, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(130, 126, 99, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Temu Style Product Grid */
.products-grid-temu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding: 0 15px;
}

/* Temu Style Product Cards */
.product-card-temu {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.product-card-temu:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #827E63;
}

.product-image-temu {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #F2EDDE;
}

.product-image-temu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-temu:hover .product-image-temu img {
    transform: scale(1.05);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: #F2EDDE;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 2rem;
}

.product-badge-temu {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #827E63;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge-temu.hot {
    background: #ff4757;
}

.product-badge-temu.sale {
    background: #ff6b35;
}

.product-info-temu {
    padding: 16px;
}

.product-title-temu {
    font-size: 1rem;
    font-weight: 600;
    color: #546387;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.product-category-temu {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-rating-temu {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 0.8rem;
}

.rating-text {
    font-size: 0.8rem;
    color: #6c757d;
}

.product-price-temu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #546387;
}

.original-price {
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: line-through;
}

.discount {
    background: #ff4757;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.product-actions-temu {
    width: 100%;
}

.btn-temu-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #827E63;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
}

.btn-temu-primary:hover {
    background: #A4623E;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(130, 126, 99, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive Design for Temu Products */
@media (min-width: 768px) {
    .products {
        padding: 80px 0;
    }
    
    .products-grid-temu {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 30px;
    }
    
    .product-image-temu {
        height: 220px;
    }
}

@media (min-width: 1200px) {
    .products-grid-temu {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 0 40px;
    }
    
    .product-image-temu {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .products {
        padding: 60px 0;
    }
    
    .products-grid-temu {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }
    
    .product-image-temu {
        height: 180px;
    }
    
    .product-title-temu {
        font-size: 0.9rem;
    }
    
    .product-category-temu {
        font-size: 0.7rem;
    }
    
    .current-price {
        font-size: 1.1rem;
    }
    
    .btn-temu-primary {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .products-grid-temu {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 5px;
    }
    
    .product-image-temu {
        height: 200px;
    }
    
    .product-info-temu {
        padding: 12px;
    }
    
    .product-title-temu {
        font-size: 0.85rem;
    }
    
    .product-category-temu {
        font-size: 0.65rem;
    }
    
    .current-price {
        font-size: 1rem;
    }
    
    .btn-temu-primary {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
}

/* iOS-optimized: Larger padding on larger screens */
@media (min-width: 768px) {
    .products {
        padding: 80px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .product-image-container {
        height: 280px;
    }
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* Projects Section - Modern Design */
.projects {
    padding: 50px 0;
    background: linear-gradient(135deg, #F2EDDE 0%, #ffffff 50%, #F2EDDE 100%);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(130, 126, 99, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(130, 126, 99, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.project-showcase-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.project-visual {
    position: relative;
    height: 500px; /* Mobile-first: taller on phones */
    overflow: hidden;
}

/* iOS-optimized: Standard height on larger screens */
@media (min-width: 768px) {
    .project-visual {
        height: 400px;
    }
}

.project-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-showcase-card:hover .project-main-image {
    transform: scale(1.05);
}

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #827E63 0%, #A4623E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(130, 126, 99, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 8px 25px rgba(130, 126, 99, 0.3);
}

.project-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 50px 20px 35px; /* Mobile-first: more padding on phones */
    color: white;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

/* iOS-optimized: Standard padding on larger screens */
@media (min-width: 768px) {
    .project-overlay-content {
        padding: 40px 30px 30px;
    }
}

.project-showcase-card:hover .project-overlay-content {
    transform: translateY(0);
}

.project-category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #A4623E;
    margin-bottom: 10px;
    font-weight: 500;
}

.project-title {
    font-size: 1.5rem; /* Mobile-first: smaller font */
    font-weight: 700;
    margin-bottom: 12px; /* Mobile-first: smaller margin */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* iOS-optimized: Larger font on larger screens */
@media (min-width: 768px) {
    .project-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
}

.project-description {
    font-size: 0.9rem; /* Mobile-first: smaller font */
    line-height: 1.5; /* Mobile-first: tighter line height */
    margin-bottom: 18px; /* Mobile-first: smaller margin */
    opacity: 0.9;
}

/* iOS-optimized: Larger font on larger screens */
@media (min-width: 768px) {
    .project-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
}

.project-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.feature-item i {
    color: #827E63;
    font-size: 0.8rem;
}

.project-cta {
    background: linear-gradient(135deg, #827E63 0%, #A4623E 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(130, 126, 99, 0.3);
}

.project-cta:hover {
    background: linear-gradient(135deg, #A4623E 0%, #A4623E 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(130, 126, 99, 0.4);
}

/* Project Actions Container */
.project-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.project-download {
    background: rgba(255, 255, 255, 0.95);
    color: #546387;
    border: 2px solid #827E63;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    text-decoration: none;
    flex: 1;
    justify-content: center;
    min-width: 140px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.project-download:hover {
    background: #827E63;
    border-color: #827E63;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(130, 126, 99, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive Design for Project Actions */
@media (max-width: 768px) {
    .project-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .project-cta,
    .project-download {
        width: 100%;
        min-width: auto;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .project-actions {
        gap: 8px;
    }
    
    .project-cta,
    .project-download {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #827E63 0%, #A4623E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(130, 126, 99, 0.3);
}

.stat-content h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #827E63;
    margin-bottom: 8px;
}

.stat-content p {
    color: #546387;
    font-weight: 500;
    font-size: 1rem;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0f7a6b 100%);
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.whatsapp-btn:hover::before {
    width: 100%;
    height: 100%;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Google Forms Integration */
.form-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.form-container iframe {
    border-radius: 10px;
    border: none;
    width: 100%;
    height: 600px;
}

/* Mobile WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .form-container iframe {
        height: 500px;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .projects {
        padding: 40px 0;
    }
    
    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .project-visual {
        height: 300px;
    }
    
    .project-overlay-content {
        padding: 30px 20px 20px;
    }
    
    .project-title {
        font-size: 1.5rem;
    }
    
    .project-description {
        font-size: 0.9rem;
    }
    
    .projects-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-content h4 {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.3); /* Liquid glass background */
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4); /* Glass border */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

/* Liquid glass shimmer effect for product cards */
.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 5s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(130, 126, 99, 0.2); /* Olive shadow on hover */
    border-color: rgba(130, 126, 99, 0.4); /* Brighter olive border on hover */
    background: rgba(255, 255, 255, 0.4); /* Brighter glass on hover */
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #546387; /* Dark text on light glass */
    position: relative;
    z-index: 2;
}

.product-info p {
    color: #546387; /* Dark blue-gray text */
    margin-bottom: 1rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #827E63; /* Warm beige-brown price */
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature {
    background: rgba(130, 126, 99, 0.2); /* Warm beige background */
    color: #827E63; /* Warm beige-brown text */
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(130, 126, 99, 0.3); /* Warm beige border */
}

/* Furniture Categories */
.furniture-categories {
    margin-top: 4rem;
}

.categories-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #546387;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #F2EDDE;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.category-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #546387;
}

.category-item p {
    color: #666;
    margin-bottom: 1rem;
}

.category-count {
    background: #3498db;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Repairs Section */
/* Repairs Section - Modern Design */
.repairs {
    padding: 60px 0;
    background: linear-gradient(135deg, #F2EDDE 0%, #ffffff 50%, #F2EDDE 100%);
    position: relative;
    overflow: hidden;
}

.repairs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(130, 126, 99, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(130, 126, 99, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.repairs-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.repairs-header .section-title {
    background: linear-gradient(135deg, #546387 0%, #8c3a2a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.repairs-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.repair-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.repair-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #827E63 0%, #A4623E 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.repair-card:hover::before {
    transform: scaleX(1);
}

.repair-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.repair-card.featured {
    background: linear-gradient(135deg, rgba(130, 126, 99, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid rgba(130, 126, 99, 0.3);
}

.repair-icon {
    width: 80px;
    height: 80px;
    background: #8c3a2a; /* Brown color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(140, 58, 42, 0.3);
    transition: all 0.3s ease;
}

.repair-card:hover .repair-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(130, 126, 99, 0.4);
}

.repair-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #546387;
    margin-bottom: 15px;
}

.repair-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.repair-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.feature-tag {
    background: rgba(130, 126, 99, 0.1);
    color: #827E63;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(130, 126, 99, 0.3);
}

.repairs-process {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 25px; /* Mobile-first: smaller padding */
    margin-bottom: 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* iOS-optimized: Larger padding on larger screens */
@media (min-width: 768px) {
    .repairs-process {
        padding: 40px;
    }
}

.repairs-process h3 {
    text-align: center;
    font-size: 1.5rem; /* Mobile-first: smaller font */
    font-weight: 700;
    color: #546387;
    margin-bottom: 40px;
}

/* iOS-optimized: Larger font on larger screens */
@media (min-width: 768px) {
    .repairs-process h3 {
        font-size: 2rem;
    }
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: single column */
    gap: 20px; /* Mobile-first: smaller gap */
}

/* iOS-optimized: Multi-column layout on larger screens */
@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

.process-step {
    display: flex;
    align-items: center; /* Mobile-first: center numbers vertically */
    justify-content: center; /* Mobile-first: center content horizontally */
    flex-direction: column; /* Mobile-first: stack vertically */
    gap: 15px; /* Mobile-first: smaller gap */
    padding: 20px; /* Mobile-first: padding */
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center; /* Mobile-first: center text */
}

/* iOS-optimized: Horizontal layout on larger screens */
@media (min-width: 768px) {
    .process-step {
        flex-direction: row; /* Desktop: horizontal layout */
        align-items: flex-start; /* Desktop: align to start */
        justify-content: flex-start; /* Desktop: align to start */
        gap: 20px;
        padding: 20px;
        text-align: left; /* Desktop: left align text */
    }
}

.process-step:hover {
    background: rgba(130, 126, 99, 0.05);
    transform: translateY(-5px);
}

.step-number {
    width: 45px; /* Mobile-first: smaller size */
    height: 45px;
    background: #5B6451; /* Green color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(91, 100, 81, 0.3);
}

/* iOS-optimized: Larger on larger screens */
@media (min-width: 768px) {
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.step-content h4 {
    font-size: 1.1rem; /* Mobile-first: smaller font */
    font-weight: 700;
    color: #546387;
    margin-bottom: 8px;
}

/* iOS-optimized: Larger font on larger screens */
@media (min-width: 768px) {
    .step-content h4 {
        font-size: 1.2rem;
    }
}

.step-content p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem; /* Mobile-first: smaller font */
}

/* iOS-optimized: Larger font on larger screens */
@media (min-width: 768px) {
    .step-content p {
        font-size: 1rem;
    }
}

.repairs-cta {
    background: linear-gradient(135deg, rgba(130, 126, 99, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(130, 126, 99, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #546387;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.cta-buttons .btn i {
    font-size: 1.2rem;
}


/* Mobile-first Contact Section - iOS optimized - Black & Olive Theme */
.contact {
    padding: 40px 0; /* Mobile-first: smaller padding */
    background: linear-gradient(135deg, #F2EDDE 0%, #ffffff 50%, #F2EDDE 100%); /* Light gradient background */
    /* iOS optimizations */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* iOS-optimized: Larger padding on larger screens */
@media (min-width: 768px) {
    .contact {
        padding: 60px 0;
    }
}

/* Mobile-first contact content - iOS optimized */
.contact-content {
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: single column */
    gap: 2rem; /* Mobile-first: smaller gap */
}

/* iOS-optimized: Two-column layout on larger screens */
@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Mobile-first contact info - iOS optimized */
.contact-info h3 {
    font-size: 1.5rem; /* Mobile-first: smaller font */
    font-weight: 700;
    margin-bottom: 1.5rem; /* Mobile-first: smaller margin */
    color: #546387; /* Dark text on light background */
    /* iOS font rendering optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* iOS-optimized: Larger font and margin on larger screens */
@media (min-width: 768px) {
    .contact-info h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Mobile-first contact items - iOS optimized */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem; /* Mobile-first: smaller margin */
    font-size: 1rem; /* Mobile-first: smaller font */
    color: #546387; /* Dark text on light background */
    /* iOS touch optimization */
    min-height: 44px; /* iOS minimum touch target */
}

/* iOS-optimized: Larger font and margin on larger screens */
@media (min-width: 768px) {
    .contact-item {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }
}

/* Mobile-first contact icons - iOS touch optimized */
.contact-item i {
    width: 36px; /* Mobile-first: smaller icons */
    height: 36px;
    background: #5B6451; /* Green color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.8rem; /* Mobile-first: smaller margin */
    color: white;
    /* iOS touch optimization */
    min-width: 44px; /* iOS minimum touch target */
    min-height: 44px;
    /* iOS hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* iOS-optimized: Larger icons on larger screens */
@media (min-width: 768px) {
    .contact-item i {
        width: 40px;
        height: 40px;
        margin-right: 1rem;
    }
}

/* Mobile-first contact form - iOS touch optimized */
.contact-form {
    background: rgba(255, 255, 255, 0.9); /* Light background */
    backdrop-filter: blur(20px);
    padding: 1.5rem; /* Mobile-first: smaller padding */
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); /* Light shadow */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Light border */
    /* iOS optimizations */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* iOS-optimized: Larger padding on larger screens */
@media (min-width: 768px) {
    .contact-form {
        padding: 2rem;
    }
}

/* Mobile-first contact form title - iOS optimized */
.contact-form h3 {
    font-size: 1.3rem; /* Mobile-first: smaller font */
    font-weight: 600;
    margin-bottom: 1rem; /* Mobile-first: smaller margin */
    color: #546387; /* Dark text on light form */
    /* iOS font rendering optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* iOS-optimized: Larger font and margin on larger screens */
@media (min-width: 768px) {
    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

/* Mobile-first form groups - iOS touch optimized */
.form-group {
    margin-bottom: 1.2rem; /* Mobile-first: smaller margin */
}

/* Mobile-first form inputs - iOS touch optimized */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px; /* Mobile-first: larger padding for touch */
    border: 2px solid rgba(130, 126, 99, 0.3); /* Olive border */
    border-radius: 8px;
    font-size: 1rem;
    background: #546387; /* Dark background */
    color: #ffffff; /* White text */
    transition: border-color 0.3s ease;
    -webkit-transition: border-color 0.3s ease; /* iOS smooth transitions */
    /* iOS touch optimizations */
    -webkit-tap-highlight-color: transparent;
    min-height: 44px; /* iOS minimum touch target */
    /* iOS font rendering optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #827E63; /* Olive green focus */
    box-shadow: 0 0 0 3px rgba(130, 126, 99, 0.2); /* Olive glow */
}

/* Mobile-first textarea - iOS touch optimized */
.form-group textarea {
    resize: vertical;
    min-height: 100px; /* Mobile-first: smaller height */
    /* iOS touch optimization */
    -webkit-tap-highlight-color: transparent;
}

/* iOS-optimized: Larger height on larger screens */
@media (min-width: 768px) {
    .form-group textarea {
        min-height: 120px;
    }
}

/* Mobile-first Footer - iOS optimized - Black Theme */
.footer {
    background: #000000; /* Black background */
    color: white;
    padding: 1.5rem 0 1rem; /* Mobile-first: smaller padding */
    border-top: 2px solid rgba(130, 126, 99, 0.3); /* Olive top border */
    /* iOS optimizations */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* iOS-optimized: Larger padding on larger screens */
@media (min-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
}

/* Mobile-first footer content - iOS optimized */
.footer-content {
    display: grid;
    grid-template-columns: 1fr; /* Mobile-first: single column */
    gap: 1.5rem; /* Mobile-first: smaller gap */
    margin-bottom: 1.5rem; /* Mobile-first: smaller margin */
}

/* iOS-optimized: Multi-column layout on larger screens */
@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

/* Mobile-first footer headings - iOS optimized */
.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.8rem; /* Mobile-first: smaller margin */
    color: #827E63; /* Olive green headings */
    /* iOS font rendering optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* iOS-optimized: Larger margin on larger screens */
@media (min-width: 768px) {
    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1rem;
    }
}

.footer-section ul {
    list-style: none;
}

/* Mobile-first footer list items - iOS touch optimized */
.footer-section ul li {
    margin-bottom: 0.4rem; /* Mobile-first: smaller margin */
    /* iOS touch optimization */
    min-height: 44px; /* iOS minimum touch target */
    display: flex;
    align-items: center;
}

/* iOS-optimized: Larger margin on larger screens */
@media (min-width: 768px) {
    .footer-section ul li {
        margin-bottom: 0.5rem;
        min-height: auto;
        display: block;
    }
}

/* Mobile-first footer links - iOS touch optimized */
.footer-section ul li a {
    color: #bdc3c7; /* Light gray links */
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease; /* iOS smooth transitions */
    /* iOS touch optimizations */
    -webkit-tap-highlight-color: transparent;
    min-height: 44px; /* iOS minimum touch target */
    display: flex;
    align-items: center;
    /* iOS font rendering optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.footer-section ul li a:hover {
    color: #827E63; /* Olive green on hover */
}

/* Mobile-first footer bottom - iOS optimized */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem; /* Mobile-first: smaller padding */
    border-top: 1px solid rgba(130, 126, 99, 0.3); /* Olive top border */
    color: #bdc3c7; /* Light gray text */
    /* iOS font rendering optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* iOS-optimized: Larger padding on larger screens */
@media (min-width: 768px) {
    .footer-bottom {
        padding-top: 2rem;
    }
}

/* 
 * ===============================================
 * MOBILE-FIRST RESPONSIVE DESIGN - iOS OPTIMIZED
 * ===============================================
 * 
 * IMPORTANT: This is MOBILE-FIRST design
 * All styles above are for mobile devices
 * Media queries below enhance for larger screens
 * 
 * REMEMBER: Mobile-first, iOS-optimized approach!
 */

/* Mobile navigation - always visible on mobile */
.nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    -webkit-transition: 0.3s; /* iOS smooth transitions */
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    /* iOS optimizations */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    margin: 1rem 0;
    /* iOS touch optimization */
    min-height: 44px; /* iOS minimum touch target */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile hero adjustments */
.hero-placeholder {
    width: 200px; /* Mobile-first: smaller placeholder */
    height: 200px;
    font-size: 3rem;
    margin-top: 1.5rem;
}

/* Mobile modal adjustments */
.modal-content {
    width: 95%;
    margin: 5% auto;
}

.modal-body iframe {
    height: 300px; /* Mobile-first: smaller height */
}

.modal-footer {
    flex-direction: column;
    gap: 1rem;
}

.modal-footer .btn {
    max-width: none;
    width: 100%;
}

/* iOS-optimized: Desktop navigation */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        background: none;
        box-shadow: none;
        padding: 0;
        width: auto;
    }

    .nav-menu li {
        margin: 0;
        min-height: auto;
        display: block;
    }

    .hero-placeholder {
        width: 250px;
        height: 250px;
        font-size: 4rem;
    }

    .modal-body iframe {
        height: 400px;
    }

    .modal-footer {
        flex-direction: row;
    }

    .modal-footer .btn {
        max-width: 200px;
        width: auto;
    }
}

/* 
 * ===============================================
 * EXTRA SMALL MOBILE DEVICES - iOS OPTIMIZED
 * ===============================================
 * 
 * IMPORTANT: Additional optimizations for very small screens
 * These are enhancements to the mobile-first base styles
 * 
 * REMEMBER: Mobile-first, iOS-optimized approach!
 */

/* Extra small mobile devices (iPhone SE, etc.) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px; /* Even smaller padding for very small screens */
    }

    .hero-title {
        font-size: 2rem; /* Smaller font for very small screens */
    }

    .hero-subtitle {
        font-size: 0.9rem; /* Smaller font for very small screens */
    }

    .btn {
        padding: 12px 18px; /* Maintain touch target size */
        font-size: 0.9rem;
    }

    .service-card,
    .product-card,
    .category-item {
        padding: 1.2rem; /* Smaller padding for very small screens */
    }

    .hero-placeholder {
        width: 150px; /* Smaller placeholder for very small screens */
        height: 150px;
        font-size: 2.5rem;
    }

    .modal-content {
        width: 98%; /* Almost full width on very small screens */
        margin: 2% auto;
    }

    .modal-body iframe {
        height: 250px; /* Smaller height for very small screens */
    }
}

/* 
 * ===============================================
 * SMOOTH SCROLLING - iOS OPTIMIZED
 * ===============================================
 * 
 * IMPORTANT: iOS-optimized smooth scrolling
 * 
 * REMEMBER: Mobile-first, iOS-optimized approach!
 */

/* Smooth scrolling - iOS optimized */
html {
    scroll-behavior: smooth;
    /* iOS scroll optimizations */
    -webkit-overflow-scrolling: touch;
    /* iOS hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.product-card,
.category-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover effects */
.service-card:hover .service-icon,
.category-item:hover .category-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #827E63; /* Olive green background */
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(130, 126, 99, 0.3); /* Olive shadow */
}

.back-to-top:hover {
    background: #A4623E; /* Light olive on hover */
    transform: translateY(-2px);
}

/* ===============================================
   DOMÓTICA PAGE SPECIFIC STYLES - MOBILE FIRST
   =============================================== */

/* Domótica Hero Section - Mobile First - Liquid Glass Theme */
.domotica-hero {
    min-height: 100vh;
    min-height: 100dvh; /* iOS dynamic viewport height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F2EDDE 0%, #ffffff 50%, #F2EDDE 100%); /* White gradient */
    color: #546387; /* Dark text on light background */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* iOS optimizations */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Liquid glass overlay for domótica hero */
.domotica-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(130, 126, 99, 0.1) 0%, 
        rgba(130, 126, 99, 0.05) 50%, 
        rgba(130, 126, 99, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
}

.domotica-hero .container {
    position: relative;
    z-index: 2;
}

/* Mobile-first Packages Section - iOS optimized - Liquid Glass Theme */
.packages {
    padding: 60px 0; /* Mobile-first: smaller padding */
    background: linear-gradient(135deg, #ffffff 0%, #F2EDDE 50%, #F2EDDE 100%); /* White gradient */
    position: relative;
    /* iOS optimizations */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Liquid glass overlay for packages */
.packages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(130, 126, 99, 0.05) 0%, 
        rgba(130, 126, 99, 0.02) 50%, 
        rgba(130, 126, 99, 0.05) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1;
}

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

/* iOS-optimized: Larger padding on larger screens */
@media (min-width: 768px) {
    .packages {
        padding: 80px 0;
    }
}

/* Mobile-first Package Cards - iOS touch optimized - Liquid Glass */
.package-card {
    background: rgba(255, 255, 255, 0.3); /* Liquid glass background */
    border-radius: 20px;
    padding: 2rem; /* Mobile-first: smaller padding */
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.4); /* Glass border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* iOS touch optimizations */
    -webkit-tap-highlight-color: transparent;
    /* iOS hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Liquid glass shimmer effect for package cards */
.package-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 6s infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card:hover::before {
    opacity: 1;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(130, 126, 99, 0.2); /* Olive shadow on hover */
    border-color: rgba(130, 126, 99, 0.4); /* Brighter olive border on hover */
    background: rgba(255, 255, 255, 0.4); /* Brighter glass on hover */
}

/* Package card variants - Liquid Glass */
.package-card.featured {
    border-color: rgba(130, 126, 99, 0.4);
    background: rgba(255, 255, 255, 0.35);
}

.package-card.premium {
    border-color: rgba(130, 126, 99, 0.6);
    background: rgba(255, 255, 255, 0.4);
}

.package-card.custom {
    border-color: rgba(130, 126, 99, 0.8);
    background: rgba(255, 255, 255, 0.45);
}

/* iOS-optimized: Larger padding on larger screens */
@media (min-width: 768px) {
    .package-card {
        padding: 3rem;
    }
}

/* Mobile-first Package Header - iOS optimized */
.package-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.package-icon {
    width: 60px; /* Mobile-first: smaller icons */
    height: 60px;
    background: linear-gradient(135deg, #827E63, #A4623E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.package-title h3 {
    font-size: 1.5rem; /* Mobile-first: smaller font */
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #546387; /* Dark text on light glass */
    position: relative;
    z-index: 2;
    /* iOS font rendering optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.package-subtitle {
    color: #546387; /* Dark blue-gray text */
    font-size: 0.9rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* iOS-optimized: Larger font on larger screens */
@media (min-width: 768px) {
    .package-title h3 {
        font-size: 1.8rem;
    }
    
    .package-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Mobile-first Package Price - iOS optimized */
.package-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(130, 126, 99, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(130, 126, 99, 0.3);
}

.currency {
    font-size: 1.2rem;
    color: #827E63;
    font-weight: 600;
}

.amount {
    font-size: 2.5rem; /* Mobile-first: smaller font */
    font-weight: 700;
    color: #546387; /* Dark text on light glass */
    margin: 0 0.5rem;
    position: relative;
    z-index: 2;
}

.note {
    display: block;
    font-size: 0.8rem;
    color: #546387; /* Dark blue-gray text */
    margin-top: 0.5rem;
    position: relative;
    z-index: 2;
}

/* iOS-optimized: Larger font on larger screens */
@media (min-width: 768px) {
    .amount {
        font-size: 3.5rem;
    }
}

/* Mobile-first Package Description - iOS optimized */
.package-description {
    margin-bottom: 2rem;
}

.package-description p {
    color: #546387; /* Dark blue-gray text */
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Mobile-first Package Features - iOS optimized */
.package-features h4 {
    color: #827E63;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    /* iOS font rendering optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(130, 126, 99, 0.05);
    border-radius: 10px;
    border-left: 4px solid #827E63;
    transition: all 0.3s ease;
}

.features-list li:hover {
    background: rgba(130, 126, 99, 0.1);
    transform: translateX(5px);
}

.features-list li i {
    color: #827E63;
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.features-list li strong {
    color: #546387; /* Dark text on light glass */
    font-weight: 600;
}

/* Mobile-first Package CTA - iOS optimized */
.package-cta {
    text-align: center;
    margin-top: 2rem;
}

.package-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    /* iOS touch optimizations */
    -webkit-tap-highlight-color: transparent;
    min-height: 44px; /* iOS minimum touch target */
    /* iOS hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(130, 126, 99, 0.3);
}

/* iOS-optimized: Larger button on larger screens */
@media (min-width: 768px) {
    .package-btn {
        width: auto;
        padding: 1.2rem 3rem;
        font-size: 1.2rem;
    }
}

/* ===============================================
   EL CARRUSEL DE ATMÓSFERA - MOBILE FIRST
   =============================================== */

/* Mobile-first Carousel Container - iOS optimized */
.carousel-container {
    position: relative;
    width: 100%;
    height: 600px; /* Mobile-first: smaller height */
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    /* iOS optimizations */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* iOS-optimized: Larger height on larger screens */
@media (min-width: 768px) {
    .carousel-container {
        height: 700px;
    }
}

/* Mobile-first Carousel Wrapper - iOS optimized */
.carousel-wrapper {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    /* iOS smooth transitions */
    -webkit-transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile-first Product Items - iOS touch optimized */
.product-item {
    flex: 0 0 100%; /* Mobile-first: full width */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    /* iOS smooth transitions */
    -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    /* iOS touch optimizations */
    -webkit-tap-highlight-color: transparent;
    /* iOS hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* iOS-optimized: Smaller width on larger screens for side-by-side view */
@media (min-width: 1024px) {
    .product-item {
        flex: 0 0 25%; /* 4 items visible on desktop */
    }
}

/* Mobile-first Product Background - iOS optimized */
.product-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.6s ease;
    /* iOS hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Active product background zoom effect */
.product-item.active .product-background {
    transform: scale(1.05);
}

/* Mobile-first Product Content - iOS optimized */
.product-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem; /* Mobile-first: smaller padding */
    background: rgba(255, 255, 255, 0.1); /* Liquid glass overlay */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.6s ease;
    /* iOS smooth transitions */
    -webkit-transition: all 0.6s ease;
}

/* iOS-optimized: Larger padding on larger screens */
@media (min-width: 768px) {
    .product-content {
        padding: 3rem;
    }
}

/* Mobile-first Product Header - iOS optimized */
.product-header {
    text-align: center;
    margin-bottom: 2rem;
}

.product-name {
    font-size: 2rem; /* Mobile-first: smaller font */
    font-weight: 700;
    color: #546387;
    margin-bottom: 1rem;
    /* iOS font rendering optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.product-price {
    font-size: 1.8rem; /* Mobile-first: smaller font */
    font-weight: 600;
    color: #827E63;
    background: rgba(130, 126, 99, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    border: 2px solid rgba(130, 126, 99, 0.3);
}

/* iOS-optimized: Larger fonts on larger screens */
@media (min-width: 768px) {
    .product-name {
        font-size: 2.5rem;
    }
    
    .product-price {
        font-size: 2.2rem;
    }
}

/* Mobile-first Product Details - iOS optimized */
.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    /* iOS smooth transitions */
    -webkit-transition: all 0.6s ease;
}

/* Show details when product is active */
.product-item.active .product-details {
    opacity: 1;
    transform: translateY(0);
}

.product-concept h4,
.product-materials h4 {
    color: #827E63;
    font-size: 1.2rem; /* Mobile-first: smaller font */
    font-weight: 600;
    margin-bottom: 1rem;
    /* iOS font rendering optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.product-concept p {
    color: #546387;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem; /* Mobile-first: smaller font */
}

.product-materials ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-materials li {
    color: #546387;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border-left: 4px solid #827E63;
    /* iOS hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.product-materials li strong {
    color: #546387;
    font-weight: 600;
}

/* iOS-optimized: Larger fonts on larger screens */
@media (min-width: 768px) {
    .product-concept h4,
    .product-materials h4 {
        font-size: 1.4rem;
    }
    
    .product-concept p {
        font-size: 1.1rem;
    }
}

/* Mobile-first Carousel Controls - iOS touch optimized */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
    transform: translateY(-50%);
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2); /* Liquid glass background */
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px; /* Mobile-first: smaller buttons */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    /* iOS smooth transitions */
    -webkit-transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: auto;
    /* iOS touch optimizations */
    -webkit-tap-highlight-color: transparent;
    min-height: 44px; /* iOS minimum touch target */
    min-width: 44px;
    /* iOS hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.carousel-btn:hover {
    background: rgba(130, 126, 99, 0.2);
    border-color: rgba(130, 126, 99, 0.4);
    transform: scale(1.1);
}

.carousel-btn i {
    color: #546387;
    font-size: 1.2rem;
}

/* iOS-optimized: Larger buttons on larger screens */
@media (min-width: 768px) {
    .carousel-btn {
        width: 60px;
        height: 60px;
    }
    
    .carousel-btn i {
        font-size: 1.4rem;
    }
}

/* Mobile-first Product Indicators - iOS touch optimized */
.product-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px; /* Mobile-first: smaller indicators */
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    /* iOS smooth transitions */
    -webkit-transition: all 0.3s ease;
    /* iOS touch optimizations */
    -webkit-tap-highlight-color: transparent;
    min-height: 44px; /* iOS minimum touch target */
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* iOS hardware acceleration */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.indicator::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(130, 126, 99, 0.3);
    border-color: rgba(130, 126, 99, 0.6);
}

.indicator.active::before {
    background: #827E63;
}

.indicator:hover {
    background: rgba(130, 126, 99, 0.2);
    border-color: rgba(130, 126, 99, 0.4);
    transform: scale(1.2);
}

/* iOS-optimized: Larger indicators on larger screens */
@media (min-width: 768px) {
    .indicator {
        width: 16px;
        height: 16px;
    }
    
    .indicator::before {
        width: 8px;
        height: 8px;
    }
}

/* Collapsed state for non-active items */
.product-item:not(.active) .product-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.product-item:not(.active) .product-details {
    opacity: 0;
    transform: translateY(30px);
}

.product-item:not(.active) .product-header {
    transform: scale(0.9);
}

/* iOS-optimized: Hide controls on very small screens */
@media (max-width: 480px) {
    .carousel-controls {
        display: none;
    }
    
    .product-indicators {
        bottom: 1rem;
    }
}

/* PDF Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #F2EDDE;
    border-bottom: 1px solid #e1e8ed;
}

.modal-header h3 {
    margin: 0;
    color: #546387;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #e74c3c;
    color: white;
}

.modal-body {
    padding: 0;
    max-height: 70vh;
    overflow: hidden;
}

.modal-body iframe {
    border: none;
    width: 100%;
    height: 600px;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #F2EDDE;
    border-top: 1px solid #e1e8ed;
    gap: 1rem;
}

.modal-footer .btn {
    flex: 1;
    max-width: 200px;
}

/* Footer Logo */
.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

/* ===============================================
 * SHOPIFY STYLE PRODUCT GRID - E-COMMERCE FOCUS
 * ===============================================
 */

/* Shopify Style Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #827E63;
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #F2EDDE;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F2EDDE 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #827E63;
    font-size: 3rem;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #827E63;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.sale {
    background: #dc3545;
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    color: #827E63;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background: #827E63;
    color: white;
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: #dc3545;
    color: white;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #546387;
    margin: 0 0 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    margin-bottom: 12px;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #827E63;
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

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

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.stars i.far {
    color: #e0e0e0;
}

.rating-count {
    font-size: 0.85rem;
    color: #666;
}


/* Product Info Panels - Accordion Style */
.product-info-panels {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-panel {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-panel.active {
    border-color: rgba(130, 126, 99, 0.3);
    box-shadow: 0 12px 40px rgba(130, 126, 99, 0.15);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.panel-header:hover {
    background: rgba(130, 126, 99, 0.1);
}

.panel-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #546387;
    margin: 0;
}

.panel-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #827E63;
    margin: 0 15px;
}

.panel-toggle {
    background: none;
    border: none;
    color: #827E63;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 5px;
}

.info-panel.active .panel-toggle {
    transform: rotate(180deg);
}

.panel-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
}

.info-panel.active .panel-content {
    max-height: 1000px;
}

.panel-section {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-section:last-child {
    border-bottom: none;
}

.panel-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #827E63;
    margin-bottom: 10px;
}

.panel-section p {
    color: #546387;
    line-height: 1.6;
    margin-bottom: 15px;
}

.panel-section ul {
    list-style: none;
    padding: 0;
}

.panel-section li {
    color: #546387;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.panel-section li::before {
    content: "•";
    color: #827E63;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.panel-section strong {
    color: #546387;
    font-weight: 600;
}

/* Mobile Responsive for Shopify Style */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }
    
    .product-image-container {
        height: 240px;
    }
    
    .product-info {
        padding: 16px;
    }
    
    .product-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .current-price {
        font-size: 1.2rem;
    }
    
    
    .action-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .product-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .panel-header {
        padding: 15px 20px;
    }
    
    .panel-header h3 {
        font-size: 1.2rem;
    }
    
    .panel-price {
        font-size: 1rem;
    }
    
    .panel-section {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 20px 0;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .product-info {
        padding: 14px;
    }
    
    .product-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .current-price {
        font-size: 1.1rem;
    }
    
    
    .action-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .product-badge {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    .panel-header {
        padding: 12px 15px;
        flex-wrap: wrap;
    }
    
    .panel-header h3 {
        font-size: 1.1rem;
        flex: 1;
        min-width: 0;
    }
    
    .panel-price {
        font-size: 0.9rem;
        margin: 5px 10px 0 0;
    }
    
    .panel-section {
        padding: 12px 15px;
    }
}

/* ===============================================
 * MODERN HERO SECTIONS - ENHANCED DESIGN
 * ===============================================
 */

/* Modern Hero Background Effects */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(130, 126, 99, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(130, 126, 99, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(130, 126, 99, 0.05) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(242, 237, 222, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 30%, 
        rgba(242, 237, 222, 0.95) 70%, 
        rgba(242, 237, 222, 0.9) 100%);
    backdrop-filter: blur(1px);
}

.hero-tech-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(130, 126, 99, 0.03) 49%, rgba(130, 126, 99, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(130, 126, 99, 0.03) 49%, rgba(130, 126, 99, 0.03) 51%, transparent 52%);
    background-size: 20px 20px;
    animation: techPattern 15s linear infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes techPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(20px); }
}

/* Hero Badge */

/* Enhanced Hero Title */
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title-line {
    display: block;
    color: #546387;
    opacity: 0.9;
}

.hero-title-highlight {
    display: block;
    background: linear-gradient(135deg, #827E63 0%, #A4623E 50%, #827E63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    margin: 10px 0;
    animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px 15px;
    min-width: 80px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #827E63;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #546387;
    font-weight: 600;
}

/* Enhanced Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 50px;
    min-width: 200px;
    justify-content: center;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #827E63 0%, #A4623E 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(130, 126, 99, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(130, 126, 99, 0.4);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(130, 126, 99, 0.3);
    color: #827E63;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(130, 126, 99, 0.1);
    border-color: #827E63;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Hero Trust Section */
.hero-trust {
    text-align: center;
    margin-top: 20px;
}

.hero-trust p {
    color: #546387;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
}

/* Hero Visual Showcase */
.hero-visual {
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.hero-showcase {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    min-width: 100px;
    transition: all 0.3s ease;
    animation: showcaseFloat 6s ease-in-out infinite;
}

.showcase-item:nth-child(2) {
    animation-delay: 2s;
}

.showcase-item:nth-child(3) {
    animation-delay: 4s;
}

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

.showcase-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.showcase-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #827E63 0%, #A4623E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(130, 126, 99, 0.3);
}

.showcase-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #546387;
    text-align: center;
}

/* Products Section Responsive */
@media (max-width: 768px) {
    .products {
        padding: 40px 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image-container {
        height: 250px;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
}

/* Mobile-Optimized Package Features */
.package-features-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(130, 126, 99, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(130, 126, 99, 0.2);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(130, 126, 99, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(130, 126, 99, 0.2);
}

.feature-highlight i {
    color: #827E63;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.feature-highlight span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #546387;
    line-height: 1.2;
}

/* Hide desktop features on mobile */
@media (max-width: 768px) {
    .package-features-desktop {
        display: none;
    }
    
    .package-features-mobile {
        display: grid;
    }
}

/* Hide mobile features on desktop */
@media (min-width: 769px) {
    .package-features-mobile {
        display: none;
    }
    
    .package-features-desktop {
        display: block;
    }
}

/* Package Badge */
.package-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #827E63 0%, #A4623E 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(130, 126, 99, 0.3);
    z-index: 10;
}

.package-badge span {
    font-size: 0.75rem;
}

/* Package Highlights */
.package-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(130, 126, 99, 0.08);
    border-radius: 8px;
    border: 1px solid rgba(130, 126, 99, 0.15);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(130, 126, 99, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(130, 126, 99, 0.2);
}

.highlight-item i {
    color: #827E63;
    font-size: 1.1rem;
    width: 16px;
    text-align: center;
}

.highlight-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #546387;
    line-height: 1.2;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 248, 240, 0.8) 100%);
    backdrop-filter: blur(20px);
}

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

.why-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #827E63 0%, #A4623E 100%);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #827E63 0%, #A4623E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(130, 126, 99, 0.3);
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #546387;
    margin-bottom: 15px;
    line-height: 1.3;
}

.why-card p {
    color: #546387;
    line-height: 1.6;
    font-size: 1rem;
}

/* Detailed Services Section */
.detailed-services {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.5);
}

.services-tabs {
    margin-top: 40px;
}

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

.tab-btn {
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(130, 126, 99, 0.2);
    border-radius: 50px;
    color: #546387;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    background: rgba(130, 126, 99, 0.1);
    border-color: #827E63;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #827E63 0%, #A4623E 100%);
    color: white;
    border-color: #827E63;
    box-shadow: 0 4px 15px rgba(130, 126, 99, 0.3);
}

.tab-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.service-header {
    text-align: center;
    margin-bottom: 30px;
}

.service-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #546387;
    margin-bottom: 10px;
}

.service-subtitle {
    font-size: 1.1rem;
    color: #827E63;
    font-weight: 600;
}

.service-description {
    margin-bottom: 30px;
    text-align: center;
}

.service-description p {
    font-size: 1.1rem;
    color: #546387;
    line-height: 1.6;
}

.service-features h4 {
    color: #546387;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.features-detailed {
    list-style: none;
    padding: 0;
}

.features-detailed li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(130, 126, 99, 0.05);
    border-radius: 10px;
    border-left: 4px solid #827E63;
    transition: all 0.3s ease;
}

.features-detailed li:hover {
    background: rgba(130, 126, 99, 0.1);
    transform: translateX(5px);
}

.features-detailed li i {
    color: #827E63;
    font-size: 1.2rem;
    margin-top: 2px;
    width: 20px;
    text-align: center;
}

.features-detailed li strong {
    color: #546387;
    font-weight: 700;
}

/* Mobile Package Card Optimizations */
@media (max-width: 768px) {
    .package-card {
        margin-bottom: 30px;
        padding: 20px;
    }
    
    .package-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .package-icon {
        margin: 0 auto 15px;
    }
    
    .package-title h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .package-subtitle {
        font-size: 0.9rem;
    }
    
    .package-price {
        margin: 20px 0;
        padding: 15px;
    }
    
    .package-description {
        margin-bottom: 20px;
    }
    
    .package-description p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .package-cta {
        margin-top: 25px;
    }
    
    .package-btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .package-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .highlight-item {
        padding: 8px 10px;
    }
    
    .highlight-item span {
        font-size: 0.8rem;
    }
    
    .why-choose-us {
        padding: 60px 0;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-card {
        padding: 25px;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-icon i {
        font-size: 1.5rem;
    }
    
    .why-card h3 {
        font-size: 1.2rem;
    }
    
    .detailed-services {
        padding: 60px 0;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
    
    .tab-content {
        padding: 25px;
    }
    
    .service-header h3 {
        font-size: 1.5rem;
    }
    
    .features-detailed li {
        flex-direction: column;
        gap: 8px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .package-features-mobile {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-highlight {
        padding: 10px 12px;
    }
    
    .feature-highlight i {
        font-size: 1.1rem;
    }
    
    .feature-highlight span {
        font-size: 0.85rem;
    }
}

/* Hero Features (for Domótica) */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #546387;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(130, 126, 99, 0.1);
    border-color: #827E63;
    transform: translateY(-2px);
}

.feature-item i {
    color: #827E63;
    font-size: 1rem;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}


/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-title-highlight {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px 10px;
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-buttons .btn {
        min-width: 150px;
        padding: 12px 20px;
    }
    
    .hero-showcase {
        gap: 15px;
    }
    
    .showcase-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .showcase-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 10px;
    }
    
    .feature-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-title-highlight {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Repairs Section Responsive */
@media (max-width: 768px) {
    .repairs {
        padding: 40px 0;
    }
    
    .repairs-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .repair-card {
        padding: 20px;
    }
    
    .repair-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .repairs-process {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .repairs-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (min-width: 768px) {
    .repairs {
        padding: 80px 0;
    }
    
    .repairs-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .repairs-process {
        padding: 50px;
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .repairs-cta {
        padding: 50px;
    }
}