/* ============================================
   CSS VARIABLES & GLOBAL STYLES
============================================ */
:root {
    --primary: #2c1810;
    --primary-light: #4a2c1a;
    --primary-rgb: 44, 24, 16;
    --accent: #c8963e;
    --accent-light: #dbb06a;
    --accent-dark: #a67c2e;
    --accent-rgb: 200, 150, 62;
    --cream: #fdf8f0;
    --cream-dark: #f5ece0;
    --light-bg: #faf6f1;
    --dark: #1a0e08;
    --text: #5a4a42;
    --text-light: #8a7a70;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2c1810 0%, #4a2c1a 50%, #3a2015 100%);
    --gradient-accent: linear-gradient(135deg, #c8963e 0%, #dbb06a 50%, #e8c88a 100%);
    --gradient-warm: linear-gradient(135deg, #fdf8f0 0%, #f5ece0 100%);
    --shadow-sm: 0 2px 20px rgba(44, 24, 16, 0.06);
    --shadow-md: 0 8px 40px rgba(44, 24, 16, 0.10);
    --shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.12);
    --shadow-gold: 0 8px 30px rgba(200, 150, 62, 0.25);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

img {
    max-width: 100%;
}

a {
    transition: all 0.3s ease;
}

/* Section Utilities */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .badge-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 150, 62, 0.1);
    color: var(--accent-dark);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(200, 150, 62, 0.15);
}

.section-title .badge-label i {
    font-size: 0.7rem;
    color: var(--accent);
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 18px;
}

.section-title h2 span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    max-width: 580px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ============================================
   PRELOADER
============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-wrap {
    text-align: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(200, 150, 62, 0.15);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

.loader-wrap span {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
    padding: 18px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97) !important;
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar-brand img {
    height: 55px;
    transition: all 0.4s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 42px;
}

.navbar-nav .nav-link {
    color: var(--primary) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 22px !important;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 22px;
    right: 22px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: right;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-dark) !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(44,24,16,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.btn-nav {
    background: var(--gradient-accent) !important;
    color: var(--white) !important;
    border: none;
    padding: 11px 30px !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-gold);
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(200, 150, 62, 0.35);
}

.btn-nav::after {
    display: none !important;
}

/* ============================================
   HERO SECTION
============================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--cream);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(253, 248, 240, 0.92) 9%,
            rgba(253, 248, 240, 0.80) 25%,
            rgba(253, 248, 240, 0.55) 50%,
            rgba(253, 248, 240, 0.30) 30%);
    /*z-index: 1;*/
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 150, 62, 0.12);
    border: 1px solid rgba(200, 150, 62, 0.2);
    color: var(--accent-dark);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-title span {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text);
    max-width: 520px;
    line-height: 1.9;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(44, 24, 16, 0.25);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(44, 24, 16, 0.35);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 40px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-custom:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
}

.hero-image {
    text-align: center;
    opacity: 0;
    animation: fadeInRight 1s ease forwards 0.5s;
}

.hero-image img {
    max-width: 90%;
    filter: drop-shadow(0 30px 60px rgba(44, 24, 16, 0.18));
    animation: floatIce 5s ease-in-out infinite;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(44, 24, 16, 0.08);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1s;
}

.hero-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-dark);
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
}

.hero-stat p {
    font-size: 0.82rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@keyframes floatIce {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(1deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Floating decorative elements */
.hero-decor {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-decor-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 150, 62, 0.08) 0%, transparent 70%);
    top: 5%;
    right: -120px;
    animation: floatDecor 10s ease-in-out infinite;
}

.hero-decor-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(44, 24, 16, 0.05) 0%, transparent 70%);
    bottom: 10%;
    left: -80px;
    animation: floatDecor 8s ease-in-out infinite reverse;
}

@keyframes floatDecor {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(25px, -25px);
    }
}

/* ============================================
   ABOUT SECTION
============================================ */
#about {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-image-wrap {
    position: relative;
    padding: 20px;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 2px solid rgba(200, 150, 62, 0.2);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.about-image-wrap img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.about-image-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--gradient-accent);
    color: var(--white);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
    border: 4px solid var(--white);
}

.about-image-badge span {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.about-image-badge small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.about-content .badge-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 150, 62, 0.1);
    color: var(--accent-dark);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(200, 150, 62, 0.15);
}

.about-content h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 22px;
    line-height: 1.25;
}

.about-text p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.98rem;
    text-align: justify;
}

.about-text strong {
    color: var(--primary);
    font-weight: 700;
}

.about-motto {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px 25px;
    background: rgba(44, 24, 16, 0.03);
    border-left: 4px solid var(--accent);
    border-radius: 0 15px 15px 0;
    font-style: italic;
}

.about-motto i {
    font-size: 1.5rem;
    color: var(--accent);
    opacity: 0.6;
}

.about-motto span {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 35px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--cream);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.about-feature-item:hover {
    border-color: rgba(200, 150, 62, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.about-feature-item i {
    width: 42px;
    height: 42px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.about-feature-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

/* ============================================
   PRODUCTS HIGHLIGHT SECTION
============================================ */
#products {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(44, 24, 16, 0.04);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: rgba(200, 150, 62, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: all 0.4s ease;
}

.product-card:hover .product-icon {
    background: var(--gradient-accent);
}

.product-icon i {
    font-size: 1.8rem;
    color: var(--accent);
    transition: color 0.4s ease;
}

.product-card:hover .product-icon i {
    color: var(--white);
}

.product-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   GALLERY SECTION
============================================ */
#gallery {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

#gallery::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 150, 62, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#gallery::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(44, 24, 16, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.gallery-header .ig-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.gallery-header .ig-handle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
}

.gallery-header .ig-handle a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.gallery-header .ig-handle a:hover {
    color: #dc2743;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* Staggered fade-in animation for gallery items */
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--cream-dark);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s ease;
}

.gallery-item.gallery-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-item:nth-child(1) {
    transition-delay: 0s;
}

.gallery-item:nth-child(2) {
    transition-delay: 0.08s;
}

.gallery-item:nth-child(3) {
    transition-delay: 0.16s;
}

.gallery-item:nth-child(4) {
    transition-delay: 0.24s;
}

.gallery-item:nth-child(5) {
    transition-delay: 0.32s;
}

.gallery-item:nth-child(6) {
    transition-delay: 0.40s;
}

.gallery-item:nth-child(7) {
    transition-delay: 0.48s;
}

.gallery-item:nth-child(8) {
    transition-delay: 0.56s;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.18);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        filter 0.6s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(44, 24, 16, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .caption {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay .caption {
    transform: translateY(0);
}

.gallery-overlay .ig-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-light);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease, transform 0.4s ease 0.15s;
    transform: translateY(10px);
}

.gallery-item:hover .gallery-overlay .ig-link {
    transform: translateY(0);
}

.gallery-overlay .ig-link:hover {
    color: #fff;
}

/* Gallery zoom icon on hover */
.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(200, 150, 62, 0.9);
    color: #fff;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    pointer-events: none;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Gallery skeleton */
.gallery-skeleton {
    background: linear-gradient(90deg, #f0ebe5 25%, #f8f3ed 50%, #f0ebe5 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    border-radius: var(--radius);
    aspect-ratio: 1;
}

@keyframes skeletonShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.gallery-cta {
    text-align: center;
    margin-top: 45px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border: none;
    padding: 16px 42px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-instagram:hover::before {
    left: 100%;
}

.btn-instagram:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(220, 39, 67, 0.35);
    color: #fff;
}

/* ============================================
   LIGHTBOX - Professional Cinematic Style
============================================ */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 5, 3, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.5s;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    transform: scale(0.85);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
        opacity 0.5s ease;
}

.gallery-lightbox.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 88vh;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    object-fit: contain;
    transition: opacity 0.4s ease;
}

.lightbox-content img.lightbox-fade {
    opacity: 0;
    transform: scale(0.96);
}

.lightbox-caption {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    text-align: center;
    padding: 18px 0 0;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 100000;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(200, 150, 62, 0.3);
    border-color: rgba(200, 150, 62, 0.4);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 30px rgba(200, 150, 62, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(200, 150, 62, 0.3);
    border-color: rgba(200, 150, 62, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(200, 150, 62, 0.2);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.06);
    padding: 8px 22px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    letter-spacing: 2px;
}

/* ============================================
   CONTACT SECTION
============================================ */
#contact {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 150, 62, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#contact::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(44, 24, 16, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(44, 24, 16, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: right;
}

.contact-info-card:hover::before,
.contact-info-card:hover::after {
    transform: scaleX(1);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(44, 24, 16, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(200, 150, 62, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(200, 150, 62, 0.15);
    transition: all 0.5s ease;
    animation: none;
}

.contact-info-card:hover .contact-icon::after {
    animation: spinDash 8s linear infinite;
    border-color: rgba(200, 150, 62, 0.3);
}

@keyframes spinDash {
    100% {
        transform: rotate(360deg);
    }
}

.contact-info-card:hover .contact-icon {
    background: var(--gradient-accent);
    box-shadow: 0 8px 25px rgba(200, 150, 62, 0.3);
    transform: scale(1.08);
}

.contact-icon i {
    font-size: 1.4rem;
    color: var(--accent);
    transition: all 0.5s ease;
}

.contact-info-card:hover .contact-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.contact-info-card h5 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.93rem;
    line-height: 1.7;
}

.contact-info-card a:hover {
    color: var(--accent);
}

/* Contact Form Premium Design */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(44, 24, 16, 0.08);
    border: 1px solid rgba(44, 24, 16, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent);
}

.contact-form-wrap::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(200, 150, 62, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-wrap h3 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
}

.contact-form-wrap>p {
    color: var(--text-light);
    margin-bottom: 35px;
    font-size: 0.95rem;
}

.form-floating {
    margin-bottom: 20px;
}

.form-floating .form-control,
.form-floating .form-select {
    border: 2px solid #f0ebe5;
    border-radius: 14px;
    padding: 18px 16px;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--cream);
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(200, 150, 62, 0.1),
        0 4px 15px rgba(200, 150, 62, 0.08);
    background: var(--white);
    transform: translateY(-1px);
}

.form-floating label {
    color: #999;
    font-size: 0.93rem;
    transition: all 0.3s ease;
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 18px 50px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(44, 24, 16, 0.2);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(44, 24, 16, 0.3);
    color: var(--white);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-submit .spinner-border {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 8px;
}

/* ============================================
   MAP SECTION - Premium Style
============================================ */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(44, 24, 16, 0.12);
    border: 1px solid rgba(44, 24, 16, 0.04);
    position: relative;
    height: 100%;
}

.map-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
    z-index: 1;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: none;
    display: block;
    filter: saturate(0.9) contrast(1.05);
    transition: filter 0.4s ease;
}

.map-wrap:hover iframe {
    filter: saturate(1) contrast(1);
}

/* ============================================
   FOOTER
============================================ */
footer {
    background: var(--gradient-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.footer-brand img {
    height: 55px;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-title {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 22px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-links a:hover::before {
    width: 12px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
    font-size: 0.95rem;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(200, 150, 62, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    margin-top: 50px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   SCROLL TO TOP
============================================ */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 14px;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-gold);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollTop.visible {
    opacity: 1;
    visibility: visible;
}

#scrollTop:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(200, 150, 62, 0.4);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title h2 {
        font-size: 2.6rem;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-image {
        margin-top: 40px;
    }

    .hero-stats {
        gap: 30px;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .about-content {
        margin-top: 40px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .contact-form-wrap {
        padding: 30px;
        margin-top: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .map-wrap iframe {
        min-height: 400px;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 24px;
        border-radius: var(--radius);
        margin-top: 10px;
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(44, 24, 16, 0.05);
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .section-title h2 {
        font-size: 1.9rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        border-radius: 12px;
    }

    .gallery-item::after {
        width: 44px;
        height: 44px;
        font-size: 0.9rem;
    }

    .lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .map-wrap iframe {
        min-height: 350px;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .about-image-badge {
        width: 95px;
        height: 95px;
        bottom: -10px;
        right: -10px;
    }

    .about-image-badge span {
        font-size: 1.6rem;
    }

    .contact-form-wrap {
        padding: 24px 20px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 13px 28px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .gallery-grid {
        gap: 8px;
    }

    .gallery-item {
        border-radius: 10px;
    }

    .contact-form-wrap {
        padding: 20px;
    }

    .about-image-wrap::before {
        display: none;
    }
}