/* ========================================
   LARI STYLE - CSS Styles
   Modern, Elegant, Responsive Design
   ======================================== */

/* CSS Variables for Consistent Design */
:root {
    /* Colors - Luxury Fashion Palette */
    --color-secondary: #d4af37;
    --color-accent: #b8860b;
    --color-champagne: #f7e7ce;
    --color-white: #ffffff;
    --color-light-gray: #f8f9fa;
    --color-medium-gray: #6c757d;
    --color-dark-gray: #343a40;
    --color-black: #000000;
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    --section-padding: var(--spacing-xxl) 0;
    --container-padding: 0 var(--spacing-md);
    
    /* Shadows */
    --shadow-subtle: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-strong: 0 8px 32px rgba(0,0,0,0.2);
    
    /* Border Radius */
    --border-radius-none: 0px;
    --border-radius-small: 0px;
    --border-radius-medium: 0px;
    
    /* Transitions */
    --transition-default: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
    
    /* Gold Gradients */
    --gold-gradient-primary: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #f7e7ce 100%);
    --gold-gradient-dark: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #f7e7ce 100%);
    --gold-metallic: linear-gradient(135deg, #d4af37 0%, #f7e7ce 25%, #b8860b 50%, #d4af37 75%, #f7e7ce 100%);
    --gold-shine: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.4) 50%, transparent 100%);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
    background-color: var(--color-primary);
    overflow-x: hidden;
}

small {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-fast);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Shiny Gold Effects */
.shiny-gold {
    background: var(--gold-metallic);
    background-size: 200% 200%;
    animation: goldShine 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.shiny-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-shine);
    animation: shine 2s infinite;
    pointer-events: none;
}

.shiny-gold-text {
    background: var(--gold-metallic);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 3s ease-in-out infinite;
    font-weight: bold;
}

/* Section Titles */
.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #111213;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--color-secondary);
    margin: 0 auto 30px;
    border-radius: 0px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section subtitles on light backgrounds */
.about .section-subtitle,
.gallery .section-subtitle {
    color: var(--color-medium-gray);
}

/* Section subtitles on dark backgrounds */
.products .section-subtitle,
.contact .section-subtitle {
    color: var(--color-medium-gray);
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 18, 19, 0.85) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    transition: var(--transition-fast);
    padding: 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(17, 18, 19, 0.95) !important;
    box-shadow: var(--shadow-medium);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gold-metallic);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 3s ease-in-out infinite;
    letter-spacing: 2px;
    position: relative;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--color-white);
    padding: 8px 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: var(--transition-fast);
}

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

/* CTA Button */
.cta-button {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--border-radius-none);
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-default);
}

.cta-button:hover {
    background: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    margin: 3px 0;
    transition: var(--transition-fast);
    border-radius: 0px;
}

.nav-hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   HERO SECTION
   ======================================== */

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    overflow: hidden;
}

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

.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;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo h1 {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 10px;
    background: var(--gold-metallic);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out, goldShine 4s ease-in-out infinite;
    animation-delay: 0s, 1s;
    position: relative;
}

.logo-underline {
    width: 120px;
    height: 4px;
    background: var(--gold-gradient-primary);
    background-size: 200% 200%;
    margin: 0 auto 30px;
    border-radius: 0px;
    animation: expandWidth 1.5s ease-out 0.5s both, goldShine 3s ease-in-out infinite;
    animation-delay: 0.5s, 2s;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-top: -20px;
    margin-bottom: 25px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
    display: inline-block;
    background: var(--gold-metallic);
    background-size: 200% 200%;
    color: var(--color-primary);
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    margin-top: -15px;
    transition: var(--transition-fast);
    animation: fadeInUp 1s ease-out 0.6s both, goldShine 3s ease-in-out infinite;
    animation-delay: 0.6s, 2s;
    position: relative;
    overflow: hidden;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-shine);
    animation: shine 3s infinite;
    pointer-events: none;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Slideshow Controls */
.slideshow-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 4;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.slideshow-controls button {
    background: transparent;
    border: none;
    color: var(--color-secondary);
    width: 30px;
    height: 30px;
    position: relative;
    transition: var(--transition-fast);
}

.slideshow-controls button::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-top: 3px solid var(--color-secondary);
    border-right: 3px solid var(--color-secondary);
    top: 50%;
    left: 50%;
    transition: var(--transition-fast);
}

.prev-btn::before {
    transform: translate(-25%, -50%) rotate(-135deg);
}

.next-btn::before {
    transform: translate(-75%, -50%) rotate(45deg);
}

.slideshow-controls button:hover {
    transform: scale(1.1);
}

.slideshow-controls button:hover::before {
    border-color: var(--color-secondary);
    opacity: 0.8;
}

/* Slideshow Indicators */
.slideshow-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active,
.indicator:hover {
    background: var(--gold-gradient-primary);
    background-size: 200% 200%;
    transform: scale(1.2);
    animation: goldShine 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--color-secondary);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--color-secondary);
    border-right: 2px solid var(--color-secondary);
    transform: rotate(45deg);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* About Section Images */
.about-image img {
    width: 100%;
    border-radius: 0px;
    box-shadow: var(--shadow-medium);
}

.image-frame {
    display: none;
}

/* About Text */
.about-text {
    padding-left: 20px;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
    color: #111213 !important;
}

.about-text .title-underline {
    margin: 0 0 30px;
}

.about-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: #111213;
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #111213;
}

.about-features {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-default);
}

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

.feature i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    width: 30px;
    text-align: center;
}

.feature span {
    font-weight: 600;
    color: #111213;
}

/* About Section Inverted */
.about-inverted {
    background: var(--color-light-gray);
}

.about-content-inverted {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content-inverted .about-text {
    order: 1;
    padding-right: 20px;
    padding-left: 0;
}

.about-content-inverted .about-image {
    order: 2;
}

.about-inverted .section-title {
    color: #111213 !important;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */

/* Products Section */
.products {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-small);
}

.product-carousel {
    display: flex;
    gap: 0;
}

/* Product Cards */
.product-card {
    flex: 0 0 33.333%;
    margin: 0;
    background: var(--color-white);
    border: none;
    border-radius: 0px;
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
    transition: var(--transition-default);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}

.product-card-link:hover {
    text-decoration: none;
}

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

.product-image {
    border-radius: 0px;
    overflow: hidden;
    height: 200px;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-info {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    flex: 1;
}

.product-info h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-dark-gray);
    text-transform: none;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-dark-gray);
    margin-bottom: 10px;
}

.product-description {
    color: var(--color-medium-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 60px;
}

/* Product Detail Pages */
.product-detail-hero {
    background: var(--color-white);
    padding: 140px 0 80px;
    color: var(--color-dark-gray);
}

.product-detail-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.product-detail-info {
    flex: 1;
}

.product-detail-title {
    font-family: var(--font-primary);
    font-size: 3.2rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.product-detail-description {
    background: var(--color-light-gray);
    padding: 20px;
    border-left: 3px solid var(--color-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    min-height: 160px;
}

.product-detail-description p {
    color: var(--color-dark-gray);
}

.product-detail-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.product-detail-image img {
    width: 548px;
    height: 548px;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
}

.product-detail-back {
    margin-top: 40px;
}

.product-detail-back a {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.product-detail-back a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-secondary);
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--color-secondary);
    width: 30px;
    height: 30px;
    z-index: 2;
    transition: var(--transition-fast);
    cursor: pointer;
}

.carousel-btn::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-top: 3px solid var(--color-secondary);
    border-right: 3px solid var(--color-secondary);
    top: 50%;
    left: 50%;
    transition: var(--transition-fast);
}

.carousel-btn.prev::before {
    transform: translate(-25%, -50%) rotate(-135deg);
}

.carousel-btn.next::before {
    transform: translate(-75%, -50%) rotate(45deg);
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:hover::before {
    border-color: var(--color-secondary);
    opacity: 0.8;
}

.carousel-btn.prev {
    left: -60px;
}

.carousel-btn.next {
    right: -60px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: none; /* Hidden on desktop (navigation buttons available) */
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gray);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active,
.carousel-dot:hover {
    background: var(--gold-gradient-primary);
    background-size: 200% 200%;
    transform: scale(1.2);
    animation: goldShine 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* ========================================
   GALLERY SECTION
   ======================================== */

/* Gallery Section */
.gallery {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 0px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px 10px 15px;
}

.gallery-content {
    text-align: center;
    color: var(--color-white);
}

.gallery-content h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-content p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

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

/* Contact Section */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 30px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0px;
    box-shadow: var(--shadow-subtle);
    border-left: 4px solid var(--color-secondary);
    transition: var(--transition-default);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin-top: 5px;
    width: 25px;
}

.contact-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50px;
    align-items: flex-start;
}

.contact-icons i {
    font-size: 1.8rem;
    color: var(--color-secondary);
    width: 30px;
    text-align: left;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #111213;
    margin-bottom: 8px;
    margin-top: 15px;
}

.contact-item h3:first-of-type {
    margin-top: 0;
}

.contact-item h3 + h3 {
    margin-top: 10px;
}

.contact-item p {
    color: #111213;
    line-height: 1.5;
    opacity: 0.9;
}

.contact-item a {
    color: #111213;
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--color-secondary);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 0px;
    box-shadow: var(--shadow-subtle);
    margin-top: 40px;
    width: 100%;
    max-width: none;
}

.contact-form-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #111213;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--color-secondary);
    background: rgba(255, 255, 255, 0.9);
    color: #111213;
    border-radius: 0px;
    font-size: 1rem;
    transition: var(--transition-fast);
    font-family: var(--font-secondary);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: rgba(17, 18, 19, 0.6);
    opacity: 1;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    border-width: 3px;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

/* Submit Button */
.submit-btn {
    background: var(--color-black);
    color: var(--color-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-none);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-default);
    width: 100%;
}

.submit-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

/* Map Container */
.map-container {
    height: 100%;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    min-height: 400px;
}

.map-placeholder {
    height: 100%;
    background: #080809;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    filter: none;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.map-placeholder small {
    opacity: 0.8;
}

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

.footer {
    background: rgba(17, 18, 19, 0.95);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.footer-section p,
.footer-section li {
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 8px;
}

.social-section {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-secondary-light);
    transform: translateY(-3px);
}

.footer-contact p,
.footer-hours p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--color-secondary);
    width: 15px;
}

.footer-services {
    list-style: none;
}

.footer-services li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-services li:last-child {
    border-bottom: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-secondary);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-metallic);
    background-size: 200% 200%;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 999;
    box-shadow: var(--shadow-medium);
    animation: goldShine 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-shine);
    animation: shine 2.5s infinite;
    pointer-events: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-gradient-dark);
    background-size: 200% 200%;
    transform: translateY(-3px);
    animation: goldShine 1.5s ease-in-out infinite, goldPulse 1s ease-in-out infinite;
}

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

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

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 120px;
    }
}

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

/* Shiny Gold Animations */
@keyframes goldShine {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes goldPulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Tablet Styles */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(17, 18, 19, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition-fast);
        border-right: 1px solid rgba(255, 215, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.2rem;
        margin: 10px 0;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    /* Hero */
    .hero-logo h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .slideshow-controls {
        padding: 0 15px;
    }
    
    .slideshow-controls button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-left: 0;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .about-text .title-underline {
        margin: 0 auto 30px;
    }
    
    /* Products */
    .product-card {
        flex: 0 0 calc(50% - 10px);
    }
    
    .carousel-btn {
        display: none;
    }
    
    /* Show carousel indicators on tablet/mobile */
    .carousel-indicators {
        display: flex;
    }
    
    /* Adjust carousel button position for smaller screens */
    .carousel-btn.prev {
        left: -40px;
    }
    
    .carousel-btn.next {
        right: -40px;
    }
    
    /* Product Detail Pages - Tablet Optimization */
    .product-detail-hero {
        padding: 120px 0 60px;
    }
    
    .product-detail-hero .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .product-detail-info {
        order: 2;
        width: 100%;
    }
    
    .product-detail-image {
        order: 1;
        width: 100%;
    }
    
    .product-detail-image img {
        width: 100%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
    }
    
    .product-detail-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .product-detail-description {
        padding: 18px;
        font-size: 1.05rem;
    }
    
    .product-detail-back {
        text-align: center;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    :root {
        --container-padding: 0 15px;
        --section-padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    /* Hero */
    .hero-logo h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    /* Products */
    .product-card {
        flex: 0 0 100%;
    }
    
    /* Product Detail Pages - Mobile Optimization */
    .product-detail-hero {
        padding: 100px 0 40px;
    }
    
    .product-detail-hero .container {
        flex-direction: column;
        gap: 30px;
    }
    
    .product-detail-info {
        order: 2;
        width: 100%;
    }
    
    .product-detail-image {
        order: 1;
        width: 100%;
    }
    
    .product-detail-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 1;
        object-fit: cover;
    }
    
    .product-detail-title {
        font-size: 2rem;
        letter-spacing: 0.05em;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .product-detail-description {
        padding: 15px;
        font-size: 1rem;
        min-height: auto;
        margin-bottom: 20px;
    }
    
    .product-detail-back {
        margin-top: 30px;
        text-align: center;
    }
    
    .product-detail-back a {
        padding: 12px 28px;
        font-size: 0.85rem;
        background: rgba(17, 18, 19, 0.9);
        border-color: var(--color-secondary);
        display: inline-block;
        width: auto;
        min-width: 200px;
    }
    
    /* Improve touch targets on mobile */
    .product-detail-back a {
        touch-action: manipulation;
    }
    
    /* Better spacing for mobile */
    .product-detail-description p {
        margin-bottom: 0;
        line-height: 1.6;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Extra Small Devices */
@media (max-width: 320px) {
    .hero-logo h1 {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* ========================================
   SERVICE PAGES STYLES
   ======================================== */

/* Semi Hero Section */
.semi-hero {
    height: 50vh;
    background: linear-gradient(rgba(17, 18, 19, 0.7), rgba(17, 18, 19, 0.7)), 
                url('https://images.unsplash.com/photo-1560066984-138dadb4c035?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.semi-hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.semi-hero-content {
    text-align: center;
    color: var(--color-white);
}

.semi-hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--color-white);
}

.semi-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Content Section */
.service-content {
    padding: var(--spacing-xxl) 0;
    background: var(--color-light-gray);
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-text {
    color: #111213;
}

.content-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 400;
    color: #111213;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.content-intro {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #111213;
}

.content-text h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 500;
    color: #111213;
    margin: 40px 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.content-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #111213;
}

.services-list {
    display: grid;
    gap: 30px;
    margin: 40px 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-default);
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.service-item i {
    font-size: 1.8rem;
    color: var(--color-secondary);
    width: 40px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.service-item h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: #111213;
    margin-bottom: 10px;
    text-transform: none;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #111213;
    margin: 0;
}

.cta-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 0px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 60px;
}

.cta-section h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.service-cta-btn {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-primary);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-default);
    margin-top: 20px;
}

.service-cta-btn:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.content-image {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
    margin-top: 60px;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: var(--shadow-medium);
}

.content-image .cta-section {
    margin-top: 0;
    width: 100%;
}

/* Before/After Images for Tricologia */
.before-after-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.before-after-item {
    position: relative;
    width: 100%;
}

.before-after-label {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: #111213;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    text-align: center;
    padding: 10px 20px;
    background: var(--color-light-gray);
    border-left: 4px solid var(--color-secondary);
}

.before-after-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0px;
    box-shadow: var(--shadow-medium);
    display: block;
}

/* Bottom Layout for Servizio Sposa */
.bottom-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: stretch;
}

.approach-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.approach-section h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 500;
    color: #111213;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.approach-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #111213;
}

.cta-section-sposa {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 0px;
    text-align: center;
    box-shadow: var(--shadow-subtle);
}

.cta-section-sposa h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 500;
    color: #111213;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cta-section-sposa p {
    color: #111213;
    margin-bottom: 20px;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .semi-hero-title {
        font-size: 2.5rem;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-item i {
        width: auto;
        margin-bottom: 10px;
    }
    
    .content-image {
        margin-top: 40px;
    }
    
    .before-after-container {
        gap: 25px;
    }
    
    .before-after-label {
        font-size: 1.3rem;
        padding: 8px 15px;
        margin-bottom: 12px;
    }
    
    .before-after-item img {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .content-image {
        margin-top: 30px;
    }
    
    .before-after-container {
        gap: 20px;
    }
    
    .before-after-label {
        font-size: 1.1rem;
        padding: 8px 12px;
        margin-bottom: 10px;
    }
    
    .before-after-item img {
        height: 250px;
    }
}

