/* ============================================
   ÇELİKLER MOBİLYA - MODERN DESIGN
   Color Palette: Orange, Black, Gray, White
   ============================================ */

:root {
    --orange: #ff6b35;
    --orange-dark: #e85a2a;
    --orange-light: #ff8c61;
    --black: #1a1a1a;
    --gray-dark: #2d2d2d;
    --gray: #4a4a4a;
    --gray-light: #6a6a6a;
    --white: #ffffff;
    
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-orange: 0 4px 20px rgba(255, 107, 53, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */

.background-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-slideshow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.45);
    z-index: 1;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.bg-slide.active {
    opacity: 1;
}

/* ============================================
   NAVBAR - MODERN & SLEEK
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.8rem 5%;
    box-shadow: var(--shadow);
    border-bottom: 2px solid var(--orange);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.navbar-logo {
    height: 50px;
    transition: transform 0.3s;
    filter: brightness(1.2);
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.navbar-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 0.5rem 0;
    position: relative;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s;
}

.navbar-menu a:hover {
    color: var(--orange);
}

.navbar-menu a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--orange);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
}

/* Navbar Catalog Button */
.navbar-catalog-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.navbar-catalog-btn::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;
}

.navbar-catalog-btn:hover::before {
    left: 100%;
}

.navbar-catalog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.navbar-catalog-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.navbar-catalog-btn:hover svg {
    transform: translateY(2px);
}

.navbar-catalog-btn span {
    white-space: nowrap;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(255, 107, 53, 0.2);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--orange);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ============================================
   HERO - PREMIUM & MODERN
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    z-index: 0;
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 107, 53, 0.6);
    border-radius: 50%;
    animation: float 20s infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    top: 40%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 17s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
    }
}

/* Premium Hero Content */
.hero-content-premium {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 900px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease 0.2s backwards;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Logo with Glow Effect */
.hero-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-logo-premium {
    width: 220px;
    animation: fadeInScale 1s ease 0.3s backwards;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
    transition: all 0.4s ease;
}

.hero-logo-premium:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.8));
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
    animation: fadeInLeft 1s ease 0.5s backwards;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInRight 1s ease 0.6s backwards;
    position: relative;
}

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

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

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

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 300;
    animation: fadeIn 1s ease 0.7s backwards;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    animation: fadeInUp 1s ease 0.8s backwards;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 107, 53, 0.5), transparent);
}

/* Hero Buttons */
.hero-content-premium .hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s backwards;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff8c42);
    color: var(--white);
    border: none;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-hero-primary::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;
}

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

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.btn-hero-secondary {
    background: rgba(26, 26, 26, 0.6);
    color: var(--white);
    border: 2px solid rgba(255, 107, 53, 0.5);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-icon {
    transform: translateX(5px);
}

.btn-hero-secondary:hover .btn-icon {
    transform: scale(1.2);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s ease 1.2s backwards;
}

.scroll-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

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

/* Legacy Hero Styles (for other pages) */
.hero-content {
    text-align: center;
    padding: 4rem 3rem;
    max-width: 1000px;
    background: rgba(26, 26, 26, 0.65);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.hero-content-simple {
    text-align: center;
    padding: 3rem 2rem;
    max-width: 600px;
    animation: fadeInScale 1s ease;
}

.hero-content-modern {
    text-align: center;
    padding: 2.5rem 2rem;
    max-width: 550px;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    border: 2px solid rgba(255, 107, 53, 0.4);
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.4);
    animation: fadeInScale 1s ease;
    position: relative;
    overflow: hidden;
}

.hero-content-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.hero-logo-wrapper {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.hero-logo-compact {
    width: 200px;
    animation: fadeInScale 1s ease;
    filter: drop-shadow(0 0 25px rgba(255, 107, 53, 0.6));
    transition: transform 0.3s;
}

.hero-logo-compact:hover {
    transform: scale(1.05);
}

.hero-tagline {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.tagline-text {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(255, 107, 53, 0.1));
    border-radius: 50px;
    border: 1px solid rgba(255, 107, 53, 0.5);
    animation: fadeIn 1s ease 0.3s backwards;
    position: relative;
    overflow: hidden;
}

.tagline-text::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;
}

.tagline-text:hover::before {
    left: 100%;
}

.hero-content-modern .hero-buttons {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 280px;
    margin-bottom: 2rem;
    animation: fadeInScale 1s ease;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease 0.2s backwards;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    animation: fadeIn 1s ease 0.4s backwards;
    font-weight: 300;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 0.6s backwards;
}

/* ============================================
   BUTTONS - BOLD & MODERN
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--orange);
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

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

.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-3px) scale(1.05);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 6rem 5%;
    position: relative;
}

.section-dark {
    background: rgba(45, 45, 45, 0.25);
    backdrop-filter: blur(10px);
}

.section-darker {
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(10px);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.glass-box {
    background: rgba(45, 45, 45, 0.35);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 1px solid rgba(255, 107, 53, 0.4);
}

.glass-box:hover {
    box-shadow: var(--shadow-orange);
    transform: translateY(-8px);
    border-color: var(--orange);
}

/* ============================================
   PRODUCT GRID
   ============================================ */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: rgba(45, 45, 45, 0.35);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 2px solid rgba(255, 107, 53, 0.4);
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
    pointer-events: none;
}

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

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

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--orange);
}

.product-info p {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--orange);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

/* Product Details Modal */
.product-details {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--orange);
    animation: slideDown 0.4s ease;
}

.product-details.active {
    display: block;
}

.product-details ul {
    list-style: none;
    padding-left: 0;
}

.product-details li {
    padding: 0.5rem 0;
    color: var(--white);
    position: relative;
    padding-left: 25px;
}

.product-details li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

/* ============================================
   FORMS
   ============================================ */

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(45, 45, 45, 0.35);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.4);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: rgba(45, 45, 45, 0.4);
    color: var(--white);
    backdrop-filter: blur(15px);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-button:hover {
    background: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

/* ============================================
   CONTACT
   ============================================ */

/* Contact Hero */
.contact-hero {
    padding: 8rem 5% 5rem;
    text-align: center;
    position: relative;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease;
}

.contact-hero-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
}

/* Contact Grid Modern */
.contact-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(45, 45, 45, 0.35);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

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

.contact-card:hover {
    box-shadow: var(--shadow-orange);
    transform: translateY(-10px);
    border-color: var(--orange);
}

.contact-card-highlight {
    border-color: var(--orange);
    background: rgba(255, 107, 53, 0.15);
}

.contact-card-highlight::before {
    opacity: 0.5;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.contact-card-icon svg {
    width: 40px;
    height: 40px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-card-main {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-card-main a {
    color: var(--orange);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-card-main a:hover {
    color: var(--orange-light);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.contact-card-info {
    position: relative;
    z-index: 1;
}

.contact-card-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-box {
    background: rgba(45, 45, 45, 0.35);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 1px solid rgba(255, 107, 53, 0.4);
}

.contact-box:hover {
    box-shadow: var(--shadow-orange);
    transform: translateY(-8px);
    border-color: var(--orange);
}

/* Contact Form Modern */
.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(45, 45, 45, 0.35);
    backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: 30px;
    border: 2px solid rgba(255, 107, 53, 0.4);
    box-shadow: var(--shadow-lg);
}

.modern-form {
    position: relative;
}

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

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.form-label svg {
    width: 20px;
    height: 20px;
    color: var(--orange);
}

.form-button-modern {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.form-button-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.form-button-modern svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.form-button-modern:hover svg {
    transform: translateX(5px);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 450px;
    border: 2px solid var(--orange);
    background: rgba(45, 45, 45, 0.4);
    backdrop-filter: blur(20px);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(45, 45, 45, 0.35);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.4);
}

.about-content h2 {
    margin-bottom: 2rem;
    text-align: left;
}

.about-content h3 {
    color: var(--orange);
    margin-top: 2rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
    width: 38px;
    height: 38px;
    fill: var(--white);
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination button {
    background: rgba(45, 45, 45, 0.5);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 107, 53, 0.4);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 500;
    min-width: 45px;
}

.pagination button:hover:not(:disabled) {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.pagination button.active {
    background: var(--orange);
    border-color: var(--orange);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.pagination button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination .page-info {
    color: var(--white);
    font-size: 1rem;
    padding: 0 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px);
    color: var(--white);
    padding: 4rem 5% 2rem;
    border-top: 2px solid var(--orange);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    color: var(--orange);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--white);
    font-size: 1rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

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

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .navbar-catalog-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .navbar-catalog-btn span {
        display: none;
    }
    
    .navbar-catalog-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s;
        box-shadow: var(--shadow);
        border-bottom: 2px solid var(--orange);
    }
    
    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 0.5rem;
        box-shadow: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-logo-premium {
        width: 180px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-divider {
        width: 80%;
        height: 1px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-content-premium .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 4rem 5%;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero {
        padding: 6rem 5% 4rem;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 200px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-logo-premium {
        width: 150px;
    }
    
    .hero-content-premium {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .navbar-logo {
        height: 60px;
    }
    
    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-card-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .hero-content-modern {
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .hero-logo-compact {
        width: 150px;
    }
    
    .tagline-text {
        font-size: 1rem;
        letter-spacing: 2px;
        padding: 0.6rem 1.5rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.mb-2 {
    margin-bottom: 2rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 4rem;
}

.text-orange {
    color: var(--orange);
}
