/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    background: var(--bg-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.preloader-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

.preloader-geometry {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.wireframe-shape {
    animation: floatGeometry 20s ease-in-out infinite;
}

.wireframe-shape:nth-child(2) {
    animation-delay: -5s;
}

.wireframe-shape:nth-child(3) {
    animation-delay: -10s;
}

.wireframe-shape:nth-child(4) {
    animation-delay: -15s;
}

@keyframes floatGeometry {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }
    50% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }
    75% {
        transform: translate(10px, 20px) rotate(3deg);
    }
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    width: 100%;
    max-width: 100%;
}

.preloader-logo {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.preloader-logo.show {
    opacity: 1;
    transform: scale(1);
}

.preloader-logo-circle {
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.preloader-logo-circle::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), transparent, var(--primary-color));
    opacity: 0.5;
    z-index: -1;
    animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.preloader-logo-text {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 400;
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.05em;
    position: relative;
    z-index: 1;
}

.preloader-text {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    width: 100%;
}

@media (max-width: 767.98px) {
    .preloader-text {
        flex-direction: column;
        align-items: center;
    }
    
    .preloader-word {
        width: 100%;
        text-align: center;
    }
}

.preloader-word {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 500;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.preloader-word.show {
    opacity: 1;
    transform: translateY(0);
}

.preloader-word:nth-child(1) {
    color: var(--text-white);
    font-weight: 300;
}

.preloader-word:nth-child(2) {
    color: var(--text-white);
    font-weight: 700;
}

.preloader-word:nth-child(3) {
    color: var(--text-white);
    font-weight: 300;
}

.preloader-brand {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 2.5s, transform 1s cubic-bezier(0.4, 0, 0.2, 1) 2.5s;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.preloader-brand.show {
    opacity: 1;
    transform: translateY(0);
}

.preloader-brand .brand-name {
    color: var(--text-white);
    font-size: clamp(0.875rem, 2.5vw, 1.25rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Hide body content during preloader */
body.preloader-active {
    overflow: hidden;
}

body.preloader-active > *:not(.preloader) {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body:not(.preloader-active) > *:not(.preloader) {
    opacity: 1;
    transition: opacity 0.8s ease 0.3s;
}

/* Global Styles - Light/Dark Theme (Ashley-inspired) */
:root {
    /* Primary Color Palette */
    --primary-color: #FF6B35;
    --secondary-color: #000000;
    --accent-color: #FF6B35;
    --success-color: #34C759;
    --warning-color: #FF9500;
    --error-color: #FF3B30;
    
    /* Dark/Light Backgrounds */
    --bg-dark: #000000;
    --bg-dark-alt: #0A0A0A;
    --bg-white: #FFFFFF;
    --bg-light: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-dark: rgba(255, 255, 255, 0.05);
    
    /* Text Colors */
    --text-dark: #000000;
    --text-light: #555555;
    --text-secondary: #555555;
    --text-white: #FFFFFF;
    --text-on-dark: #FFFFFF;
    
    /* Gradients - Minimal for light/dark theme */
    --gradient-1: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    --gradient-2: linear-gradient(135deg, #000000 0%, #0A0A0A 100%);
    --gradient-3: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    --gradient-hero: #000000;
    --gradient-purple: #000000;
    --gradient-blue: #FFFFFF;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: var(--bg-dark);
    min-height: 100vh;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    overflow-x: hidden;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-dark);
    min-height: 100vh;
}

/* Typography Enhancements - Outfit Font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    word-spacing: 0.08em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h3 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
}

p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 400;
    word-spacing: 0.06em;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

.display-1, .display-2, .display-3, .display-4 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.display-3 {
    font-size: 3.5rem;
    font-weight: 500;
}

.display-4 {
    font-size: 2.75rem;
    font-weight: 500;
}

/* Floating Menu Toggle Button */
.menu-toggle-floating {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.menu-toggle-floating:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: var(--primary-color);
}

.menu-toggle-floating span {
    display: block;
    height: 2px;
    width: 24px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle-floating.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle-floating.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle-floating.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu Toggle Button (for compatibility) */
.menu-toggle {
    background: transparent;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.side-menu.active {
    visibility: visible;
    opacity: 1;
}

.side-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.side-menu-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg-dark);
    padding: 4rem 2rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.side-menu.active .side-menu-content {
    transform: translateX(0);
}

.side-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.2s ease;
}

.side-menu-close:hover {
    color: var(--primary-color);
}

.side-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu-nav li {
    margin-bottom: 0.5rem;
}

.side-menu-nav a {
    display: block;
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 400;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    letter-spacing: 0.02em;
}

.side-menu-nav a:hover,
.side-menu-nav a.active {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

/* Hero Section - Dark Background */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 2rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

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

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

.hero-text h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: 0.01em;
    overflow: hidden;
}

.hero-text h1 span {
    display: inline-block;
    position: relative;
}

.hero-word {
    margin-right: 0.25em;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s, transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-section .hero-buttons.is-visible,
.hero-section .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Animation */
.float-animation {
    animation: floatAnimation 3s ease-in-out infinite;
}

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


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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-down {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes bounceUp {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary-color);
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Cursor Follower */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
}

body:hover .cursor-follower {
    opacity: 0.3;
}

/* Enhanced Animations */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.is-visible {
    opacity: 1 !important;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out;
}

.zoom-in {
    animation: zoomIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes zoomOut {
    from {
        opacity: 0;
        transform: scale(1.2);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Text Reveal Animation */
[data-text-reveal] span {
    display: inline-block;
    overflow: hidden;
    margin-right: 0.2em;
}

[data-text-reveal] {
    word-spacing: 0.1em;
}

/* Staggered Animation Delays */
.animate-stagger-1 { animation-delay: 0.1s; }
.animate-stagger-2 { animation-delay: 0.2s; }
.animate-stagger-3 { animation-delay: 0.3s; }
.animate-stagger-4 { animation-delay: 0.4s; }
.animate-stagger-5 { animation-delay: 0.5s; }
.animate-stagger-6 { animation-delay: 0.6s; }

/* Smooth transitions for all interactive elements */
a, button, .btn, .card, .feature-card, .product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Parallax container */
[data-parallax] {
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

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

/* Pulse Animation - Light/Dark Theme */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
}

/* Section Styles - Apple Style */
.section-title {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    word-spacing: 0.12em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Feature Cards - Light/Dark Theme */
.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--bg-dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.feature-card h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.375rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* Product Cards - Light/Dark Theme */
.product-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.product-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.product-card:hover::after {
    width: 300px;
    height: 300px;
}

.product-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--bg-dark);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    box-shadow: var(--shadow-sm);
}

.product-card-full {
    background: var(--bg-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.product-card-full:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.product-image-full {
    height: 200px;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 3rem;
}

.product-info {
    padding: 1.5rem;
}

.product-info h5 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.product-info p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
}

.price {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

/* Value Cards - Light/Dark Theme */
.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h5 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* Stats Section - Dark Background */
.stats-section {
    background: var(--bg-dark);
    color: var(--text-white);
}

.stat-item {
    padding: 2rem;
}

.counter {
    font-size: 3.5rem;
    color: var(--text-white);
}

/* Ensure muted text is readable on dark backgrounds */
.bg-dark .text-muted,
.stats-section .text-muted,
.cta-section .text-muted,
footer .text-muted,
.page-header .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Improve text-muted contrast on all backgrounds */
.text-muted {
    color: #555555 !important;
}

/* Better contrast for lead text */
.lead {
    color: var(--text-dark);
    font-weight: 400;
}

/* Lead text on dark backgrounds */
.page-header .lead,
.bg-dark .lead,
.stats-section .lead,
.cta-section .lead {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* CTA Section - Dark Background */
.cta-section {
    background: var(--bg-dark);
    color: var(--text-white);
    border-radius: 0;
}

.cta-section h2 {
    word-spacing: 0.15em;
    letter-spacing: -0.01em;
}

.cta-section p {
    word-spacing: 0.06em;
}

/* Page Header - Dark Background */
.page-header {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: var(--text-white);
}

.page-header .lead {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95) !important;
}

.page-header .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* About Section */
.about-image {
    padding: 2rem;
}

.about-card {
    width: 100%;
    height: 400px;
    background: var(--bg-dark);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.about-card i {
    font-size: 8rem;
    opacity: 0.8;
}

.about-text {
    padding: 2rem;
}

.about-text h2 {
    font-size: 2.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.about-text p.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

/* Contact Form */
.contact-form-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-item h5 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.contact-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* Map */
.map-container {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-placeholder {
    height: 400px;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border-radius: 18px;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-buttons .btn {
    transition: all 0.3s ease;
}

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

/* Footer - Apple Style */
footer {
    margin-top: auto;
    background: var(--bg-dark) !important;
}

footer h5 {
    font-size: 1.125rem;
    font-weight: 400;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

footer p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
}

footer a {
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.9) !important;
}

footer a:hover {
    color: var(--primary-color) !important;
    transform: translateX(3px);
}

/* Preloader Responsive Styles */
@media (max-width: 768px) {
    .preloader-text {
        font-size: 2.5rem;
        min-height: 150px;
        gap: 0.75rem;
        flex-direction: column;
        align-items: center;
    }
    
    .preloader-word {
        width: 100%;
        text-align: center;
    }
    
    .preloader-brand {
        font-size: 1.5rem;
    }
    
    .preloader-brand i {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .preloader-text {
        font-size: 2rem;
        min-height: 120px;
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .preloader-word {
        width: 100%;
        text-align: center;
    }
    
    .preloader-brand {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .preloader-brand i {
        font-size: 1.75rem;
    }
}

/* Responsive Design - Mobile First Approach */

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 575.98px) {
    .hero-text h1 {
        font-size: clamp(3rem, 14vw, 5rem);
        line-height: 1.2;
    }
    
    .hero-text .lead {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .hero-content {
        padding: 2rem 1rem;
    }
    
    .scroll-indicator {
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .scroll-down {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .floating-card {
        width: 180px;
        height: 180px;
        margin-top: 2rem;
    }
    
    .floating-card i {
        font-size: 4rem;
    }
    
    .feature-card,
    .product-card,
    .value-card {
        margin-bottom: 1.5rem;
    }
    
    .feature-icon,
    .product-image {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .about-card {
        height: 250px;
    }
    
    .about-card i {
        font-size: 4rem;
    }
    
    .about-text {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat-item h2 {
        font-size: 2.5rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-buttons .btn {
        width: 100%;
    }
    
    .product-card-full {
        margin-bottom: 1.5rem;
    }
    
    .product-image-full {
        height: 150px;
        font-size: 3rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .cta-section .row {
        text-align: center;
    }
    
    .cta-section .btn {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-card {
        width: 220px;
        height: 220px;
    }
    
    .floating-card i {
        font-size: 5rem;
    }
    
    .about-card {
        height: 300px;
    }
    
    .about-card i {
        font-size: 5rem;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .floating-card {
        width: 250px;
        height: 250px;
    }
    
    .floating-card i {
        font-size: 6rem;
    }
    
    .about-card {
        height: 350px;
    }
    
    .product-image-full {
        height: 180px;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Samsung Fold Specific Styles */
/* Folded state (cover display: 280x653px or 840x2268px) */
@media (max-width: 280px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* Samsung Fold Unfolded (main display: 1768x2208px) */
@media (min-width: 768px) and (max-width: 1024px) and (min-height: 1024px) {
    .hero-section {
        height: 100vh;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
    
    .floating-card {
        width: 280px;
        height: 280px;
    }
    
    .floating-card i {
        font-size: 7rem;
    }
    
    .feature-card,
    .product-card {
        min-height: 280px;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 500px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .floating-card {
        width: 150px;
        height: 150px;
    }
    
    .floating-card i {
        font-size: 3rem;
    }
    
    .scroll-indicator {
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-section::before {
        background-size: 50px 50px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .product-card,
    .feature-card {
        -webkit-tap-highlight-color: rgba(13, 110, 253, 0.2);
    }
    
    .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
    }
}

/* Very Small Screens (iPhone SE, small Android) */
@media (max-width: 375px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-text h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    
    .hero-text .lead {
        font-size: 0.9rem;
    }
    
    .feature-card,
    .product-card,
    .value-card {
        padding: 1.5rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 1.25rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .page-header {
        padding: 1.5rem 0;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
}

/* Tablet Portrait (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .hero-section {
        min-height: 85vh;
    }
    
    .row.g-4 > [class*='col-'] {
        margin-bottom: 1.5rem;
    }
    
    .product-card-full {
        height: auto;
    }
    
    .product-image-full {
        height: 220px;
    }
}

/* Tablet Landscape (1024px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
    }
    
    .floating-card {
        width: 300px;
        height: 300px;
    }
}

/* Flexible Grid for All Screen Sizes */
.row.g-4 {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.row.g-4 > * {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

@media (max-width: 575.98px) {
    .row.g-4 {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    
    .row.g-4 > * {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

/* Text Readability on Small Screens */
@media (max-width: 767.98px) {
    body {
        font-size: 0.95rem;
    }
    
    h1, .h1 {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }
    
    h2, .h2 {
        font-size: 1.75rem;
        letter-spacing: -0.3px;
    }
    
    h3, .h3 {
        font-size: 1.5rem;
    }
    
    h4, .h4 {
        font-size: 1.25rem;
    }
    
    h5, .h5 {
        font-size: 1.1rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.25rem;
    }
}

/* Image and Icon Responsiveness */
img,
.product-image,
.feature-icon,
.contact-icon {
    max-width: 100%;
    height: auto;
}

/* Form Elements on Mobile */
@media (max-width: 767.98px) {
    .form-control,
    .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
        font-size: 16px;
    }
}

/* Navigation Mobile Menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
}

/* Footer Responsive */
@media (max-width: 767.98px) {
    footer .row > div {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    footer .row > div:last-child {
        margin-bottom: 0;
    }
    
    footer ul {
        text-align: center;
    }
}

/* Prevent Horizontal Scroll */
body {
    overflow-x: hidden;
}

.container,
.container-fluid {
    overflow-x: hidden;
}

/* Smooth Transitions for All Interactive Elements */
.btn,
.card,
.nav-link,
.product-card,
.feature-card {
    transition: all 0.3s ease;
}

/* Accessibility - Focus States */
@media (prefers-reduced-motion: no-preference) {
    * {
        transition: all 0.3s ease;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    background-color: var(--bg-dark);
    min-height: 100vh;
}

/* Hide Scrollbar */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

html::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

body {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Prevent text size adjustment on orientation change */
body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background-color: var(--bg-dark);
    min-height: 100vh;
}

/* Fix for long mobile screens (6.7 inch and above) */
@media (min-height: 800px) and (max-width: 768px) {
    .preloader {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero-section {
        min-height: 100vh;
        height: 100vh;
    }
}

/* Extra long screens */
@media (min-height: 900px) {
    .preloader {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero-section {
        min-height: 100vh;
        height: 100vh;
    }
}

/* Enhanced Button Text - Apple Style */
.btn {
    font-weight: 500;
    letter-spacing: -0.01em;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #E55A2B;
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

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

.btn-lg {
    font-size: 1.0625rem;
    padding: 1rem 2rem;
    border-radius: 14px;
}

/* Card Text Enhancements - Apple Style */
.card-title {
    font-weight: 400;
    font-size: 1.375rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

/* Navbar Text - Already updated above */

/* Stats Text */
.stat-item h2 {
    font-weight: 400;
    letter-spacing: -0.03em;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

/* Form Labels - Apple Style */
.form-label {
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
}

.form-control, .form-select {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    outline: none;
}

/* Additional Text Effects - Apple Style */
.text-gradient {
    color: var(--primary-color);
}

.text-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.text-shadow-lg {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Loading Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Premium Card Styles - Light/Dark Theme */
.premium-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.premium-card:hover::before {
    left: 100%;
}

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

/* Service Cards */
.service-card {
    height: 100%;
    text-align: center;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 2rem;
    background: var(--bg-dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.service-card h4 {
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--success-color);
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem;
}

.process-number {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: var(--bg-dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 400;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.process-step h5 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    font-weight: 400;
}

/* Gallery Cards */
.gallery-card {
    overflow: hidden;
    padding: 0;
    border-radius: 20px;
}

.gallery-image {
    height: 350px;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 18px;
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-image::before {
    opacity: 1;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

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

.gallery-overlay h5 {
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: white;
    letter-spacing: -0.01em;
}

.gallery-overlay p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-weight: 400;
}

/* Gallery Image Variations - Dark Theme */
.modern-bathroom {
    background: var(--bg-dark);
}

.luxury-bathroom {
    background: #1A1A1A;
}

.minimalist-bathroom {
    background: #0A0A0A;
}

.classic-bathroom {
    background: #2A2A2A;
}

.modern-bathroom-2 {
    background: #1A1A1A;
}

.luxury-bathroom-2 {
    background: #0F0F0F;
}

.minimalist-bathroom-2 {
    background: #151515;
}

.classic-bathroom-2 {
    background: #1F1F1F;
}

.modern-bathroom-3 {
    background: #121212;
}

/* Testimonial Cards */
.testimonial-card {
    height: 100%;
    position: relative;
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    margin-right: 0.25rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 400;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.15;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.author-info h6 {
    font-size: 1.0625rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.author-info p {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Trust Items */
.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
}

.trust-item h5 {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.trust-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* Enhanced Animations */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Background adjustments */
.bg-light {
    background-color: var(--bg-white) !important;
}

/* Luxury Effects - Light/Dark Theme */
.luxury-glow {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3), 0 0 60px rgba(255, 107, 53, 0.15);
}

/* Premium Hover Effects */
.premium-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Enhanced Gradient Backgrounds */
.gradient-overlay {
    position: relative;
}

.gradient-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    pointer-events: none;
}

/* Premium Section Spacing */
.premium-section {
    padding: 6rem 0;
}

/* Enhanced Button Styles - Apple Style */
.btn-premium {
    background: var(--primary-color);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.btn-premium:hover::before {
    width: 300px;
    height: 300px;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: #E55A2B;
}

/* Premium Typography Enhancements - Apple Style */
.premium-heading {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Responsive adjustments for premium cards */
@media (max-width: 768px) {
    .premium-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hero-section {
        height: 100vh;
        padding-top: 0;
    }
    
    .menu-toggle-floating {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
}
.custom-letter-spacing {
    letter-spacing: 0.05em; /* Example value for tighter spacing */
}
