/* 1. CSS Reset */
*, *::before, *::after { box-sizing: border-box; }
html:focus-within { scroll-behavior: smooth; }
html, body { height: 100%; }
body { margin: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; background: #0a0a0a; color: #f6f6f6; line-height: 1.6; padding-top: 68px; overflow-x: hidden; }
body.loading { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* 2. CSS Variables */
:root {
  --color-bg: #0a0a0a;
  --color-text: #f6f6f6;
  --color-muted: #b3b3b3;
  --color-gold: #d4af37;
  --color-gold-2: #b88a2a;
  --color-silver: #c0c0c0;
  --color-silver-2: #a8a8a8;
  --color-accent: #dfb34e;
  --color-silver-accent: #d4d4d4;
  --container: 1200px;
  --spacing-section: 88px;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* 3. Base Styles */
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { left: 16px; top: 16px; width: auto; height: auto; background: #000; color: #fff; padding: 12px 16px; border-radius: 6px; }

/* Page Loader */
.page-loader { position: fixed; inset: 0; background: #0a0a0a; z-index: 10000; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease, visibility 0.5s ease; }
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-ring { width: 140px; height: 140px; margin: 0 auto 24px; border: 4px solid rgba(212,175,55,0.2); border-top-color: var(--color-gold); border-right-color: var(--color-silver); border-radius: 50%; animation: loaderSpin 1s linear infinite; position: relative; display: flex; align-items: center; justify-content: center; }
.loader-logo { width: 90px; height: 90px; border-radius: 50%; object-fit: cover; position: absolute; z-index: 1; animation: loaderSpinReverse 1s linear infinite; }
@keyframes loaderSpinReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
.loader-text { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 600; background: linear-gradient(135deg, var(--color-gold), var(--color-silver), var(--color-gold)); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: loaderShimmer 2s linear infinite; }
@keyframes loaderSpin { to { transform: rotate(360deg); } }
@keyframes loaderShimmer { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.section { padding: var(--spacing-section) 0; }
.section-contrast { background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0)); }
.section-title { font-family: 'Poppins', sans-serif; font-size: 2rem; letter-spacing: 0.02em; margin: 0 0 28px; background: linear-gradient(135deg, var(--color-gold), var(--color-silver), var(--color-gold)); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: titleShimmer 6s linear infinite; }
@keyframes titleShimmer { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.section-divider { position: relative; width: 100%; height: 1px; margin: 60px 0; display: flex; align-items: center; justify-content: center; }
.divider-line { width: 80%; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), rgba(192,192,192,0.4), rgba(212,175,55,0.3), transparent); position: relative; box-shadow: 0 0 20px rgba(212,175,55,0.3), 0 0 40px rgba(192,192,192,0.2); animation: dividerGlow 3s ease-in-out infinite; }
.divider-line::before { content: ""; position: absolute; inset: -2px; background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), rgba(192,192,192,0.6), rgba(212,175,55,0.5), transparent); filter: blur(8px); opacity: 0.6; animation: dividerShimmer 4s ease-in-out infinite; }
.divider-sparkle { position: absolute; width: 6px; height: 6px; background: radial-gradient(circle, var(--color-gold), var(--color-silver)); border-radius: 50%; box-shadow: 0 0 12px rgba(212,175,55,0.8), 0 0 24px rgba(192,192,192,0.6); animation: sparkleMove 6s ease-in-out infinite; }
@keyframes dividerGlow { 0%, 100% { box-shadow: 0 0 20px rgba(212,175,55,0.3), 0 0 40px rgba(192,192,192,0.2); } 50% { box-shadow: 0 0 30px rgba(212,175,55,0.5), 0 0 60px rgba(192,192,192,0.4), 0 0 80px rgba(212,175,55,0.2); } }
@keyframes dividerShimmer { 0% { transform: translateX(-100%); opacity: 0; } 50% { opacity: 1; } 100% { transform: translateX(100%); opacity: 0; } }
@keyframes sparkleMove { 0% { left: 10%; opacity: 0; transform: scale(0.5); } 25% { opacity: 1; transform: scale(1.2); } 50% { left: 50%; transform: scale(1); } 75% { opacity: 1; transform: scale(1.2); } 100% { left: 90%; opacity: 0; transform: scale(0.5); } }

/* Assortment chips - gold and silver motifs */
.assortment { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0 18px; }
.chip { display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; color: var(--color-text); font-size: 0.95rem; position: relative; overflow: hidden; }
.chip:nth-child(odd) { border: 1px solid rgba(223,179,78,0.4); background: rgba(223,179,78,0.06); }
.chip:nth-child(odd)::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(180deg, var(--color-gold), var(--color-gold-2)); margin-right: 8px; box-shadow: 0 0 8px rgba(212,175,55,0.6); }
.chip:nth-child(even) { border: 1px solid rgba(192,192,192,0.4); background: rgba(192,192,192,0.06); }
.chip:nth-child(even)::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(180deg, var(--color-silver), var(--color-silver-2)); margin-right: 8px; box-shadow: 0 0 8px rgba(192,192,192,0.5); }

/* 4. Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10,10,10,0.8); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: 'Poppins', sans-serif; font-weight: 600; }
.brand img { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(212,175,55,0.3)); }
.nav .menu { display: flex; gap: 22px; align-items: center; }
.nav a { color: var(--color-muted); }
.nav a:hover, .nav a:focus { color: var(--color-text); }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; position: relative; z-index: 1001; }
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0; transition: all 0.3s ease; }

/* Active nav state (accent only on active) */
.nav-link { padding: 10px 12px; border-radius: 6px; border: 1px solid transparent; transition: all .3s ease; }
.nav-link.active { border-color: rgba(223,179,78,0.6); background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(192,192,192,0.08)); color: var(--color-text); box-shadow: 0 0 15px rgba(212,175,55,0.2), 0 0 10px rgba(192,192,192,0.1); }

/* 5. Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0.55; z-index: 0; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.25) 50%, rgba(10,10,10,0.45) 100%); }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; mix-blend-mode: screen; }
.hero-content { position: relative; z-index: 2; padding: 60px 20px; width: 100%; }
.hero-wrapper { max-width: 1400px; margin: 0 auto; }
.hero-logo-wrapper { text-align: center; margin-bottom: 40px; position: relative; animation: fadeInDown 1s ease-out; }
.hero-logo { width: 120px; height: 120px; object-fit: contain; filter: drop-shadow(0 8px 32px rgba(212,175,55,0.4)); animation: logoFloat 6s ease-in-out infinite; position: relative; z-index: 1; }
.hero-logo-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 160px; height: 160px; background: radial-gradient(circle, rgba(212,175,55,0.3) 0%, rgba(212,175,55,0.1) 40%, transparent 70%); border-radius: 50%; animation: logoGlow 3s ease-in-out infinite; }
.hero-main { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.hero-text-section { animation: fadeInLeft 1s ease-out 0.2s both; }
.hero-badge { display: inline-block; padding: 8px 20px; background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(192,192,192,0.15)); border: 1px solid rgba(212,175,55,0.4); border-radius: 50px; font-size: 0.85rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--color-gold); margin-bottom: 20px; font-family: 'Poppins', sans-serif; }
.hero-title { margin: 0 0 24px; display: grid; gap: 16px; }
.hero-title .shimmer { font-family: 'Poppins', sans-serif; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; letter-spacing: 0.02em; line-height: 1.1; background: linear-gradient(100deg, var(--color-gold), var(--color-silver), var(--color-gold-2), var(--color-silver-2), var(--color-gold)); background-size: 300% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmer 8s linear infinite; text-shadow: 0 4px 40px rgba(212,175,55,0.15); }
.hero-title .sub { color: var(--color-muted); font-size: clamp(1.1rem, 2.8vw, 1.4rem); font-weight: 400; line-height: 1.5; margin-top: 8px; }
.hero-description { color: var(--color-text); font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.7; margin: 0 0 32px; max-width: 600px; opacity: 0.9; }
.hero-cta { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }
.hero-cta .btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; font-size: 1rem; }
.hero-cta .btn svg { width: 20px; height: 20px; }
.hero-visual-wrapper { display: grid; place-items: center; animation: fadeInRight 1s ease-out 0.4s both; }
.hero-visual { width: min(380px, 100%); aspect-ratio: 1 / 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(212,175,55,0.15), rgba(192,192,192,0.1), rgba(212,175,55,0.08), rgba(255,255,255,0.03)); border: 3px solid rgba(212,175,55,0.4); position: relative; box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 0 80px rgba(212,175,55,0.1), 0 0 60px rgba(192,192,192,0.15), 0 0 30px rgba(212,175,55,0.25); backdrop-filter: blur(3px); animation: ringPulse 4s ease-in-out infinite; }
.hero-visual::before { content: ""; position: absolute; inset: -4px; border-radius: 50%; background: linear-gradient(135deg, rgba(212,175,55,0.5), rgba(192,192,192,0.4), rgba(212,175,55,0.5)); z-index: -1; opacity: 0.7; animation: ringRotate 8s linear infinite; }
.hero-ring-decoration { position: absolute; inset: -20px; border-radius: 50%; border: 2px solid rgba(212,175,55,0.2); animation: ringRotate 12s linear infinite reverse; }
#three-diamond { position: relative; width: 100%; height: 100%; border-radius: 50%; overflow: hidden; }
#three-diamond canvas { display: block; width: 100% !important; height: 100% !important; }
.hero-scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--color-gold); opacity: 0.7; animation: scrollBounce 2s ease-in-out infinite; cursor: pointer; }
.hero-scroll-indicator span { font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 500; }
.hero-scroll-indicator svg { animation: scrollArrow 2s ease-in-out infinite; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes logoGlow { 0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); } }
@keyframes ringPulse { 0%, 100% { box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 0 80px rgba(212,175,55,0.1), 0 0 60px rgba(192,192,192,0.15), 0 0 30px rgba(212,175,55,0.25); } 50% { box-shadow: 0 50px 100px rgba(0,0,0,0.6), inset 0 0 100px rgba(212,175,55,0.15), 0 0 80px rgba(192,192,192,0.2), 0 0 40px rgba(212,175,55,0.35); } }
@keyframes ringRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
@keyframes scrollArrow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

@keyframes shimmer { to { background-position: -200% 0; } }

/* 6. Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 8px; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; font-weight: 600; letter-spacing: 0.02em; }
.btn-primary { background: linear-gradient(135deg, var(--color-gold), var(--color-silver), var(--color-gold-2)); background-size: 200% 100%; color: #0a0a0a; box-shadow: 0 10px 26px rgba(212,175,55,0.25), 0 0 20px rgba(192,192,192,0.15); transition: all .3s ease; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(212,175,55,0.35), 0 0 30px rgba(192,192,192,0.25); background-position: 100% 50%; }
.btn-secondary { border: 1px solid rgba(255,255,255,0.18); color: var(--color-text); background: rgba(255,255,255,0.02); }
.btn-secondary:hover { transform: translateY(-2px); background: rgba(255,255,255,0.06); }
.btn-accent { border: 1px solid rgba(223,179,78,0.6); padding: 10px 16px; border-radius: 6px; }

/* 7. Services Section */
.services-section { background: rgba(255,255,255,0.01); }
.services-header { text-align: center; margin-bottom: 60px; }
.services-subtitle { font-size: 1.1rem; color: var(--color-muted); max-width: 700px; margin: 20px auto 0; line-height: 1.7; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 32px; }
.service-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; overflow: hidden; transition: all .4s cubic-bezier(0.4, 0, 0.2, 1); position: relative; }
.service-card::before { content: ""; position: absolute; inset: 0; border-radius: 20px; border: 1px solid transparent; background: linear-gradient(135deg, rgba(212,175,55,0.3), rgba(192,192,192,0.2)) border-box; -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0); mask-composite: exclude; opacity: 0; transition: opacity .4s ease; pointer-events: none; }
.service-card:hover { transform: translateY(-12px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(212,175,55,0.15); border-color: rgba(212,175,55,0.4); }
.service-card:hover::before { opacity: 1; }
.service-image-wrapper { position: relative; overflow: hidden; }
.service-image { height: 140px; background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; display: flex; align-items: center; justify-content: center; transition: transform .5s ease; }
.service-card:hover .service-image { transform: scale(1.1); }
.service-image-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.08) 0%, rgba(10,10,10,0.04) 100%); transition: background .4s ease; }
.service-card:hover .service-image-overlay { background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.3) 100%); }
.service-icon { position: relative; z-index: 1; background: linear-gradient(135deg, var(--color-gold), var(--color-silver)); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 4px 12px rgba(212,175,55,0.4)) drop-shadow(0 0 8px rgba(192,192,192,0.3)); transition: transform .4s ease, filter .4s ease; }
.service-card:hover .service-icon { transform: scale(1.15) rotate(5deg); filter: drop-shadow(0 6px 20px rgba(212,175,55,0.6)) drop-shadow(0 0 15px rgba(192,192,192,0.5)); background-position: 100% 50%; }
.service-icon svg { width: 48px; height: 48px; }
.service-content { padding: 28px; }
.service-title { font-family: 'Poppins', sans-serif; font-size: 1.5rem; margin: 0 0 16px; background: linear-gradient(135deg, var(--color-gold), var(--color-silver)); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; transition: all .3s ease; }
.service-card:hover .service-title { background-position: 100% 50%; filter: brightness(1.2); }
.service-description { color: var(--color-muted); line-height: 1.8; font-size: 1rem; margin: 0; }

/* 7.5. Gallery Section */
.gallery-section { width: 100%; padding: 60px 0; background: rgba(10,10,10,0.5); }
.gallery-container { width: 100%; max-width: 100%; margin: 0 auto; }
.gallery-swiper { width: 100%; height: 500px; }
.gallery-swiper .swiper-slide { display: flex; align-items: center; justify-content: center; }
.gallery-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.gallery-swiper .swiper-pagination-bullet { background: var(--color-gold); opacity: 0.5; }
.gallery-swiper .swiper-pagination-bullet-active { opacity: 1; background: var(--color-gold); }
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev { color: var(--color-gold); }
.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after { font-size: 24px; font-weight: bold; }
.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover { color: var(--color-silver); }

/* 7.5. CTA Banner */
.cta-banner { position: relative; padding: 80px 0; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0.4; z-index: 0; }
.cta-banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.5) 100%); z-index: 1; }
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner-content { text-align: center; max-width: 800px; margin: 0 auto; }
.cta-banner-title { font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; background: linear-gradient(135deg, var(--color-gold), var(--color-silver), var(--color-gold)); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; margin: 0 0 16px; text-shadow: 0 2px 20px rgba(212,175,55,0.3), 0 0 30px rgba(192,192,192,0.2); animation: titleShimmer 5s linear infinite; }
.cta-banner-text { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--color-text); margin: 0 0 32px; opacity: 0.95; line-height: 1.6; }
.cta-banner-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-banner-buttons .btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; font-size: 1rem; }

/* 8. About */
.section-with-bg { position: relative; overflow: hidden; }
.section-bg { position: absolute; inset: 0; width: 100%; height: 100%; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0.3; z-index: 0; }
.section-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.08) 0%, rgba(10,10,10,0.05) 50%, rgba(10,10,10,0.08) 100%); }
.section-with-bg .container { position: relative; z-index: 1; background: rgba(10,10,10,0.1); padding: 40px 20px; border-radius: 12px; backdrop-filter: blur(1px); }
.section-with-bg .section-title { text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.7); color: var(--color-text); }
.section-with-bg .about p { text-shadow: 0 1px 12px rgba(0,0,0,0.5), 0 0 24px rgba(0,0,0,0.4); color: var(--color-text); font-weight: 500; }
.about { display: grid; gap: 20px; }
.about-text { font-size: 1.1rem; line-height: 1.8; color: var(--color-text); text-align: justify; }
.section-with-bg .about-text { text-shadow: 0 1px 12px rgba(0,0,0,0.5), 0 0 24px rgba(0,0,0,0.35); }

/* 9. Contact */
.section-with-bg .contact { background: rgba(10,10,10,0.15); backdrop-filter: blur(2px); padding: 30px 20px; }
.section-with-bg .contact-title { text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.7); margin-bottom: 24px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; margin-bottom: 24px; }
.contact-details { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 20px; backdrop-filter: blur(3px); }
.contact-details p { margin: 0 0 10px; font-size: 0.95rem; }
.contact-details p:last-of-type { margin-bottom: 0; }
.contact-details a { color: var(--color-accent); transition: color .2s ease; }
.contact-details a:hover { color: var(--color-gold); }
.social-media { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.social-media h3 { font-family: 'Poppins', sans-serif; font-size: 1.05rem; margin: 0 0 14px; color: var(--color-text); }
.social-links { display: flex; flex-direction: column; gap: 12px; }
.social-link { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: var(--color-text); text-decoration: none; transition: all .3s ease; }
.social-link:hover { background: rgba(255,255,255,0.06); border-color: rgba(212,175,55,0.4); transform: translateX(4px); }
.social-link svg { width: 24px; height: 24px; flex-shrink: 0; transition: transform .3s ease; }
.social-link:hover svg { transform: scale(1.1); }
.social-link span { font-size: 0.95rem; font-weight: 500; }
.social-facebook:hover { color: #1877f2; border-color: rgba(24,119,242,0.4); }
.social-facebook:hover svg { color: #1877f2; }
.social-instagram:hover { color: #e4405f; border-color: rgba(228,64,95,0.4); }
.social-instagram:hover svg { color: #e4405f; }
.contact-map { border-radius: 16px; overflow: hidden; border: 2px solid var(--color-gold); position: relative; box-shadow: 0 10px 40px rgba(212,175,55,0.2), 0 0 20px rgba(212,175,55,0.1), 0 0 15px rgba(192,192,192,0.1); transition: transform .3s ease, box-shadow .3s ease; width: 100%; }
.contact-map::before { content: ""; position: absolute; inset: -2px; border-radius: 16px; background: linear-gradient(135deg, var(--color-gold), var(--color-silver), var(--color-gold)); z-index: -1; opacity: 0.6; }
.contact-map:hover { transform: translateY(-2px); box-shadow: 0 15px 50px rgba(212,175,55,0.3), 0 0 30px rgba(212,175,55,0.15), 0 0 25px rgba(192,192,192,0.2); }
.contact-map:hover::before { opacity: 0.9; }
.contact-map iframe { width: 100%; height: 300px; display: block; border: 0; }
.working-hours { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); }
.working-hours h3 { font-family: 'Poppins', sans-serif; font-size: 1.05rem; margin: 0 0 12px; color: var(--color-text); }
.hours-list { display: grid; gap: 8px; list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--color-muted); font-size: 0.95rem; }
.hours-list .time { color: var(--color-text); font-weight: 500; }
.hours-list .time.closed { color: rgba(255,255,255,0.4); font-style: italic; }
.contact-form { display: grid; gap: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(212,175,55,0.3); border-radius: 16px; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.2), 0 0 15px rgba(192,192,192,0.05); transition: border-color .3s ease, box-shadow .3s ease; position: relative; backdrop-filter: blur(3px); }
.contact-form::before { content: ""; position: absolute; inset: -1px; border-radius: 16px; background: linear-gradient(135deg, rgba(212,175,55,0.3), rgba(192,192,192,0.25), rgba(212,175,55,0.3)); z-index: -1; opacity: 0.5; }
.contact-form:hover { border-color: rgba(212,175,55,0.5); box-shadow: 0 15px 40px rgba(0,0,0,0.3), 0 0 20px rgba(212,175,55,0.1), 0 0 25px rgba(192,192,192,0.15); }
.contact-form:hover::before { opacity: 0.8; background: linear-gradient(135deg, rgba(212,175,55,0.5), rgba(192,192,192,0.4), rgba(212,175,55,0.5)); }
.contact-form label { font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 500; color: var(--color-text); margin-bottom: 4px; display: block; }
.contact-form input, .contact-form textarea { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.15); color: var(--color-text); padding: 12px 14px; border-radius: 10px; outline: none; transition: all .2s ease; font-family: 'Inter', sans-serif; font-size: 0.95rem; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--color-muted); opacity: 0.7; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--color-gold); background: rgba(255,255,255,0.05); box-shadow: 0 0 0 3px rgba(212,175,55,0.15), 0 4px 12px rgba(212,175,55,0.1); }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .hp { display: none; }
.form-success { color: var(--color-accent); margin-top: 6px; font-weight: 500; }

/* 11. Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 26px 0; background: rgba(255,255,255,0.02); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 18px; }
.brand-foot { display: inline-flex; align-items: center; gap: 10px; color: var(--color-muted); }
.brand-foot img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(212,175,55,0.2)) drop-shadow(0 0 8px rgba(192,192,192,0.15)); }
.footer-nav { display: inline-flex; gap: 16px; color: var(--color-muted); }
.footer-nav a:hover { color: var(--color-text); }

/* Floating call button (FAB) - mobile visible default */
.fab-call { position: fixed; right: 16px; bottom: 16px; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--color-gold), var(--color-silver), var(--color-gold-2)); background-size: 200% 100%; color: #0a0a0a; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(212,175,55,0.35), 0 0 20px rgba(192,192,192,0.2); z-index: 1001; transition: transform .2s ease, box-shadow .2s ease, background-position .3s ease; }
.fab-call:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(212,175,55,0.45), 0 0 30px rgba(192,192,192,0.3); background-position: 100% 50%; }

/* 12. Animations on scroll */
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* 13. Responsive */
@media (max-width: 1023px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero-main { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual-wrapper { order: -1; }
  .hero-visual { width: min(320px, 90%); }
  .hero-logo { width: 100px; height: 100px; }
  .hero-logo-glow { width: 140px; height: 140px; }
  .services-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .cta-banner { padding: 60px 0; }
}

@media (max-width: 767px) {
  .site-header .container { height: 60px; }
  body { padding-top: 60px; }
  .nav { position: relative; }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 999; backdrop-filter: blur(8px); }
  .nav-overlay.active { display: block; }
  body.menu-open { overflow: hidden; }
  body.menu-open main,
  body.menu-open footer { filter: blur(8px); transition: filter 0.3s ease; pointer-events: none; }
  .nav .menu { position: fixed; left: 50%; transform: translateX(-50%); top: 70px; background: rgba(18,18,18,0.98); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 16px; flex-direction: column; gap: 8px; width: 90%; max-width: 90vw; box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(212,175,55,0.2); display: none; z-index: 1000; backdrop-filter: blur(10px); }
  .nav .menu.open { display: flex; }
  .nav-toggle { display: inline-block; z-index: 1001; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
  .hero { min-height: 100vh; }
  .hero-bg { opacity: 0.3; }
  .section-bg { opacity: 0.2; }
  .hero-main { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual-wrapper { order: -1; }
  .hero-visual { width: min(180px, 65%); }
  .hero-logo { width: 80px; height: 80px; }
  .hero-logo-glow { width: 120px; height: 120px; }
  .hero-text-section { text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-badge { font-size: 0.75rem; padding: 6px 16px; }
  .hero-title .shimmer { font-size: clamp(3.2rem, 14vw, 5rem); }
  .hero-scroll-indicator { bottom: 20px; }
  .cta-banner { padding: 50px 0; }
  .cta-banner-buttons { flex-direction: column; align-items: stretch; }
  .cta-banner-buttons .btn { width: 100%; justify-content: center; }
  /* Footer mobile adjustments */
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-nav { justify-content: center; }
  /* Working hours mobile */
  .working-hours { margin-top: 20px; padding-top: 20px; }
  .hours-list li { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hours-list .time { margin-left: auto; }
  /* Services mobile */
  .services-grid { grid-template-columns: 1fr; gap: 20px; }
  .services-subtitle { font-size: 1rem; }
  /* Gallery mobile */
  .gallery-section { padding: 40px 0; }
  .gallery-swiper { height: 350px; }
  .gallery-swiper .swiper-button-next,
  .gallery-swiper .swiper-button-prev { display: none; }
}

/* Desktop-only tweaks */
@media (min-width: 1024px) {
  .nav .menu { display: flex !important; position: static; background: transparent; border: 0; padding: 0; box-shadow: none; }
  .nav-toggle { display: none !important; }
  .fab-call { display: none; }
}

/* 14. Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
  .hero-title .shimmer { animation: none; background: var(--color-gold); color: #0a0a0a; -webkit-background-clip: initial; background-clip: initial; }
}


