/* BASE */
:root { --bg-dark: #050507; --bg-card: rgba(20, 20, 25, 0.7); --primary-purple: #7f57f9; --primary-glow: rgba(94, 23, 235, 0.4); --text-main: #f4f4f5; --text-muted: #a1a1aa; --font-main: 'DM Sans', sans-serif; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font-main); overflow-x: hidden; line-height: 1.6; opacity: 0; }
@font-face { font-family: 'BodegaBold'; src: url('../fonts/Bodeg-Bold.ttf') format('truetype'), url('/static/fonts/Bodeg-Bold.ttf') format('truetype'); font-weight: normal; font-style: normal; }

.sticky-nav { position: fixed; top: 0; left: 0; width: 100%; height: 80px; background: rgba(5, 5, 7, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); z-index: 9999;  border-bottom: 1px solid rgba(255, 255, 255, 0.05); display: flex; align-items: center; }
.nav-container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr auto 1fr;  align-items: center; }
.nav-left { display: flex; justify-content: flex-start; }
.nav-center { display: flex; justify-content: center; gap: 2.5rem; }
.nav-center a { color: var(--text-main); text-decoration: none; font-weight: 500; white-space: nowrap;  transition: color 0.3s; }
.nav-center a:hover { color: var(--primary-purple); }
.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 1.5rem; }
.lang-switch a { color: var(--text-muted); text-decoration: none; font-weight: 700; transition: color 0.3s; }
.lang-switch a:hover { color: var(--primary-purple); }
body { padding-top: 80px; }

.btn-primary { padding: 0.8rem 2.2rem; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); display: inline-block; cursor: pointer; border: none; color: #fff; box-shadow: 0 0 0 2px #1a1a1e, 0 8px 20px rgba(0, 0, 0, 0.4); background: radial-gradient(circle at 30% 20%, rgba(168, 85, 247, 0.6) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(94, 23, 235, 0.6) 0%, transparent 50%), linear-gradient(135deg, #7f57f9 0%, #310d8a 100%); position: relative; overflow: hidden; }
.btn-primary::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, transparent 100%); pointer-events: none; }
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 0 4px #1a1a1e, 0 0 10px rgba(127, 87, 249, 0.5); filter: brightness(1.15); color: #fff !important; }
.btn-wide { width: 100%; display: block; padding: 1.2rem 0; margin-top: 1rem; }
.btn-secondary-light { padding: 0.8rem 2.2rem; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); display: inline-block; cursor: pointer; border: none; color: #050507; box-shadow: 0 0 0 2px #1a1a1e, 0 8px 20px rgba(0, 0, 0, 0.4); background: radial-gradient(circle at 30% 20%, #ffffff 0%, transparent 50%), radial-gradient(circle at 70% 80%, #e4e4e7 0%, transparent 50%), linear-gradient(135deg, #f4f4f5 0%, #a1a1aa 100%); position: relative; overflow: hidden; }
.btn-secondary-light::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, transparent 100%); pointer-events: none; }
.btn-secondary-light:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 0 4px #1a1a1e, 0 0 10px rgba(255, 255, 255, 0.2); filter: brightness(1.1); color: #000 !important; }
.btn-outline { display: inline-block; padding: 0.6rem 2rem; border: 2px solid var(--primary-purple); color: var(--primary-purple); text-decoration: none; border-radius: 25px; font-weight: 500; transition: all 0.3s ease; cursor: pointer; }
.btn-outline:hover { background-color: var(--primary-purple); color: white; box-shadow: 0 0 20px var(--primary-glow); transform: translateY(-2px); }

footer { text-align: center; padding: 2rem 2rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-logo-wrap { text-align: center; margin-bottom: 1.5rem; }
.footer-logo { height: 60px; width: auto; }
.footer-main-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10rem; max-width: 1000px; margin: 0 auto; }
.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; text-align: left; justify-self: end; }
.footer-contact a i { margin-right: 3px; }
.footer-nav-grid { display: grid; grid-template-columns: auto auto; justify-content: center; column-gap: 5rem; row-gap: 0.5rem; text-align: center; }
.footer-socials { display: flex; flex-direction: column; gap: 0.5rem; align-items: center; justify-self: start; }
.follow-text { color: white; font-weight: 500; }
.social-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer-main-grid a { color: white; text-decoration: none; transition: 0.3s; }
.footer-main-grid i { color: var(--primary-purple); font-size: 1.2rem; }
.footer-main-grid a:hover { color: var(--primary-purple); }
.footer-bottom { margin: 2.5rem 0 -0.8rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-bottom-content p { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; letter-spacing: 0.5px; }

.scroll-top-btn { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background-color: var(--primary-purple); color: white; border: none; border-radius: 50%; cursor: pointer; display: none; z-index: 1001; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0 0 15px var(--primary-glow); }
.scroll-top-btn:hover { background-color: #4310a8; transform: scale(1.1) translateY(-5px); }

/* HOME PAGE */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 2rem; background: transparent; overflow: hidden; }
.hero h1 { font-size: 70px; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; background: linear-gradient(to right, #fff, #a1a1aa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content { position: relative; z-index: 10; }
#liquid-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background-color: #010103; filter: brightness(0.6) contrast(1.2); -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%); }
.hero-content p { font-size: 1.1rem; max-width: 800px; margin: 0.5rem auto 3rem auto; line-height: 1.6; color: var(--text-muted); }
.hero-title-custom { font-family: 'BodegaBold', 'Bodeg', sans-serif; font-size: 70px; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; color: #ffffff; background: none; -webkit-text-fill-color: initial; }
.brand-highlight { color: var(--primary-purple); }
.grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; padding: 4rem 2rem; max-width: 1400px; margin: 0 auto; }

.card { position: relative; background: #0d1117; padding: 3rem 2rem; border-radius: 12px; overflow: hidden; z-index: 1; transition: transform 0.4s ease; border: none; }
.card::before { content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(transparent, transparent 10%, #7f57f9 25%, rgba(127, 87, 249, 0.3) 35%, transparent 50%); animation: rotateBeam 4s linear infinite; z-index: -1; }
.card::after { content: ""; position: absolute; inset: 1px; background: #0d1117; border-radius: 10px; z-index: -1; }
.card:hover { transform: translateY(-10px); box-shadow: 0 3px 40px rgba(94, 23, 235, 0.2); }
@keyframes rotateBeam { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.slider-container { width: 100%; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); overflow: hidden; white-space: nowrap; }
.slider-track { display: flex; width: fit-content; }
.work-card { width: 350px; height: 220px; margin: 0 1rem; background: var(--bg-card); border-radius: 12px; display: flex; align-items: center; justify-content: center; text-decoration: none; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.05); }
@keyframes scrollRightToLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.home-packages-wrapper .packages-outer-container { display: flex; justify-content: center; align-items: stretch; gap: 1.5rem; max-width: 1200px; margin: 0 auto; padding: 1.5rem; background: #000; border-radius: 24px; margin-bottom: 1rem;}
.home-packages-wrapper .pkg-card { flex: 1; background: #050507; border-radius: 25px; padding: 2rem 1rem; border: 1.5px solid #7f57f9; background-image: none; display: flex; flex-direction: column; align-items: center; text-align: center; transition: all 0.4s ease; cursor: pointer; position: relative; }
.home-packages-wrapper .pkg-card:hover { background: #7f57f9; transform: translateY(-10px); box-shadow: 0 0 30px rgba(127, 87, 249, 0.4); border-color: rgba(255, 255, 255, 0.5); }
.home-packages-wrapper .pkg-header h3 { font-size: 1.6rem; margin-bottom: 0.3rem; color: #fff; }
.home-packages-wrapper .pkg-subtitle { color: #a1a1aa; font-size: 0.9rem; margin-bottom: 1rem; transition: color 0.3s; max-width: 250px; }
.home-packages-wrapper .pkg-price { font-size: 2.8rem; font-weight: 800; color: #fff; margin-bottom: 1rem; }
.home-packages-wrapper .pkg-card:hover .pkg-subtitle { color: #e4e4e7; }
.home-packages-wrapper .pkg-btn-outline { display: block; text-align: center; margin-top: 1rem; margin-bottom: 2rem; padding: 0.8rem 5rem; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); cursor: pointer; border: none; color: #fff; background: radial-gradient(circle at 30% 20%, rgba(168, 85, 247, 0.6) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(94, 23, 235, 0.6) 0%, transparent 50%), linear-gradient(135deg, #7f57f9 0%, #310d8a 100%); position: relative; overflow: hidden; }
.home-packages-wrapper .pkg-btn-outline::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%; background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, transparent 100%); pointer-events: none; }
.home-packages-wrapper .pkg-btn-outline:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 0 0 2px #1a1a1e, 0 0 10px rgba(127, 87, 249, 0.5); filter: brightness(1.15); color: #fff; }

.reveal-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal-up.active { opacity: 1; transform: translateY(0); }
#heroTitle, #heroSub, #heroBtns { opacity: 0; will-change: transform, opacity; }

.vertical-scroll-line { position: relative; width: 3px; background: rgba(255, 255, 255, 0.05); border-radius: 5px; height: 100%; }
.scroll-line-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0%; background: var(--primary-purple); box-shadow: 0 0 15px var(--primary-glow); transition: height 0.3s ease; }

.testim-wrapper { display: grid;grid-template-columns: auto 1fr; gap: 1.5rem; align-items: start; padding: 0 2rem; max-width: 800px; margin: 0 auto; margin-top: 4rem; }
.testim-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.testim-card { background-color: #0d1117; border: 2px solid var(--primary-purple); border-radius: 15px; padding: 1.2rem 2rem; pointer-events: none; display: flex; flex-direction: column; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); transition: transform 0.4s ease; }
.testim-quote { color: var(--primary-purple); font-size: 1.8rem; margin-bottom: 0.5rem; } 
.testim-card p { font-size: 1.15rem; color: var(--text-main); line-height: 1.7; margin-bottom: 1rem; }
.testim-client { font-family: 'BodegaBold', 'Bodeg', sans-serif; font-weight: 900; text-transform: none; color: var(--primary-purple); font-size: 1rem; letter-spacing: 1.5px; }

.packages-section { padding: 0 0 6rem 0; margin-top: -4rem; }
#heroTitle, #heroBtns { opacity: 0; }

.services-section, .work-slider-section, .testimonials-section, .cta-section { padding: 4rem 0; text-align: center; }
.services-intro h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.services-intro .text-muted-custom { font-size: 1.1rem; }
.services-section .card h3 { font-size: 17px; margin-top: 0; margin-bottom: 0.75rem; }
.card p { font-size: 1rem; line-height: 1.6; }
.services-intro, .work-intro, .testim-intro { margin-bottom: 3rem; }
.text-muted-custom { color: var(--text-muted); margin-top: 0.5rem; }
.hero-btn-container { display: flex; gap: 1.5rem; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-section .large-btn { font-size: 1.2rem; padding: 1rem 3rem; margin-top: 2rem; }

#workTrack .project-item { display: flex; flex-direction: column; align-items: flex-start; margin-right: 45px; margin-left: 0; padding: 0; flex-shrink: 0; }
#workTrack .work-category-pill { display: inline-flex; background-color: #1a1a1a; padding: 6px 18px; border-radius: 50px; margin-bottom: 14px; margin-left: 0; border: 1px solid rgba(255, 255, 255, 0.1); align-items: center; justify-content: center; position: relative; }
#workTrack .work-category-pill:before { content: ''; display: inline-block; width: 8px; height: 8px; background-color: #9f70fd; border-radius: 50%; margin-right: 8px; }
#workTrack .pill-text { color: #ffffff; font-family: 'BodegaBold', sans-serif; font-size: 0.95rem; font-weight: bold; text-transform: none; letter-spacing: 0.5px; }
#workTrack .work-card { position: relative; width: 350px; height: 220px; margin: 0; padding: 0; background: #000; border-radius: 12px; display: block; overflow: hidden; text-decoration: none; border: 1px solid rgba(255, 255, 255, 0.05); z-index: 1; }
#workTrack .work-image { max-width: 100%; height: auto; display: block; }
#workTrack .work-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
#workTrack .work-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
#workTrack .work-card-content { position: relative; z-index: 2; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: rgba(5, 5, 7, 0.6); opacity: 0; transition: opacity 0.4s ease; }
#workTrack .project-item:hover .work-card-content { opacity: 1; }

@media (max-width: 600px) {  
 .reveal-up h2.bodega-title { font-size: 23px; }  /* font size per te gjitha titujt e sections */
 /* HEADER SECTION */
 .nav-container { grid-template-columns: 1fr auto; padding: 0 1.2rem; }
 .nav-right .btn-primary { padding: 0.5rem 0.8rem; font-size: 0.85rem; }
 .nav-center { grid-column: 1 / span 2; order: 3; display: flex; justify-content: space-around; gap: 0.5rem; margin-top: 12px; padding-bottom: 5px; }
 .nav-center a { font-size: 0.95rem; }
 .sticky-nav { height: auto; padding: 12px 0; }
 body { padding-top: 120px; }

 /* HERO SECTION */
 .hero { min-height: 85vh; padding-top: 150px; align-items: flex-start; }
 #heroTitle { font-size: 43px; padding: 0 1rem; line-height: 1.1; }
 #heroSub { font-size: 1.05rem; margin: 2.5rem auto; padding: 0 1.5rem; opacity: 1; }
 #heroBtns { flex-direction: row; padding: 0 1rem; gap: 0.8rem; margin-bottom: 5rem; opacity: 1; }
 #heroBtns a { flex: 1; padding: 1rem 0.5rem; font-size: 0.9rem; text-align: center; }

 /* PACKAGES SECTION */
 .home-packages-wrapper .packages-outer-container { flex-direction: column; padding: 2rem 1rem; gap: 5rem; border-radius: 16px; }
 .home-packages-wrapper .pkg-card { padding: 1.2rem 1.2rem; width: 100%; margin-bottom: -2.5rem; }
 .home-packages-wrapper .pkg-header h3 { font-size: 1.4rem; }
 .home-packages-wrapper .pkg-subtitle { font-size: 0.85rem; margin-bottom: 1rem; max-width: 100%; }
 .home-packages-wrapper .pkg-price { font-size: 2.2rem; margin-bottom: 1.5rem; }
 .home-packages-wrapper .pkg-btn-outline { padding: 0.8rem 0; width: 100%; max-width: 300px; margin-bottom: 1rem;  } 
 .pkg-features { list-style: none; padding: 0; margin: 0.5rem 0; width: 100%; }
 .home-packages-wrapper .pkg-btn-outline { display: block; width: 100%; max-width: 300px; margin: 1rem auto; padding: 0.8rem 0; }
 .pkg-card p {margin: 0.5rem 0;}

 /* SERVICES SECTION */
 .services-section { padding: 1rem 0; margin-top: 1rem; background: transparent; }
 .services-section h2 { font-size: 28px; margin-bottom: 1rem; }
 .grid-container { padding: 1rem 1.5rem; gap: 2rem; }
 .card { padding: 2rem 1.5rem; }
 .card h3 { font-size: 1.3rem; }

 /* OUR WORK SECTION*/
.work-slider-section .project-item { display: flex; flex-direction: column; align-items: flex-start; margin: 0 1rem; flex-shrink: 0; }
.work-slider-section .work-category-pill { display: inline-flex; background-color: #1a1a1a; padding: 6px 18px; border-radius: 50px; margin-bottom: 12px; margin-left: 0; border: 1px solid rgba(255, 255, 255, 0.1); align-items: center; justify-content: center; position: relative; }
.work-slider-section .work-category-pill:before { content: ''; display: inline-block; width: 8px; height: 8px; background-color: #9f70fd; border-radius: 50%; margin-right: 8px; }
.work-slider-section .pill-text { color: #ffffff; font-family: 'BodegaBold', sans-serif; font-size: 0.85rem; font-weight: bold; text-transform: none; letter-spacing: 0.5px; line-height: 1; }
.work-slider-section .work-card { width: 280px; height: 180px; display: block; overflow: hidden; border-radius: 12px; margin: 0;}
.work-slider-section { padding: 0.5rem 0; margin-top: 2rem; }

 /* WHAT OUR CLIENTS & PARTNERS SAY SECTION */
 .testimonials-section { padding: 6rem 0; gap: 2rem; }
 .vertical-scroll-line { display: block; width: 3px; }
 .testim-card { padding: 1.5rem; text-align: center; }
 .testim-card p { font-size: 1rem; }

 /* DONT KNOW WHERE TO START SECTION */
 .cta-section { padding: 2rem 1.5rem; text-align: center; }

 .reveal-up[style*="padding: 6rem 2rem"] { padding: 4rem 1.5rem; }
 .reveal-up h2.bodega-title { font-size: 23px; }  /* font size per te gjitha titujt e sections */
 .btn-primary.reveal-up { width: 80%; padding: 1rem; }
 
 /* FOOTER SECTION */
  footer { padding: 1.5rem 1rem; }
 .footer-main-grid { grid-template-columns: 1fr; gap: 1.4rem; text-align: center; }
 .footer-contact, .footer-socials { justify-self: center; text-align: center; align-items: center; }
 .footer-nav-grid { column-gap: 2rem; }
 .footer-logo { height: 45px; }
 .bodega-title, h2 { font-size: 30px; margin-bottom: 0.8rem; }
 section p:not(.hero-subtitle) { font-size: 1rem; padding: 0 1rem; }
}
 
/* ESTIMATE PAGE */
.estimate-header { width: 100%; text-align: center; padding-top: 35px; }
.estimate-page-container { max-width: 1400px; margin: 40px auto 80px auto; display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; padding: 0 2rem; align-items: start; }
.calculator-card, .estimate-result-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); border-radius: 12px; padding: 2.5rem; backdrop-filter: blur(10px); }
.estimate-result-card { background: var(--bg-card); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; padding: 2.5rem; backdrop-filter: blur(10px); position: relative; top: 0; }
.calculator-card h2, .estimate-result-card h3 { margin-bottom: 0.5rem; }
.subtitle { color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.1rem; }
.estimator-section { margin-bottom: 2.5rem; }
.section-label { display: block; font-weight: 500; margin-bottom: 1rem; color: #fff; font-size: 1.1rem; }
.project-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.type-tile { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 1.5rem; display: flex; flex-direction: column; cursor: pointer; transition: all 0.3s ease; }
.project-type-grid input[type="radio"] { display: none; }
.type-tile .service-icon { font-size: 2rem; color: var(--text-muted); margin-bottom: 1rem; transition: color 0.3s; }
.type-title { font-weight: 600; color: #fff; margin-bottom: 0.3rem; }
.type-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.4; }
.type-tile { position: relative; background: #0d1117;  border-radius: 12px; padding: 20px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.1); z-index: 1; transition: transform 0.2s ease; }
.project-type-grid input[type="radio"]:checked + .type-tile { border-color: transparent; }
.project-type-grid input[type="radio"]:checked + .type-tile::before { content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient( transparent, transparent 10%, #7f57f9 25%, rgba(127, 87, 249, 0.3) 35%, transparent 50% ); animation: rotateBeam 4s linear infinite; z-index: -1; }
.project-type-grid input[type="radio"]:checked + .type-tile::after { content: ""; position: absolute; inset: 1.5px;  background: #0d1117; border-radius: 11px; z-index: -1;}
.project-type-grid input[type="radio"]:checked + .type-tile .service-icon { color: var(--primary-purple); }
@keyframes rotateBeam { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.pages-display { color: var(--primary-purple); font-weight: 700; font-size: 1.2rem; }
.page-slider { width: 100%; -webkit-appearance: none; height: 6px; background: rgba(255,255,255,0.1); border-radius: 5px; outline: none; }
.page-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; background: var(--primary-purple); border-radius: 50%; cursor: pointer; box-shadow: 0 0 10px var(--primary-glow); transition: transform 0.2s; }
.page-slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
.addon-tabs { display: flex; gap: 1rem; margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 0.5rem;}
.tab-btn { background: none; border: none; color: var(--text-muted); font-size: 1rem; cursor: pointer; padding: 0.5rem 0; position: relative; font-weight: 500; }
.tab-btn.active { color: #fff; }
.tab-btn.active::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 100%; height: 2px; background: var(--primary-purple); box-shadow: 0 0 10px var(--primary-glow); }
.addon-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.addon-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 1.2rem; display: flex; justify-content: space-between; align-items: center; }
.addon-info { display: flex; align-items: center; gap: 1rem; }
.addon-icon { font-size: 1.4rem; color: var(--primary-purple); width: 25px; text-align: center; }
.addon-name { display: block; color: #fff; font-weight: 500; margin-bottom: 0.2rem; }
.addon-desc { display: block; color: var(--text-muted); font-size: 0.9rem; }
.switch, .switch-small { position: relative; display: inline-block; width: 50px; height: 26px; flex-shrink: 0;}
.switch input, .switch-small input { opacity: 0; width: 0; height: 0; }
.slider, .slider-small { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(255,255,255,0.1); transition: .4s; border-radius: 34px; }
.slider:before, .slider-small:before { position: absolute; content: ""; height: 20px; width: 20px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider, input:checked + .slider-small { background-color: var(--primary-purple); box-shadow: 0 0 15px var(--primary-glow); }
input:focus + .slider { box-shadow: 0 0 1px var(--primary-purple); }
input:checked + .slider:before, input:checked + .slider-small:before { transform: translateX(24px); }
.switch-small { width: 40px; height: 22px; }
.slider-small:before { height: 16px; width: 16px; left: 3px; bottom: 3px; }
input:checked + .slider-small:before { transform: translateX(18px); }
.result-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.currency-switch { display: flex; align-items: center; gap: 0.5rem; }
.currency-label { color: var(--text-muted); font-size: 0.9rem; font-weight: 700; }
.currency-label.active { color: #fff; }
.selected-summary { background: rgba(127, 87, 249, 0.05); border-radius: 6px; padding: 0.8rem 1.2rem; margin-bottom: 2rem; border: 1px solid rgba(127, 87, 249, 0.15); }
.service-name { color: var(--primary-purple); font-weight: 600; font-size: 1.1rem; }
.total-price-display { background: linear-gradient(135deg, rgba(127, 87, 249, 0.1) 0%, rgba(5, 5, 7, 0) 100%); border-radius: 12px; padding: 2rem; text-align: center; margin-bottom: 2rem; border: 1px solid rgba(127, 87, 249, 0.1); }
.currency-symbol { font-size: 2.5rem; font-weight: 700; color: #fff; vertical-align: super; margin-right: 5px;}
#total-price { font-size: 3rem; font-weight: 800; color: var(--primary-purple); text-shadow: 0 0 20px var(--primary-glow); }
.divider { height: 1px; background: rgba(255,255,255,0.05); margin-bottom: 2rem; border-bottom: 1px dashed rgba(255,255,255,0.1); }
.breakdown-list { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2.5rem; }
.breakdown-item { display: flex; justify-content: space-between; color: var(--text-muted); }
.breakdown-value { color: #fff; font-weight: 500; }
.cur-break { margin-right: 2px; color: var(--text-muted); }
.final-meta { display: flex; align-items: center; gap: 0.8rem; color: var(--text-muted); margin-bottom: 2rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); }
.final-meta i { color: var(--primary-purple); }
.meta-value { color: #fff; font-weight: 600; margin-left: auto; }
.btn-estimator-quote { display: flex; align-items: center; justify-content: center; gap: 12px; width: 100%; padding: 1.2rem; background: rgba(127, 87, 249, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 50px; color: #ffffff; font-weight: 600; text-decoration: none;  transition: all 0.4s ease; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); cursor: pointer; }
.btn-estimator-quote:hover { background: rgba(127, 87, 249, 1);  transform: translateY(-2px); box-shadow: 0 15px 30px rgba(127, 87, 249, 0.4); text-decoration: none; }
.specific-project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.specific-project-grid input[type="radio"] { display: none; }
.specific-tile { background: #0d1117; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 1.2rem 1.4rem; cursor: pointer; transition: all 0.3s ease; display: flex; flex-direction: column; gap: 0.3rem; position: relative; overflow: hidden; z-index: 1; }
.specific-tile .sp-name { font-weight: 600; color: #fff; font-size: 1rem; }
.specific-tile .sp-price { color: var(--text-muted); font-size: 0.85rem; }
.specific-project-grid input[type="radio"]:checked + .specific-tile { border-color: transparent; }
.specific-project-grid input[type="radio"]:checked + .specific-tile::before { content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(transparent, transparent 10%, #7f57f9 25%, rgba(127,87,249,0.3) 35%, transparent 50%); animation: rotateBeam 4s linear infinite; z-index: -1; }
.specific-project-grid input[type="radio"]:checked + .specific-tile::after { content: ""; position: absolute; inset: 1.5px; background: #0d1117; border-radius: 9px; z-index: -1; }
.specific-project-grid input[type="radio"]:checked + .specific-tile .sp-name { color: var(--primary-purple); }
.specific-tile:hover { border-color: rgba(127,87,249,0.4); transform: translateY(-2px); }
#addons-section .addon-list-grid { grid-template-columns: 1fr 1fr; }

@media (max-width: 600px) { 
  .estimate-header { font-size: 40px}
  .estimate-page-container { grid-template-columns: 1fr; gap: 24px; margin-top: 20px; margin-bottom: 40px; padding: 0rem 0.5rem; } 
  .calculator-card, .estimate-result-card { padding: 25px; } 
  .calculator-card h2 { font-size: 26px; } 
  .estimate-result-card h3 { font-size: 26px; } 
  .subtitle { font-size: 15px; margin-bottom: 25px; } 
  .estimator-section { margin-bottom: 30px; } 
  .section-label { font-size: 16px; margin-bottom: 12px; } 
  .project-type-grid { grid-template-columns: 1fr; gap: 16px; margin: 0 -7px;}
  .specific-project-grid {margin: 0 -7px; grid-template-columns: 1fr;}
  .type-tile { padding: 20px; } .type-title { font-size: 17px; } 
  .addon-list-grid { grid-template-columns: 1fr; gap: 12px; margin: 0 -7px; } 
  .addon-item { padding: 15px; } 
  .addon-name { font-size: 15px; } 
  .addon-desc { font-size: 13px; } 
  .addon-tabs { gap: 12px; overflow-x: auto; white-space: nowrap; } 
  .tab-btn { font-size: 14px; } #total-price { font-size: 36px; }
  .currency-symbol { font-size: 30px; } 
  .total-price-display { padding: 25px; } 
  .btn-estimator-quote { padding: 16px; font-size: 16px; } 
  #addons-section .addon-list-grid { grid-template-columns: 1fr; } 
}

/* 404 PAGE */
.error-page { height: 70vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.error-page p {margin: 2rem 0; color: var(--text-muted);}
.glitch-text { font-size: 8rem; font-weight: 900; text-shadow: 2px 2px var(--primary-purple); opacity: 0.8; }

/* SERVICES PAGE */
.services-header { width: 100%; text-align: center; padding-top: 35px; }
.services-container { max-width: 1400px; margin: 40px auto 80px auto; text-align: center; padding: 0 2rem; }
.services-container p { font-size: 1.2rem; margin-top: 2rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.service-list { list-style: none; margin: 1rem 0; color: var(--text-muted); text-align: center; }
.service-list li { margin-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 0.5rem; }
.service-icon { font-size: 2.5rem; color: var(--primary-purple); margin-bottom: 1.5rem; display: inline-block; filter: drop-shadow(0 0 10px rgba(147, 51, 234, 0.3)); }
@media (max-width: 600px) { 
  .services-header { padding-top: 25px; } 
  .services-header h1.page-title-bobega { font-size: 40px; padding-top: 30px; padding-bottom: 30px; } 
  .services-container { margin-top: 20px; margin-bottom: 40px; padding-left: 20px; padding-right: 20px; } 
  .services-container p { font-size: 16px; margin-top: 30px; } 
  .services-container .services-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 35px; } 
  .services-grid .card { padding: 25px; } 
  .service-icon { font-size: 32px; margin-bottom: 15px; } 
  .services-grid .card h3 { font-size: 22px; margin-bottom: 10px; } 
  .services-grid .card .service-list li { font-size: 15px; margin-bottom: 10px; padding-bottom: 6px; } }

/* PACKAGES PAGE */
.packages-header { width: 100%; text-align: center; padding-top: 35px; } 
.packages-container { max-width: 1400px; margin: 40px auto 80px auto; text-align: center; padding: 0 2rem; }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3.2rem; align-items: stretch; } 
.packages-container p { font-size: 1.2rem; margin-top: 2rem; line-height: 1.6; } 
.card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 15px; padding: 2.5rem; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.3s ease; } 
.card h3 { font-size: 1.8rem; margin-bottom: 1rem; } 
.price-tag { font-size: 2.5rem; font-weight: 700; color: #ffffff; margin: 1rem 0; } 
.card-feature-list { list-style: none; margin: 1.5rem 0; color: var(--text-muted); text-align: center; padding: 0; } 
.card-feature-list li { font-size: 1.1rem; margin-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 0.5rem; }
@media (max-width: 600px) { 
 .packages-header { padding-top: 25px; } 
 .packages-header h1.page-title-bobega { font-size: 40px; padding-top: 10px; padding-bottom: 10px; }
 .packages-container { margin: 20px auto 40px auto; padding: 0 1.2rem; } 
 .packages-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.2rem; } 
 .packages-container p { font-size: 1.05rem; margin-top: 1.5rem; } 
 .card { padding: 1.8rem; } 
 .card h3 { font-size: 1.5rem; } 
 .price-tag { font-size: 2rem; margin: 0.5rem 0; } 
 .card-feature-list { margin: 1rem 0; } 
 .card-feature-list li { font-size: 0.95rem; margin-bottom: 0.6rem; } }

/* ABOUT PAGE */
.about-header { width: 100%; text-align: center; padding-top: 35px; }
.page-indicator { font-size: 60px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; background: linear-gradient(135deg, #ffffff 15%, var(--primary-purple) 75%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-container { max-width: 1000px; margin: 40px auto 80px auto; text-align: center;}
.about-container h1 { font-size: 4rem; }
.about-container p { font-size: 1.2rem; margin-top: 2rem; }
.about-grid { margin-top: 3.2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; }
.about-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); padding: 2rem 1.8rem; border-radius: 12px; backdrop-filter: blur(10px); transition: transform 0.4s ease, border-color 0.4s ease; }
.about-card:hover { transform: translateY(-10px); border-color: var(--primary-purple); box-shadow: 0 10px 40px rgba(94, 23, 235, 0.1); }
.about-card h3 { color: var( --primary-purple); font-size: 24px; font-weight: 600; margin-bottom: -20px; }
.about-card p { font-size: 16px; }
.process-section { padding: 100px 0; background: var(--bg-dark); }
.process-container { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; padding: 0 20px; }
.process-card { position: sticky; top: 120px; background: #050507; border: 1.5px solid var(--primary-purple); border-radius: 24px; padding: 3.5rem; min-height: 400px; display: flex; flex-direction: column; justify-content: center; box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.5); transition: transform 0.3s ease; }
.step-pill { background: rgba(255, 255, 255, 0.08); color: #fff; padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; width: fit-content; margin-bottom: 2.5rem; border: 1px solid rgba(255, 255, 255, 0.1); }
.process-content h3 { font-size: 3.5rem; margin-bottom: 1.5rem; color: #fff; }
.process-content p { font-size: 1.2rem; color: var(--text-muted); max-width: 650px; line-height: 1.6; }
@media (max-width: 600px) {
 h1.page-indicator { font-size: 45px; line-height: 1.1; margin-bottom: 10px; }
 h2.page-indicator { font-size: 28px; }
 .about-header, .contact-header { padding-top: 30px; padding-bottom: 50px; }
 .about-container { margin: 10px auto 30px auto; padding: 0 1.5rem; }
 .about-container > p { font-size: 16px; line-height: 1.6; margin-bottom: 3.5rem; margin-top: 1rem;}
 .about-grid { grid-template-columns: 1fr; gap: 1.2rem; margin-top: 1.5rem; }
 .about-card { padding: 1.5rem; }
 .about-card h3.bodega-title { font-size: 24px; margin-bottom: 0.5rem; }
 .about-card p { font-size: 15px; }
 .process-section { padding: 30px 1.2rem; }
 .process-container { gap: 1.2rem; }
 .process-card { position: relative; top: 0; min-height: auto; padding: 1.5rem; margin-top: 0; border-radius: 16px; }
 .process-content h3.bodega-title { font-size: 26px; margin-bottom: 0.8rem; }
 .process-content p { font-size: 15px; line-height: 1.5; }
 .step-pill { padding: 0.3rem 0.8rem; margin-bottom: 1rem; font-size: 12px; display: inline-block; }
}

/* CONTACT PAGE */
.contact-header { width: 100%; text-align: center; padding-top: 35px; }
.header-content { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.page-indicator { font-size: 60px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; background: linear-gradient(135deg, #ffffff 15%, var(--primary-purple) 75%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
html, body { overflow-x: hidden; width: 100%; position: relative; }
.header-line { width: 100%; height: 1px; background: rgba(255, 255, 255, 0.05); margin: 0; }
.contact-container { max-width: 1200px; margin: 60px auto; display: flex; flex-direction: column; align-items: center; gap: 4rem; padding: 0 2rem; }
textarea.form-input { resize: none; height: 150px; }
.contact-info { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
.contact-text-header h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.contact-links-grid { display: flex; flex-direction: row; justify-content: center; flex-wrap: wrap; gap: 4rem; margin-top: 2rem; width: 100%; }
.contact-item { display: flex; flex-direction: column; align-items: center; text-align: center; text-decoration: none; color: var(--text-main); transition: transform 0.3s ease; }
.contact-item:hover { transform: translateY(-5px); }
.contact-icon { font-size: 1.8rem; margin-bottom: 10px; background: linear-gradient(135deg, var(--primary-purple), #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 0 8px var(--primary-glow)); }
.contact-item h3 { font-size: 1.1rem; margin-bottom: 4px; }
.info-text { font-size: 0.9rem; color: var(--text-muted); }
.contact-form { display: flex; flex-direction: column; width: 100%; max-width: 800px; }
.form-input { width: 100%; padding: 1.2rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); color: white; margin-bottom: 1.5rem; border-radius: 8px; font-family: var(--font-main); }
.form-input:focus { border-color: var(--primary-purple); outline: none; background: rgba(94, 23, 235, 0.05); }
.btn-primary.btn-wide { padding: 1.5rem 2.2rem; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); display: inline-block; cursor: pointer; border: none; color: #fff; box-shadow: 0 0 0 2px #1a1a1e, 0 8px 20px rgba(0, 0, 0, 0.4); background: radial-gradient(circle at 30% 20%, rgba(168, 85, 247, 0.6) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(94, 23, 235, 0.6) 0%, transparent 50%), linear-gradient(135deg, #7f57f9 0%, #310d8a 100%); position: relative; overflow: hidden; font-size: 1.2rem; width: 100%; }
.btn-primary.btn-wide:hover { transform: translateY(-2px); box-shadow: 0 0 0 2px #1a1a1e, 0 12px 24px rgba(0, 0, 0, 0.5); }
@media (max-width: 600px) {
 .page-indicator { font-size: 45px; margin-bottom: 2rem; }
 .contact-container { display: flex; flex-direction: column; padding: 0.5rem; margin-top: 5px; gap: 0; }
 .contact-links-grid { order: 1; display: flex; flex-direction: row; justify-content: center; gap: 1.5rem; width: 100%; margin-bottom: 30px; margin-top: 0.5px;}
 .contact-icon { font-size: 1.5rem; } .contact-item h3 { font-size: 0.75rem; } .info-text { display: none; }
 .contact-text-header { order: 2; text-align: center; }
 .contact-text-header h1 { font-size: 2rem; margin-bottom: 20px; }
 .contact-text-header p { font-size: 1rem; margin-bottom: 50px; }
 .contact-form { order: 3; width: 100%; display: flex; flex-direction: column; gap: 15px; }
 .form-grid { display: flex; flex-direction: column; gap: 15px; }
 .form-input { width: 100%; padding: 1.2rem; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); color: white; border-radius: 4px; box-sizing: border-box; margin-bottom: 0; }
 textarea.form-input { resize: none; height: 120px; }
 .form-button-wrapper { margin-top: 25px; }
 .btn-primary.btn-wide { width: 100%; padding: 0.8rem 2.2rem; border-radius: 50px; font-weight: 600; cursor: pointer; border: none; color: #fff; background: linear-gradient(135deg, #7f57f9 0%, #310d8a 100%); font-size: 18px; }
}

.bodega-title { font-family: 'BodegaBold','Bodeg',  sans-serif; text-transform: none; letter-spacing: normal; }
.header-content { font-family: 'BodegaBold', 'Bodeg', sans-serif; font-weight: 1000; text-transform: uppercase; }
.page-title-bodega { font-family: 'BodegaBold', 'Bodeg', sans-serif; font-weight: 1000; text-transform: uppercase; }

