/* ========================================
   LUXEPACK - Premium Jewelry Box Website
   Luxury Design System CSS
   ======================================== */

/* CSS Variables - Design System */
:root {
    /* Primary Colors */
    --gold: #D4AF37;
    --gold-light: #E8C547;
    --gold-dark: #B8942E;
    --navy-dark: #1B2845;
    --navy: #1E2F4F;

    /* Secondary Colors */
    --silver: #C0C0C0;
    --silver-light: #E8E8E8;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --light-gray: #F8F9FA;
    --gray: #6B7280;
    --dark-gray: #2C2C2C;
    --black: #111827;

    /* Accent Colors */
    --whatsapp: #25D366;
    --error: #E74C3C;
    --success: #27AE60;

    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;

    /* Container */
    --container-max: 1400px;
    --container-padding: 24px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--navy-dark);
    border: 1px solid var(--silver);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border: 2px solid var(--whatsapp);
}

.btn-whatsapp:hover {
    background: #1FB855;
    border-color: #1FB855;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navy-dark);
    padding: 16px 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.logo-icon {
    color: var(--gold);
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-links a {
    color: var(--silver-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--silver-light);
    font-size: 0.9rem;
}

.nav-phone:hover {
    color: var(--gold);
}

.nav-phone i {
    color: var(--gold);
}

.whatsapp-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--whatsapp);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-normal);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.mobile-nav-links a {
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.mobile-nav-links a:hover {
    color: var(--gold);
}

.mobile-menu-contact {
    text-align: center;
}

.mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--silver-light);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.mobile-socials {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.mobile-socials a {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.mobile-socials a:hover {
    background: var(--gold);
}

/* ========================================
   Hero Slider
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 6s ease-out;
}

.hero-slide.active .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(27, 40, 69, 0.6) 0%,
        rgba(27, 40, 69, 0.4) 50%,
        rgba(27, 40, 69, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 var(--container-padding);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: var(--space-md);
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--silver);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-sm);
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-normal);
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    width: 40px;
    border-radius: var(--radius-sm);
}

/* Hero Progress */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0;
    transition: width 5s linear;
}

/* Hero Navigation */
.hero-navigation {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-md);
    z-index: 10;
}

.hero-navigation .swiper-button-prev,
.hero-navigation .swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin: 0;
    transition: var(--transition-normal);
}

.hero-navigation .swiper-button-prev:hover,
.hero-navigation .swiper-button-next:hover {
    background: var(--gold);
}

.hero-navigation .swiper-button-prev::after,
.hero-navigation .swiper-button-next::after {
    font-size: 1.2rem;
}

/* ========================================
   Section Styles
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: 2.5rem;
    color: var(--navy-dark);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   Categories Section
   ======================================== */
.categories {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    aspect-ratio: 4/3;
}

.category-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.category-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(27, 40, 69, 0.85) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: var(--transition-normal);
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-normal);
    transition-delay: 0.1s;
}

.category-card:hover .category-icon {
    transform: translateY(0);
    opacity: 1;
}

.category-hover-text {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-normal);
    transition-delay: 0.2s;
    margin: 0;
}

.category-card:hover .category-hover-text {
    transform: translateY(0);
    opacity: 1;
}

.category-info {
    padding: var(--space-sm) var(--space-md);
    text-align: center;
    background: var(--white);
}

.category-info h3 {
    font-size: 0.9rem;
    color: var(--navy-dark);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.category-info p {
    font-size: 1rem;
    margin: 0;
}

/* ========================================
   Gallery Items (Additional 8 items)
   ======================================== */
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    aspect-ratio: 4/3;
}

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

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(27, 40, 69, 0.85) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-normal);
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
    opacity: 1;
}

.gallery-hover-text {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-normal);
    transition-delay: 0.2s;
}

.gallery-item:hover .gallery-hover-text {
    transform: translateY(0);
    opacity: 1;
}

.gallery-info {
    padding: var(--space-sm) var(--space-md);
    text-align: center;
    background: var(--white);
}

.gallery-info h3 {
    font-size: 0.85rem;
    color: var(--navy-dark);
    margin-bottom: 0;
    font-weight: 600;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
}

.about-text {
    color: var(--gray);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--silver-light);
    border-bottom: 1px solid var(--silver-light);
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: var(--space-xs);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--navy-dark);
}

.feature-item i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ========================================
   Products Section
   ======================================== */
.products {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.products-swiper-container {
    position: relative;
    padding: 0 60px;
}

.products-swiper {
    overflow: hidden;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

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

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

.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 6px 12px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.product-badge.popüler {
    background: var(--navy-dark);
}

.product-overlay {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-normal);
}

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

.quick-view-btn,
.wishlist-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.quick-view-btn:hover,
.wishlist-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.wishlist-btn.active {
    color: var(--error);
}

.wishlist-btn.active i {
    font-weight: 900;
}

.product-info {
    padding: var(--space-lg);
}

.product-category {
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1.1rem;
    margin: var(--space-xs) 0;
}

.product-code {
    font-size: 0.8rem;
    color: var(--gray);
    display: block;
    margin-bottom: var(--space-md);
}

.product-actions {
    display: flex;
    gap: var(--space-sm);
}

.products-prev,
.products-next {
    color: var(--navy-dark);
}

.products-prev:hover,
.products-next:hover {
    color: var(--gold);
}

/* ========================================
   Why Us Section
   ======================================== */
.why-us {
    padding: var(--space-4xl) 0;
    background: var(--light-gray);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.why-us-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--silver-light);
    transition: var(--transition-normal);
}

.why-us-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-us-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--space-lg);
}

.why-us-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.why-us-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   References Section
   ======================================== */
.references {
    padding: var(--space-3xl) 0;
    background: var(--white);
}

.references-slider {
    overflow: hidden;
    position: relative;
}

.references-track {
    display: flex;
    gap: var(--space-2xl);
    animation: scroll 30s linear infinite;
}

.reference-logo {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    border: 1px solid var(--silver-light);
    border-radius: var(--radius-md);
    color: var(--gray);
    transition: var(--transition-normal);
}

.reference-logo:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.05);
}

.reference-logo i {
    font-size: 1.5rem;
}

.reference-logo span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   Instagram Feed
   ======================================== */
.instagram-feed {
    padding: var(--space-4xl) 0;
    background: var(--light-gray);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md);
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 40, 69, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 2rem;
    color: var(--white);
}

/* ========================================
   Contact CTA Section
   ======================================== */
.contact-cta {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.contact-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.contact-cta p {
    font-size: 1.1rem;
    color: var(--silver);
    margin-bottom: var(--space-2xl);
}

.contact-cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

/* ========================================
   Contact Form Section
   ======================================== */
.contact-section {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
}

.contact-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.contact-text {
    color: var(--gray);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
}

.contact-item i {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--light-gray);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.contact-item p,
.contact-item a {
    font-size: 0.9rem;
    color: var(--gray);
}

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

.contact-socials {
    display: flex;
    gap: var(--space-md);
}

.contact-socials a {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--light-gray);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.contact-socials a:hover {
    background: var(--gold);
    color: var(--white);
}

.contact-form-wrapper {
    background: var(--light-gray);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--silver);
    border-radius: var(--radius-md);
    background: var(--white);
    font-size: 0.95rem;
    color: var(--navy-dark);
    transition: var(--transition-normal);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: var(--gray);
    pointer-events: none;
    transition: var(--transition-normal);
}

.form-group textarea + label {
    top: 20px;
    transform: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 0.75rem;
    background: var(--light-gray);
    padding: 0 10px;
    color: var(--gold);
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 16px 20px;
    border: 2px dashed var(--silver);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition-normal);
}

.file-upload label:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ========================================
   Map Section
   ======================================== */
.map-section {
    height: 400px;
}

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

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

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--navy-dark);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-logo .logo-icon {
    color: var(--gold);
    font-size: 1.5rem;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
}

.footer-logo .logo-accent {
    color: var(--gold);
}

.footer-about p {
    color: var(--silver);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.footer-socials {
    display: flex;
    gap: var(--space-md);
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.footer-socials a:hover {
    background: var(--gold);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--silver);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

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

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    color: var(--silver);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-contact a {
    color: var(--silver);
}

.footer-contact a:hover {
    color: var(--gold);
}

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

.footer-bottom p {
    color: var(--silver);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-bottom-links a {
    color: var(--silver);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ========================================
   Floating Buttons
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--whatsapp);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

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

/* AOS Animation Classes */
[data-aos] {
    opacity: 1;
    transform: none;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-grid {
        gap: var(--space-2xl);
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-md);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-secondary {
        right: 0;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-pagination {
        bottom: 80px;
    }

    .hero-navigation {
        bottom: 80px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
    }

    .about-stats {
        justify-content: space-around;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .products-swiper-container {
        padding: 0;
    }

    .products-prev,
    .products-next {
        display: none;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cta h2 {
        font-size: 1.8rem;
    }

    .contact-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .footer-contact ul {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .nav-phone span {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .category-card {
        max-width: none;
        margin: 0;
    }

    .about-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .stat-number {
        font-size: 2rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        bottom: 80px;
        right: 20px;
    }
}

/* ========================================
   Page Hero Styles
   ======================================== */
.page-hero {
    position: relative;
    height: 26vh;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(27, 40, 69, 0.7) 0%, rgba(27, 40, 69, 0.5) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--container-padding);
}

.page-hero-content h1 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    color: var(--silver);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--silver);
    transition: var(--transition-normal);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

/* ========================================
   About Page Styles
   ======================================== */
.about-page {
    padding: 56px 0;
    background: var(--light-gray);
}

.about-buttons {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

/* ========================================
   Product Showcase Styles
   ======================================== */
.product-showcase {
    padding: 56px 0;
    background: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.showcase-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
}

.showcase-content {
    padding: var(--space-lg);
}

.showcase-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.showcase-content h3 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    color: var(--navy-dark);
}

.showcase-description {
    color: var(--gray);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.showcase-features {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--navy-dark);
    font-weight: 500;
}

.showcase-features li i {
    color: var(--gold);
}

.showcase-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ========================================
   Why Choose Us Page Styles
   ======================================== */
.why-choose-us {
    padding: 56px 0;
    background: var(--light-gray);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.why-choose-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--silver-light);
    transition: var(--transition-normal);
}

.why-choose-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--space-lg);
}

.why-choose-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.why-choose-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   CTA Section Styles
   ======================================== */
.cta-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--silver);
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Gallery Page Styles
   ======================================== */
.gallery-section {
    padding: 56px 0;
    background: var(--white);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 1px solid var(--silver);
    background: var(--white);
    color: var(--navy-dark);
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition-normal);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.gallery-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.gallery-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 40, 69, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-zoom-btn,
.gallery-link-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--white);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.gallery-link-btn {
    width: auto;
    padding: 12px 24px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.gallery-zoom-btn:hover {
    background: var(--gold);
    color: var(--white);
}

.gallery-link-btn:hover {
    background: var(--gold-dark);
}

.gallery-card-info {
    padding: var(--space-md);
    text-align: center;
}

.gallery-card-info h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
    color: var(--navy-dark);
}

.gallery-card-info p {
    font-size: 0.85rem;
    color: var(--gold);
}

/* ========================================
   Products Page Styles
   ======================================== */
.products-page {
    padding: 56px 0;
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-section-page {
    padding: 56px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
}

.contact-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.contact-text {
    color: var(--gray);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.contact-details-page {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-item-page {
    display: flex;
    gap: var(--space-md);
}

.contact-item-page i {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--light-gray);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-page h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.contact-item-page p,
.contact-item-page a {
    font-size: 0.9rem;
    color: var(--gray);
}

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

.contact-socials-page {
    display: flex;
    gap: var(--space-md);
}

.contact-socials-page a {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--light-gray);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-normal);
}

.contact-socials-page a:hover {
    background: var(--gold);
    color: var(--white);
}

.contact-form-wrapper-page {
    background: var(--light-gray);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
}

.contact-form-page {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-group-page {
    position: relative;
}

.form-group-page input,
.form-group-page select,
.form-group-page textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--silver);
    border-radius: var(--radius-md);
    background: var(--white);
    font-size: 0.95rem;
    color: var(--navy-dark);
    transition: var(--transition-normal);
}

.form-group-page label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: var(--gray);
    pointer-events: none;
    transition: var(--transition-normal);
}

.form-group-page textarea + label {
    top: 20px;
    transform: none;
}

.form-group-page input:focus,
.form-group-page select:focus,
.form-group-page textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group-page input:focus + label,
.form-group-page input:valid + label,
.form-group-page select:focus + label,
.form-group-page select:valid + label,
.form-group-page textarea:focus + label,
.form-group-page textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 0.75rem;
    background: var(--light-gray);
    padding: 0 10px;
    color: var(--gold);
}

.file-upload-page {
    position: relative;
}

.file-upload-page input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-upload-page label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 16px 20px;
    border: 2px dashed var(--silver);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition-normal);
}

.file-upload-page label:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ========================================
   Map Section Page Styles
   ======================================== */
.map-section-page {
    background: var(--light-gray);
}

.map-container-page {
    width: 100%;
    height: 450px;
}

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

/* ========================================
   Quick Contact Section Styles
   ======================================== */
.quick-contact-section {
    padding: var(--space-2xl) 0;
    background: var(--navy-dark);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.quick-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    text-align: center;
    transition: var(--transition-normal);
}

.quick-contact-item:hover {
    background: var(--gold);
    transform: translateY(-5px);
}

.quick-contact-item i {
    font-size: 2rem;
    color: var(--gold);
    transition: var(--transition-normal);
}

.quick-contact-item:hover i {
    color: var(--white);
}

.quick-contact-item span {
    font-size: 0.9rem;
    color: var(--silver);
}

.quick-contact-item strong {
    font-size: 1.1rem;
}

.quick-contact-item.whatsapp:hover {
    background: var(--whatsapp);
}

/* ========================================
   Category Card Link Styles
   ======================================== */
.category-card-link {
    text-decoration: none;
    color: inherit;
}

.category-card-link:hover .category-card {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Responsive Styles for New Pages
   ======================================== */
@media (max-width: 1200px) {
    .showcase-grid {
        gap: var(--space-2xl);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 24vh;
        min-height: 160px;
    }

    .page-hero-content h1 {
        font-size: 1.6rem;
    }

    .showcase-content h3 {
        font-size: 1.5rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-hero-content h1 {
        font-size: 1.6rem;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card-info h3 {
        font-size: 0.9rem;
    }
}

/* ========================================
   Kategoriler Page - Detail Grid
   ======================================== */
.categories-page {
    padding: 56px 0;
    background: var(--light-gray);
}

.categories-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.cat-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.cat-detail-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.cat-detail-link {
    display: block;
    color: inherit;
}

.cat-detail-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.cat-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cat-detail-card:hover .cat-detail-image img {
    transform: scale(1.08);
}

.cat-detail-overlay {
    position: absolute;
    inset: 0;
    background: rgba(27, 40, 69, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.cat-detail-overlay i {
    font-size: 2.5rem;
    color: var(--white);
}

.cat-detail-card:hover .cat-detail-overlay {
    opacity: 1;
}

.cat-detail-body {
    padding: var(--space-lg);
}

.cat-detail-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.cat-detail-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: var(--space-sm);
}

.cat-detail-body p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.cat-detail-cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.cat-detail-card:hover .cat-detail-cta {
    gap: 10px;
}

/* ========================================
   Ürünler Sayfası — Tab + 6'lı Izgara
   ======================================== */
.product-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.product-tab {
    padding: 10px 22px;
    border: 1.5px solid var(--silver);
    background: var(--white);
    color: var(--navy-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-tab:hover,
.product-tab.active {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    color: var(--white);
}

.products-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.product-card-sm {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.product-card-sm:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.product-card-sm .product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.product-card-sm .product-info {
    padding: 16px;
}

.product-card-sm .product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.product-card-sm .product-code {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.product-card-sm .product-desc {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .products-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-grid-6 {
        grid-template-columns: 1fr;
    }
    .product-tabs {
        gap: 6px;
    }
    .product-tab {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}

/* ========================================
   Product Category Sections
   ======================================== */
.product-category-section {
    margin-bottom: 52px;
}

.product-category-section:last-child {
    margin-bottom: 0;
}

.product-category-header {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 24px;
}

.product-category-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.product-category-header h3 i {
    color: var(--gold);
    font-size: 1rem;
}

.product-category-header span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ========================================
   Products Filter (korundu, başka yerlerde kullanılıyor)
   ======================================== */
.products-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.product-card .product-desc {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.5;
    margin: var(--space-sm) 0 var(--space-md);
}

/* ========================================
   Ürün Detay Modalı
   ======================================== */
.prod-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    z-index: 99990;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.prod-modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 760px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,.35);
    max-height: 90vh;
}

.prod-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(0,0,0,.45);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.prod-modal-close:hover { background: rgba(0,0,0,.7); }

.prod-modal-img {
    background: var(--light-gray);
    overflow: hidden;
}

.prod-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 280px;
}

.prod-modal-body {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.prod-modal-cat {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212,175,55,.12);
    color: var(--gold-dark);
    border-radius: var(--radius-full);
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.prod-modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.prod-modal-desc {
    font-size: .9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

.prod-modal-btn {
    align-self: flex-start;
}

@media (max-width: 600px) {
    .prod-modal-box { grid-template-columns: 1fr; }
    .prod-modal-img img { min-height: 200px; max-height: 220px; }
}

/* ========================================
   Lightbox
   ======================================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

.lightbox-caption {
    color: var(--silver-light);
    text-align: center;
    margin-top: 12px;
    font-size: 0.9rem;
}

/* ========================================
   Responsive - Kategoriler Detail Grid
   ======================================== */
@media (max-width: 1200px) {
    .categories-detail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
