@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); :root { --body-bg: #0b0d10; --shopilab-dark-light: #5A503C; --shopilab-gold: #AE9060; --shopilab-gold-light: #C9AE7A; --section-width: 1460px; --backdrop-filter: blur(12px) saturate(220%) contrast(125%) brightness(1.05); --inset-shadow: 0 12px 40px #0003, inset 0 1px #ffffffb3, inset 0 -1px #fff3, inset 0 0 8px 4px #ffffff59; --button-radius: 100px; --button-font-size: 15px; --bottom-menu-height: 72px; --bottom-menu-pad: 14px; --section-heading-size-desktop: 42px; --section-heading-size-mobile: 32px; --card-ratio: 1 / 1.5; } * { box-sizing: border-box !important; margin: 0; padding: 0; scroll-behavior: smooth; color: white; text-decoration: none; letter-spacing: 0; font-family: "Poppins", sans-serif; } .ast-plain-container{ background: #0b0d10; } html, body { background: #0b0d10; margin: 0; padding: 0; box-sizing: border-box; width: 100%; position: relative; } header { position: absolute; top: 0; left: 0; width: 100%; z-index: 2; } .logo-and-icons-container { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; padding: 10px 30px; } .logo-container { width: 96px; } .logo-container img { width: 100%; } .icons-container { max-width: 80%; display: flex; justify-content: center; align-items: center; gap: 5px; padding-top: 10px; } .icons-container .header-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; padding: 10px; border-radius: 100px; backdrop-filter: var(--backdrop-filter); box-shadow: var(--inset-shadow); } .icons-container img { width: 100%; object-fit: contain; cursor: pointer; } .header-cta-btn { padding: 5px 20px; height: 40px; display: flex; align-items: center; justify-content: center; backdrop-filter: var(--backdrop-filter); box-shadow: var(--inset-shadow); border-radius: var(--button-radius); color: white; } a.header-cta-btn.booking-popup-trigger { color: white; } .header-cta-btn img { width: 12px; margin-left: 10px; } .mobile-only { display: none; } .icons-container.mobile-only { display: none; } .logo-and-icons-container a b, .logo-and-icons-container button b { text-transform: uppercase; font-weight: 600; margin: 0px 6px; color: var(--shopilab-gold-light); } /* Overlay behind the sheet */ .sheet-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.4); backdrop-filter: var(--backdrop-filter); opacity: 0; pointer-events: none; transition: opacity 220ms ease; z-index: 999; } /* Bottom sheet container */ .bottom-sheet { position: fixed; left: 0; right: 0; bottom: 0; height: 50vh; max-height: fit-content; transform: translateY(110%); transition: transform 260ms ease; background: rgba(40, 43, 42, 0.72); /* matches your dark palette */ backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); box-shadow: var(--inset-shadow); z-index: 1000; display: flex; flex-direction: column; max-width: 95vw; margin: auto; border-radius: 30px 30px 0 0; border: 1px solid rgba(255, 255, 255, 0.16); } /* When open */ .bottom-sheet.is-open { transform: translateY(0); } .sheet-overlay.is-open { opacity: 1; pointer-events: auto; } /* Header area */ .sheet-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 20px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.10); } .sheet-title-wrap h3 { margin: 0; font-size: 18px; font-weight: 600; color: #fff; } .sheet-title-wrap p { margin: 6px 0 0 0; font-size: 14px; color: rgba(255, 255, 255, 0.75); } /* Close button */ .sheet-close { border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.06); color: #fff; min-width: 38px; height: 38px; border-radius: 100%; cursor: pointer; } .sheet-close:hover { background: rgba(255, 255, 255, 0.10); } /* Body content */ .sheet-body { padding: 20px 20px 30px 20px; overflow: auto; /* allow scrolling inside sheet if needed */ } /* Buttons */ .sheet-actions { display: grid; gap: 12px; } .btn { padding: 14px 16px; border-radius: var(--button-radius); font-size: var(--button-font-size); border: none; display: flex; align-items: center; justify-content: center; backdrop-filter: var(--backdrop-filter); box-shadow: var(--inset-shadow); color: #fff !important; cursor: pointer; background: transparent !important; text-transform: uppercase; } a#get-started-btn{ color: white; } .btn-primary { background: white !important; color: black !important; border: none; padding: 14px 16px; border-radius: var(--button-radius); font-size: var(--button-font-size); border: none; display: flex; align-items: center; justify-content: center; backdrop-filter: var(--backdrop-filter); cursor: pointer; text-transform: uppercase; transition: 0.3s; } .btn-primary:hover { box-shadow: 0 6px 10px rgba(174, 144, 96, 0.9) !important; } .btn:hover img { transform: rotate(45deg) translate(4px, -3px) scale(1.2); } body.no-scroll { overflow: hidden; } .btn img { width: 12px; margin-left: 10px; transition: 0.3s; } .btn-primary img { display: none; } .btn-span { color: var(--shopilab-dark-light); font-weight: 700; display: inline-block; margin: 0px 4px; } .bottom-menu { position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); width: min(880px, calc(100vw - 24px)); height: var(--bottom-menu-height); display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; padding: 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.12); backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); box-shadow: var(--inset-shadow); border: 1px solid rgba(255, 255, 255, 0.16); z-index: 1000; transition: transform 220ms ease, opacity 220ms ease; text-transform: uppercase; } .bottom-menu.is-hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); } .bottom-menu__item { height: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; color: rgba(255, 255, 255, 0.78); border-radius: 999px; padding: 10px 14px; transition: background 180ms ease, color 180ms ease; } .bottom-menu__icon { width: 22px; object-fit: contain; opacity: 0.9; flex: 0 0 auto; } .bottom-menu__label { font-size: 15px; line-height: 1; white-space: nowrap; letter-spacing: 0.5px; } /* Active item styling (matches your dark/gold palette) */ .bottom-menu__item.is-active { background: rgba(0, 0, 0, 0.38); color: #fff; border: 1px solid rgba(255, 255, 255, 0.12); } .bottom-menu__item.is-active .bottom-menu__icon { opacity: 1; filter: brightness(1.05); } .bottom-menu.is-offscreen { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(10px); } /* ========================================= CONTACT POPUP (Overlay + Bottom Sheet + Form) ========================================= */ #contactOverlay.sheet-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); opacity: 0; pointer-events: none; transition: opacity 220ms ease; z-index: 999; } #contactOverlay.sheet-overlay.is-open { opacity: 1; pointer-events: auto; } /* Bottom sheet container */ #contactSheet.bottom-sheet.contact-sheet { position: fixed; left: 0; right: 0; bottom: 0; max-height: 98vh; height: fit-content; max-width: 90%; width: 1200px; margin: auto; transform: translateY(110%); transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1); background: rgba(40, 43, 42, 0.72); backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px; border-top: 1px solid rgba(255, 255, 255, 0.12); z-index: 1000; display: flex; flex-direction: column; border-radius: 30px 30px 0 0; border: 1px solid rgba(255, 255, 255, 0.16); } #contactSheet.bottom-sheet.contact-sheet.is-open { transform: translateY(0); } /* Header */ #contactSheet .sheet-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.10); } #contactSheet .sheet-title-wrap h3 { margin: 0; font-size: 24px; font-weight: 600; color: #fff; } #contactSheet .sheet-title-wrap p { margin: 6px 0 0 0; font-size: 14px; color: rgba(255, 255, 255, 0.75); } /* Close button */ #contactSheet .sheet-close { border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.06); color: #fff; width: 38px; height: 38px; border-radius: 10px; cursor: pointer; padding: 0; } select { padding: unset; height: auto !important; } input[type="text"], input[type="number"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type=reset], input[type=tel], input[type=date], select { height: unset !important; font-size: 14px; } #contactSheet .sheet-close:hover { background: rgba(255, 255, 255, 0.10); } /* Body (scroll area) */ #contactSheet .sheet-body { padding: 20px 40px; overflow: auto; position: relative; } /* Form layout */ #contactSheet .contact-form { width: 100%; } #contactSheet .form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 18px; } #contactSheet .field--full { grid-column: 1 / -1; } #contactSheet .field label { display: block; font-size: 12px; color: rgba(255, 255, 255, 0.75); margin: 0 0 6px; } #contactSheet .req { color: var(--shopilab-gold-light); margin-left: 4px; } /* Inputs */ #contactSheet .field input, #contactSheet .field select, #contactSheet .field textarea { width: 100%; padding: 14px 14px; border-radius: 1px; border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.08); color: #fff; outline: none; } #contactSheet .field textarea { resize: vertical; min-height: 120px; } #contactSheet .field input::placeholder, #contactSheet .field textarea::placeholder { color: rgba(255, 255, 255, 0.45); } /* IMPORTANT: dropdown list text visibility (browser support varies) */ #contactSheet .field select { color: #fff; background-color: rgba(255, 255, 255, 0.08); } /* Many browsers render the opened dropdown panel white; make options readable */ #contactSheet .field select option { color: #111; background: #fff; } #contactSheet .field select option[disabled] { color: #666; } /* Focus states */ #contactSheet .field input:focus, #contactSheet .field select:focus, #contactSheet .field textarea:focus { border-color: rgba(201, 174, 122, 0.55); } #contactSheet .field small.hint { display: block; margin-top: 8px; font-size: 12px; color: rgba(255, 255, 255, 0.55); } /* Submit */ .field--full .btn-primary { max-width: 260px; width: 100%; display: block; margin: auto; } /* ========================================= CONTACT POPUP – CUSTOM SCROLLBAR ========================================= */ /* Firefox */ #contactSheet .sheet-body { scrollbar-width: 25px; scrollbar-color: rgba(174, 144, 96, 0.65) rgba(255, 255, 255, 0.06); } /* WebKit (Chrome, Edge, Safari) */ #contactSheet .sheet-body::-webkit-scrollbar { width: 10px; } #contactSheet .sheet-body::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.06); border-radius: 12px; margin: 6px 0; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 6px 12px rgba(0, 0, 0, 0.25); } #contactSheet .sheet-body::-webkit-scrollbar-thumb { border-radius: 12px; background: linear-gradient( 180deg, rgba(201, 174, 122, 0.9), rgba(174, 144, 96, 0.9)); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.35), inset 0 -1px rgba(0, 0, 0, 0.25); } #contactSheet .sheet-body::-webkit-scrollbar-thumb:hover { background: linear-gradient( 180deg, rgba(201, 174, 122, 1), rgba(174, 144, 96, 1)); } #contactSheet .sheet-body::-webkit-scrollbar-thumb:active { background: rgba(174, 144, 96, 1); } /*************************************** Hero Section ****************************************/ /* ========================= HERO SECTION ========================= */ .hero { position: relative; min-height: 100vh; display: grid; place-items: center; overflow: hidden; } .hero-background { position: absolute; inset: 0; z-index: 0; background: radial-gradient(900px 600px at 20% 25%, rgba(201, 174, 122, 0.18), transparent 55%), radial-gradient(900px 600px at 78% 45%, rgba(90, 80, 60, 0.28), transparent 55%), linear-gradient(180deg, #0f1114, #12151b 50%, #0b0d10); } .hero-container { position: relative; z-index: 1; width: 100%; max-width: var(--section-width); display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; padding: 90px 30px 70px 30px; } /* LEFT CONTENT */ .hero-content { max-width: 635px; } .hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: var(--button-radius); background: var(--shopilab-dark-light); border: 1px solid var(--shopilab-gold-light); backdrop-filter: var(--backdrop-filter); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35); margin-bottom: 15px; font-size: 11px; } .hero-badge span { color: white; } .hero-badge-icon { width: 18px; height: 18px; } .hero-title { margin: 0; font-size: clamp(30px, 4.6vw, 54px); line-height: 1.02; letter-spacing: -0.03em; color: #fff; } .hero-highlight { color: var(--shopilab-gold-light); text-transform: uppercase; text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 7px 0 #222, 0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c, 0 11px 0 #1a1a1a, 0 12px 0 #181818, 0 13px 0 #161616, 0 14px 0 #141414, 0 15px 0 #121212, 0 22px 30px rgba(0, 0, 0, 0.9); } .hero-description { margin-top: 18px; max-width: 640px; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, 0.68); } .hero-actions { margin-top: 15px; display: flex; gap: 16px; flex-wrap: wrap; } .hero-actions a { min-width: 250px; } .pricing .hero-actions a { min-width: 250px; } /* STATS */ .hero-stats { margin-top: 25px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 30px; align-items: center; } .hero-stats-divider { width: 1px; height: 60px; background: rgba(255, 255, 255, 0.14); } .stat-value { font-size: 44px; font-weight: 800; color: var(--shopilab-gold-light); display: inline-flex; align-items: center; gap: 8px; } .stat-suffix { font-size: 28px; } .stat-label { margin-top: 6px; font-size: 14px; color: rgba(255, 255, 255, 0.58); } .stat-icon { width: 26px; height: 26px; } /* RIGHT MEDIA */ .hero-media { display: flex; justify-content: flex-end; } .hero-media-card { width: min(720px, 100%); padding: 26px 28px 22px; border-radius: 28px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: var(--backdrop-filter); box-shadow: 0 26px 90px rgba(0, 0, 0, 0.55); } .hero-media-image { width: 100%; border-radius: 18px; box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55); } /* ========================= SERVICES SECTION ========================= */ .services { position: relative; padding: 20px 0; background: #0b0d10; } .services-container { max-width: var(--section-width); margin: auto; } .section-heading { margin: 0px 0px 30px 0px; text-align: center; font-size: var(--section-heading-size-desktop); font-weight: 700 !important; text-transform: uppercase; font-family: "Jost", sans-serif; color: white; } .section-heading-highlight { color: var(--shopilab-gold-light); text-transform: uppercase; text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 7px 0 #222, 0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c, 0 11px 0 #1a1a1a, 0 12px 0 #181818, 0 13px 0 #161616, 0 14px 0 #141414, 0 15px 0 #121212, 0 22px 30px rgba(0, 0, 0, 0.9); position: relative; white-space: nowrap; } .section-heading-highlight::before { content: ''; position: absolute; top: -3px; left: 50%; transform: translateX(-50%); width: 100%; height: 4px; border-radius: 1px; background: var(--shopilab-gold-light); } .section-heading-highlight::after { content: ''; position: absolute; bottom: -3px; left: 50%; transform: translateX(-50%); width: 100%; height: 4px; border-radius: 1px; background: var(--shopilab-gold-light); } /* Base swiper wrapper: becomes a grid on desktop */ @media (min-width: 1025px) { .services-grid { display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 30px; } } /* Swiper slides should behave like normal grid items on desktop */ .services .swiper-slide { height: auto; } /* Service card */ .service-card { position: relative; padding: 50px 25px 40px 25px; border-radius: 0px; /* same "atmosphere" as hero background, but inside the card */ background: radial-gradient(700px 380px at 20% 15%, rgba(201, 174, 122, 0.18), transparent 55%), radial-gradient(700px 380px at 80% 50%, rgba(90, 80, 60, 0.26), transparent 60%), rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.10); backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; min-height: 3; margin-top: 50px; min-height: 420px; } @media (min-width: 768px) { .service-card:hover { transform-origin: bottom center; animation: screen-wobble 1.2s ease-in-out; transform-style: preserve-3d; filter: brightness(1.8); border-color: rgba(201, 174, 122, 0.22); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85); cursor: pointer; } } /* Icon circle */ .service-icon { width: 80px; height: 80px; border-radius: 999px; display: grid; place-items: center; margin: 0 auto 12px; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); background: var(--shopilab-dark-light); border: 1px solid rgba(255, 255, 255, 0.10); backdrop-filter: var(--backdrop-filter); box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; } .service-icon img { width: 60%; height: 60%; object-fit: contain; } /* Text */ .service-title { margin: 0; color: var(--shopilab-gold-light); text-transform: uppercase; position: relative; margin-bottom: 15px; font-size: 18px; font-family: "Jost", sans-serif; } .service-title::after { content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); width: 50%; height: 3px; border-radius: 1px; background: var(--shopilab-gold-light); border-radius: 100%; } .service-tagline { margin: 8px 0 0; font-size: 14px; color: rgb(222, 222, 222); font-weight: 700; font-style: oblique; } .service-detail { margin: 10px 0 0; font-size: 12px; line-height: 1.5; color: rgb(184, 184, 184); } /* Mobile controls */ .services-count { min-width: 100%; font-size: 12px; color: rgba(255, 255, 255, 0.3); position: absolute; bottom: 15px !important; left: 12px !important; z-index: 1; padding: 0px 20px; } .swiper-pagination-current { opacity: 1; } .swiper-pagination-total { opacity: 0.3; } .btn-centered { margin: auto; max-width: 250px; } .service-text { max-width: 500px; padding: 0px 20px; margin: 15px auto; text-align: center; font-size: 12px; color: rgba(255, 255, 255, 0.68); } /* ========================= PACKAGES ========================= */ .packages-container { max-width: var(--section-width); padding: 30px; margin: auto; } .packages-subtitle { text-align: center; max-width: 700px; margin: 15px auto 15px auto; color: rgba(255, 255, 255, 0.65); font-size: 15px; } .packages-swiper { width: 100%; } /* Desktop grid layout */ @media (min-width: 1025px) { .packages-grid { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 25px; align-items: stretch; padding-top: 40px; } } .package-card { position: relative; border-radius: 18px; padding: 26px; background: radial-gradient(700px 380px at 20% 15%, rgba(201, 174, 122, 0.18), transparent 55%), radial-gradient(700px 380px at 80% 50%, rgba(90, 80, 60, 0.26), transparent 60%), rgba(255, 255, 255, 0.04); backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35); height: 100%; display: flex; flex-direction: column; justify-content: space-between; } .package-card-featured { background: linear-gradient(180deg, #131722, #0b0d10); border-color: rgba(201, 174, 122, 0.45); } .package-badge { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: var(--button-radius); background: var(--shopilab-dark-light); border: 1px solid var(--shopilab-gold-light); backdrop-filter: var(--backdrop-filter); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35); margin-bottom: 15px; font-size: 11px; } .package-head { display: flex; gap: 12px; align-items: center; } .package-icon { width: 45px; height: 45px; border-radius: 12px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.10); font-size: 24px; } .package-name { margin: 0; font-size: 18px; font-weight: 800; color: #fff; text-transform: uppercase; } .package-tagline { margin: 4px 0 0; font-size: 13px; color: rgba(255, 255, 255, 0.6); } .package-price { margin: 18px 0 0; font-size: 34px; font-weight: 900; color: #fff; } .package-price-note { font-size: 12px; font-weight: 500; color: rgba(255, 255, 255, 0.6); margin-left: 5px; } .package-timeline { margin-top: 14px; padding: 10px 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.10); display: flex; justify-content: space-between; font-size: 13px; } .package-timeline-label { color: rgba(255, 255, 255, 0.65); } .package-timeline-value { color: #fff; font-weight: 700; } .package-features { list-style: none; padding: 0; margin: 18px 0 22px; } .package-features li { padding-left: 24px; position: relative; margin-bottom: 10px; font-size: 14px; color: rgba(255, 255, 255, 0.78); line-height: 1.35; } .package-features li::before { content: ""; position: absolute; left: 0; top: 0.3em; width: 16px; /* control size here */ height: 16px; background-image: url('../Assets/check.png'); background-size: contain; background-repeat: no-repeat; } .package-features strong { color: #fff; } .package-actions { display: grid; gap: 10px; } .package-btn { width: 100%; padding: 13px 16px; border-radius: 12px; cursor: pointer; border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.06); color: #fff; font-weight: 650; } .package-btn-primary { background: var(--shopilab-gold-light); color: #101010; border-color: rgba(0, 0, 0, 0.15); } .package-btn-primary:hover { filter: brightness(1.04); } .package-btn-secondary:hover { background: rgba(255, 255, 255, 0.10); } .packages-footer-text { text-align: center; margin: 34px 0 16px; color: rgba(255, 255, 255, 0.65); } .packages-footer-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; } .btns-centered { justify-content: center; } /* Tabs container (mobile only) */ .packages-tabs { display: none; justify-content: space-between; margin: 60px 0 15px; overflow: visible; -webkit-overflow-scrolling: touch; scrollbar-width: none; border-radius: 999px; background: rgba(255, 255, 255, 0.12); backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); box-shadow: var(--inset-shadow); border: 1px solid rgba(255, 255, 255, 0.16); padding: 5px; } .packages-tabs::-webkit-scrollbar { display: none; } .packages-tab { position: relative; white-space: nowrap; border: 1px solid rgba(255, 255, 255, 0.15); background: transparent; color: inherit; padding: 14px 0px; border-radius: 999px; font: inherit; cursor: pointer; line-height: 1; transition: transform 0.12s ease, border-color 0.12s ease; width: 32.5%; font-size: 13px; text-transform: uppercase; } .packages-tab.is-active { border: 1px solid var(--shopilab-gold); transform: translateY(-1px); background: var(--shopilab-dark-light); font-weight: 700; } .price-tab-icon { font-size: 20px; position: absolute; right: 0px; left: 0px; margin: auto; display: block; top: -23px; transform: translateY(-50%); background: rgba(255, 255, 255, 0.12); backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); box-shadow: var(--inset-shadow); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 30px 30px 0px 0px; max-width: fit-content; padding: 10px 10px 6px 10px; z-index: -1; transition: 0.3s; } .packages-tab.is-active .price-tab-icon { border: 5px solid rgba(255, 255, 255, 0.3); top: -27px; } .packages-section-inner-title { text-align: center; color: white; } /* ========================= HOW IT WORKS – Bottom Sheet ========================= */ .how-works-overlay { position: fixed; inset: 0; z-index: 2200; background: rgba(0, 0, 0, 0.58); opacity: 0; pointer-events: none; transition: opacity 220ms ease; backdrop-filter: var(--backdrop-filter); } .how-works-overlay.is-open { opacity: 1; pointer-events: auto; background: rgba(0, 0, 0, 0.4); } .how-works-sheet { position: fixed; left: 0; right: 0; bottom: 0; z-index: 2210; height: 95vh; transform: translateY(110%); transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1); background: rgba(20, 22, 26, 0.78); backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); box-shadow: var(--inset-shadow), 0 -30px 80px rgba(0, 0, 0, 0.55); border-top: 1px solid rgba(255, 255, 255, 0.12); display: flex; flex-direction: column; pointer-events: none; max-width: 95vw; margin: auto; border-radius: 30px 30px 0 0; } .how-works-sheet.is-open { transform: translateY(0); pointer-events: auto; } .how-works-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid rgba(255, 255, 255, 0.10); } .how-works-title { margin: 0; font-size: 18px; font-weight: 800; color: #fff; } .how-works-close { width: 38px; height: 38px; border-radius: 100%; border: 1px solid rgba(255, 255, 255, 0.16) !important; background: rgba(255, 255, 255, 0.06); color: #fff; cursor: pointer; padding: 0; } .how-works-close:hover { background: rgba(255, 255, 255, 0.10); } .how-works-body { padding: 18px 22px 26px; overflow: auto; } .how-works-steps { margin: 0; padding-left: 18px; } .how-works-steps li { margin-bottom: 12px; color: rgba(255, 255, 255, 0.78); line-height: 1.5; font-size: 14px; } .how-works-steps strong { color: #fff; } /* Optional: scrollbar */ .how-works-body { scrollbar-width: thin; scrollbar-color: rgba(174, 144, 96, 0.65) rgba(255, 255, 255, 0.06); } .how-works-body::-webkit-scrollbar { width: 10px; } .how-works-body::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.06); border-radius: 12px; margin: 6px 0; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 6px 12px rgba(0, 0, 0, 0.25); } .how-works-body::-webkit-scrollbar-thumb { border-radius: 12px; background: linear-gradient(180deg, rgba(201, 174, 122, 0.9), rgba(174, 144, 96, 0.9)); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.35), inset 0 -1px rgba(0, 0, 0, 0.25); } .note-txt { font-size: 15px; color: red; font-weight: bold; text-transform: uppercase; } /* ========================= STEPS (How it works) Alternating layout + center line on desktop Stacked on mobile ========================= */ .steps { position: relative; display: grid; gap: 18px; padding: 10px 0 6px; } /* Center timeline line (desktop) */ .steps::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-50%); background: rgba(255, 255, 255, 0.14); } /* Row */ .steps-item { display: grid; grid-template-columns: 1fr 92px 1fr; align-items: stretch; gap: 18px; position: relative; } /* Card base */ .steps-card { border-radius: 16px; padding: 16px 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12); backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35); } .steps-title { margin: 0; font-size: 15px; font-weight: 800; color: #fff; } .steps-text { margin: 8px 0 0; font-size: 14px; line-height: 1.55; color: rgba(255, 255, 255, 0.72); } .steps-text a, .steps-link { color: var(--shopilab-gold-light); text-decoration: none; border-bottom: 1px solid rgba(201, 174, 122, 0.35); } .steps-link:hover { border-bottom-color: rgba(201, 174, 122, 0.8); } /* Marker column */ .steps-marker { display: grid; place-items: center; position: relative; } .steps-num { width: 54px; height: 54px; border-radius: 999px; display: grid; place-items: center; font-weight: 900; letter-spacing: 0.02em; color: #111; background: var(--shopilab-gold-light); box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35); border: 1px solid rgba(0, 0, 0, 0.2); } /* Alternate left/right */ .steps-left .steps-card { grid-column: 1 / 2; } .steps-left .steps-marker { grid-column: 2 / 3; } .steps-left> :nth-child(3) { grid-column: 3 / 4; } .steps-right .steps-marker { grid-column: 2 / 3; } .steps-right .steps-card { grid-column: 3 / 4; } /* Empty column alignment helpers (keep structure clean) */ .steps-left::after, .steps-right::after { content: ""; } /* ========================= PROJECTS ========================= */ .projects { max-width: var(--section-width); padding: 80px 30px; margin: auto; background: #0b0d10; } .projects-container { display: flex; flex-wrap: wrap; justify-content: space-between; } .single-project { width: calc(50% - 15px); } .project-card { width: 100%; text-align: center; margin-bottom: 30px; padding-bottom: 30px; border-radius: 0 0 25px 25px; cursor: pointer; box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.25); border-bottom: 1px solid rgba(255, 255, 255, 0.16); } .project-img-container { width: 100%; margin-bottom: 10px; position: relative; } .project-image { width: 100%; } .project-title { font-size: 24px; margin: 8px 0 0; color: var(--shopilab-gold-light); text-transform: uppercase; text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 7px 0 #222, 0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c, 0 11px 0 #1a1a1a, 0 12px 0 #181818, 0 13px 0 #161616, 0 14px 0 #141414, 0 15px 0 #121212, 0 22px 30px rgba(0, 0, 0, 0.9); } .project-type { margin: 0; font-size: 14px; color: rgba(255, 255, 255, 0.6); font-style: oblique; } .eye-view-project { width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 100%; background: rgba(255, 255, 255, 0.12); backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); box-shadow: var(--inset-shadow); border: 1px solid rgba(255, 255, 255, 0.16); z-index: 1; position: absolute; right: 20px; top: 20px; transition: 0.3s; } .project-card:hover .eye-view-project { background: rgba(255, 255, 255, 0.4); transform: scale(1.2); } .project-card:hover .project-image { transform-origin: bottom center; animation: screen-wobble 1.2s ease-in-out; transform-style: preserve-3d; } @keyframes screen-wobble { 0% { transform: perspective(600px) rotateX(0deg); } 30% { transform: perspective(600px) rotateX(-5deg); } 55% { transform: perspective(600px) rotateX(3deg); } 75% { transform: perspective(600px) rotateX(-2deg); } 100% { transform: perspective(600px) rotateX(0deg); } } /* ========================= PROJECT VIEW POPUP (Bottom Sheet) ========================= */ body.no-scroll { overflow: hidden; } /* Overlay */ .project-overlay-sheet { position: fixed; inset: 0; z-index: 2400; background: rgba(0, 0, 0, 0.58); opacity: 0; pointer-events: none; transition: opacity 220ms ease; backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); } .project-overlay-sheet.is-open { opacity: 1; pointer-events: auto; background: rgba(0, 0, 0, 0.45); } /* Sheet */ .project-sheet { position: fixed; left: 0; right: 0; bottom: 0; z-index: 2410; max-height: 95vh; height: fit-content; transform: translateY(110%); transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1); background: rgba(20, 22, 26, 0.78); backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); box-shadow: var(--inset-shadow), 0 -30px 80px rgba(0, 0, 0, 0.55); border-top: 1px solid rgba(255, 255, 255, 0.12); display: flex; flex-direction: column; pointer-events: none; max-width: 95vw; margin: 0 auto; border-radius: 30px 30px 0 0; } .project-sheet.is-open { transform: translateY(0); pointer-events: auto; } /* Header */ .project-sheet-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 22px; border-bottom: 1px solid rgba(255, 255, 255, 0.10); } .project-sheet-title { margin: 0; font-size: 18px; font-weight: 900; color: #fff; } .project-sheet-subtitle { margin: 6px 0 0; font-size: 13px; color: rgba(255, 255, 255, 0.62); } .project-sheet-close { width: 42px; height: 42px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.06); color: #fff; cursor: pointer; padding: 0; } .project-sheet-close:hover { background: rgba(255, 255, 255, 0.10); } /* Body */ .project-sheet-body { padding: 22px; overflow: auto; display: grid; gap: 28px; scrollbar-width: thin; scrollbar-color: rgba(174, 144, 96, 0.65) rgba(255, 255, 255, 0.06); } .project-sheet-body::-webkit-scrollbar { width: 10px; } .project-sheet-body::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.06); border-radius: 12px; margin: 6px 0; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 6px 12px rgba(0, 0, 0, 0.25); } .project-sheet-body::-webkit-scrollbar-thumb { border-radius: 12px; background: linear-gradient(180deg, rgba(201, 174, 122, 0.9), rgba(174, 144, 96, 0.9)); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.35), inset 0 -1px rgba(0, 0, 0, 0.25); } /* Sections inside popup */ .project-popup-section { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: center; } .project-popup-section.reverse { direction: rtl; } .project-popup-section.reverse>* { direction: ltr; } .project-popup-image { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.04); box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35); } .project-popup-image img { width: 100%; height: 100%; display: block; object-fit: cover; filter: brightness(0.75) contrast(1.06) saturate(0.95); } .project-popup-text { border-radius: 16px; padding: 16px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12); backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28); } .project-popup-text h4 { margin: 0; font-size: 16px; font-weight: 900; color: #fff; } .project-popup-text p { margin: 10px 0 0; color: rgba(255, 255, 255, 0.72); line-height: 1.6; font-size: 14px; } /* Mobile controls styling */ #projectsSwiper .swiper-pagination { position: relative; margin-top: 20px; } #projectsSwiper .swiper-pagination-bullet { width: 9px; height: 9px; opacity: 0.4; background: var(--shopilab-gold-light); } #projectsSwiper .swiper-pagination-bullet-active { opacity: 1; } #projectsSwiper .swiper-button-prev, #projectsSwiper .swiper-button-next { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.12); backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); box-shadow: var(--inset-shadow); border: 1px solid rgba(255, 255, 255, 0.16); color: #fff !important; border-radius: 100%; top: 80%; z-index: 200; bottom: 0px; } #projectsSwiper .swiper-button-prev { top: unset; left: unset; right: 67px; } #projectsSwiper .swiper-button-next { top: unset; right: 24px; } #projectsSwiper .swiper-button-prev::after, #projectsSwiper .swiper-button-next::after { font-size: 16px; } /* ========================= REVIEWS 3D ========================= */ .reviews-3d-container { margin: auto; padding: 0px 0px 80px 0px; } .reviews-3d-eyebrow { display: block; text-align: center; font-size: 13px; color: var(--shopilab-gold-light); margin-bottom: 8px; } .reviews-3d-title { text-align: center; font-size: 36px; margin: 0; color: #fff; } .reviews-3d-subtitle { text-align: center; max-width: 760px; margin: 12px auto 30px; color: rgba(255, 255, 255, 0.65); line-height: 1.6; font-size: 15px; } .reviews-3d-wrap { position: relative; overflow: hidden; padding: 0; } .reviews-3d-swiper .swiper-wrapper { align-items: stretch; } /* Arrows centered */ .reviews-3d-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 46px; height: 46px; cursor: pointer; color: #fff; display: flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, 0.12); backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); box-shadow: var(--inset-shadow); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 100%; } .reviews-3d-arrow svg { width: 30px; height: 30px; } .reviews-3d-arrow:hover { background: rgba(255, 255, 255, 0.10); } .reviews-3d-prev { left: 10px; padding: 0; } .reviews-3d-next { right: 10px; padding: 0; } /* Dots */ .reviews-3d-dots { margin-top: 30px; text-align: center; } .reviews-3d-dots .swiper-pagination-bullet { width: 10px; height: 10px; opacity: 0.35; background: rgba(255, 255, 255, 0.75); margin: 0 6px !important; } .reviews-3d-dots .swiper-pagination-bullet-active { opacity: 1; background: var(--shopilab-gold-light); } /* Slide smoothing */ .reviews-3d-swiper .swiper-slide { height: auto; transform-style: preserve-3d; } /* 3D Card */ .reviews-3d-swiper .swiper-slide { background: radial-gradient(800px 400px at 20% 15%, rgba(201, 174, 122, 0.22), transparent 55%), radial-gradient(800px 400px at 90% 80%, rgba(90, 80, 60, 0.28), transparent 60%), linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)) !important; backdrop-filter: var(--backdrop-filter) !important; -webkit-backdrop-filter: var(--backdrop-filter) !important; border: 1px solid rgba(255, 255, 255, 0.4) !important; padding: 5px; box-shadow: var(--inset-shadow); } .review-3d-card { position: relative; height: 100%; padding: 22px 20px; /* Premium gradient */ transform: translateZ(0); border: 1px solid rgba(255, 255, 255, 0.4) !important; overflow: hidden; box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35) !important; transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease; } /* sheen overlay (subtle moving highlight) */ .review-3d-sheen { position: absolute; inset: -2px; background: radial-gradient(700px 240px at 25% 10%, rgba(255, 255, 255, 0.10), transparent 60%), radial-gradient(600px 240px at 80% 85%, rgba(201, 174, 122, 0.10), transparent 60%); opacity: 0.9; pointer-events: none; } /* Top row */ .review-3d-top { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; position: relative; z-index: 1; } .review-3d-avatar { width: 56px; height: 56px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.55); box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35); } .review-3d-avatar img { width: 100%; height: 100%; object-fit: cover; } .review-3d-name { margin: 0; font-size: 16px; font-weight: 700; color: #fff; } .review-3d-role { margin: 6px 0 0; font-size: 13px; color: rgba(255, 255, 255, 0.62); margin: 0px; } .review-3d-rating { font-size: 20px; color: var(--shopilab-gold-light); letter-spacing: 1px; opacity: 1; position: absolute; right: -10px; top: -20px; display: flex; align-items: center; gap: 0px; } .review-3d-rating-value { font-size: 12px; color: var(--shopilab-gold-light); margin-left: 4px; } .review-3d-rating img { width: 20px; margin-right: 4px; } .review-3d-rating svg { width: 20px; margin-right: 4px; } .fiverr-logo { width: 40px; position: absolute; right: 15px; bottom: 15px; opacity: 1; z-index: -1; } /* Body text */ .review-3d-text { margin: 16px 0 0; color: rgba(255, 255, 255, 1); line-height: 1.7; font-size: 14px; position: relative; z-index: 1; } /* Pills */ .review-3d-bottom { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 1; padding-right: 40px; } .review-3d-pill { font-size: 10px; color: rgba(255, 255, 255, 0.78); border-bottom: 2px solid rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.06); padding: 4px 7px; backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); } /* More depth on active slide */ .reviews-3d-swiper .swiper-slide-active .review-3d-card { box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55); filter: saturate(1.05); } /* Optional hover lift (desktop only) */ @media (hover: hover) and (pointer: fine) { .reviews-3d-swiper .swiper-slide-active .review-3d-card:hover { transform: translateY(-6px) translateZ(14px); } } /* ---- MOBILE SWIPE FIX ---- */ /* Allow horizontal swipe while still allowing vertical scroll on the page */ .reviews-3d-swiper { touch-action: pan-y; } /* ---- BLUR FIX (GPU raster blur) ---- */ /* Remove any translateZ that causes blurry text on 3D transforms */ .review-3d-card { transform: none; /* IMPORTANT: remove translateZ(0) */ will-change: transform; backface-visibility: hidden; -webkit-backface-visibility: hidden; transform-style: preserve-3d; } /* Make the active slide crisp (no blur filters at all) */ .reviews-3d-swiper .swiper-slide-active .review-3d-card { filter: none !important; } /* Make text/images crisp under 3D transforms */ .review-3d-card * { backface-visibility: hidden; -webkit-backface-visibility: hidden; } /* OPTIONAL: keep the hover depth only on desktop (no blur on mobile) */ @media (hover: hover) and (pointer: fine) { .reviews-3d-swiper .swiper-slide-active .review-3d-card:hover { transform: translate3d(0, -6px, 0); } } .reviews-3d-wrap { position: relative; z-index: 1; } .review-3d-card { transform: unset !important; } .siteFooter { text-align: center; padding: 30px; } .footer-logo { max-width: 150px; margin: 0 auto; } .footer-logo img { width: 100%; } .footer-bottom { position: relative; display: flex; align-items: center; } .payment-icons-container { flex: 1; display: flex; align-items: center; flex-wrap: wrap; gap: 5px; } .social-media-container { flex: 1; display: flex; justify-content: flex-end; gap: 10px; } .rights-reserve-txt { position: absolute; left: 50%; transform: translateX(-50%); text-align: center; font-size: 14px; color: #666; } .payment-icon { height: 26px; width: 42px; background: white; padding: 3px; border-radius: 3px; border: 1px solid rgba(255, 255, 255, 0.24); display: flex; justify-content: center; align-items: center; } .payment-icon img { width: 100%; height: 100%; object-fit: contain; } .social-media-container { display: flex; gap: 5px; justify-content: flex-end; } .social-media-container a { width: 40px; height: 40px; border-radius: 100%; display: flex; align-items: center; justify-content: center; border-radius: var(--button-radius); backdrop-filter: var(--backdrop-filter); box-shadow: var(--inset-shadow); padding: 10px; transition: 0.3s; } .social-media-container img { width: 100%; height: 100%; object-fit: contain; } .social-media-container a:hover { background: rgba(222, 222, 222, 0.2); transform: scale(1.05); } /* ========================= BOOKING SECTION (Popup-style) ========================= */ .booking { max-width: var(--section-width); padding: 80px 30px 30px 30px; margin: auto; } .booking-grid { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 26px; align-items: stretch; margin-top: 60px; } /* Middle light line */ .booking-divider { width: 0px; border: 1px dashed rgba(255, 255, 255, 0.14); border-radius: 999px; } /* Card (matches your popup vibe) */ .booking-card { height: 100%; border-radius: 12px; padding: 22px; background: radial-gradient(700px 380px at 20% 15%, rgba(201, 174, 122, 0.18), transparent 55%), radial-gradient(700px 380px at 80% 50%, rgba(90, 80, 60, 0.26), transparent 60%), rgba(255, 255, 255, 0.04); backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35); } .booking-card-head { margin-bottom: 14px; } .booking-title { margin: 0; font-size: 20px; font-weight: 700; color: #fff; text-transform: uppercase; } .booking-title span { color: var(--shopilab-gold-light); } .booking-subtitle { margin: 8px 0 0; color: rgba(255, 255, 255, 0.8); font-size: 14px; } /* Form fields */ .booking-form-inner { margin-top: 12px; } .booking-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; } .booking-field-full { grid-column: 1 / -1; } .booking-label { display: block; margin-bottom: 6px; font-size: 13px; color: rgba(255, 255, 255, 0.7); } .req { color: var(--shopilab-gold-light); margin-left: 4px; font-weight: 900; } .booking-input, .booking-textarea, .booking-file { width: 100%; border-radius: 12px !important; padding: 12px 12px !important; background: rgba(255, 255, 255, 0.06) !important; border: 1px solid rgba(255, 255, 255, 0.14) !important; color: #fff !important; outline: none; font-family: 'Poppins'; font-size: 13px; } .booking-textarea { resize: vertical; min-height: 120px; } .booking-input::placeholder, .booking-textarea::placeholder { color: rgba(255, 255, 255, 0.5); } .booking-input:focus, .booking-textarea:focus, .booking-file:focus { border-color: rgba(201, 174, 122, 0.55); box-shadow: 0 0 0 3px rgba(201, 174, 122, 0.15); } /* Fix select text visibility */ .booking-input option { color: #111; } /* Actions */ .booking-actions { margin-top: 14px; display: grid; gap: 10px; } .booking-small { margin: 0; font-size: 13px; color: rgba(255, 255, 255, 0.6); text-align: center; } .booking-link { color: var(--shopilab-gold-light) !important; text-decoration: none; border-bottom: 1px solid rgba(201, 174, 122, 0.35); } .booking-link:hover { border-bottom-color: rgba(201, 174, 122, 0.85); } .booking-note { margin-top: 14px; padding: 12px 12px; border-radius: 12px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.10); color: rgba(255, 255, 255, 0.72); font-size: 13px; text-align: center; } .booking-note-text { margin: 0; font-size: 13px; color: rgba(255, 255, 255, 0.72); text-align: center; padding-top: 20px; } /* Widget placeholder */ .booking-widget-placeholder { border-radius: 16px; padding: 0px; background: var(--body-bg); border: 1px dashed rgba(255, 255, 255, 0.18); min-height: 280px; display: grid; place-items: center; text-align: center; overflow: hidden; } .booking-placeholder-title { margin: 0; font-weight: 900; color: #fff; } .booking-placeholder-text { margin: 8px 0 0; color: rgba(255, 255, 255, 0.65); font-size: 14px; line-height: 1.6; max-width: 420px; } /* ========================= BOOKING POPUP (Bottom Sheet) Matches your contact popup style ========================= */ .booking-overlay { position: fixed; inset: 0; z-index: 2250; background: rgba(0, 0, 0, 0.58); opacity: 0; pointer-events: none; transition: opacity 220ms ease; backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); } .booking-overlay.is-open { opacity: 1; pointer-events: auto; background: rgba(0, 0, 0, 0.45); } .booking-sheet { position: fixed; left: 0; right: 0; bottom: 0; z-index: 2260; max-height: 96vh; height: fit-content; transform: translateY(110%); transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1); background: rgba(20, 22, 26, 0.78); backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); box-shadow: var(--inset-shadow), 0 -30px 80px rgba(0, 0, 0, 0.55); border-top: 1px solid rgba(255, 255, 255, 0.12); display: flex; flex-direction: column; pointer-events: none; max-width: 500px; margin: 0 auto; border-radius: 30px 30px 0 0; } .booking-sheet.is-open { transform: translateY(0); pointer-events: auto; } .booking-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 18px 22px; border-bottom: 1px solid rgba(255, 255, 255, 0.10); } .booking-popup-title { margin: 0; font-size: 18px; font-weight: 700; color: #fff; text-transform: uppercase; } .booking-close { min-width: 42px; height: 42px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.06); color: #fff; cursor: pointer; padding: 0; } button:focus{ background: transparent; border: 1px solid rgba(255, 255, 255, 0.16); } .booking-close:hover { background: rgba(255, 255, 255, 0.10); } .booking-body { padding: 14px 14px 18px; overflow: auto; } /* Nice scrollbar (matches your theme) */ .booking-body { scrollbar-width: thin; scrollbar-color: rgba(174, 144, 96, 0.65) rgba(255, 255, 255, 0.06); } .booking-body::-webkit-scrollbar { width: 10px; } .booking-body::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.06); border-radius: 12px; margin: 6px 0; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 6px 12px rgba(0, 0, 0, 0.25); } .booking-body::-webkit-scrollbar-thumb { border-radius: 12px; background: linear-gradient(180deg, rgba(201, 174, 122, 0.9), rgba(174, 144, 96, 0.9)); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35), inset 0 1px rgba(255, 255, 255, 0.35), inset 0 -1px rgba(0, 0, 0, 0.25); } /* Make Calendly fit better inside the sheet */ .booking-body .calendly-inline-widget { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.04); } .calendly-inline-widget { min-width: 100%; height: 602px; } /* Responsive */ @media (min-width: 769px) { #projectsSwiper .swiper-button-prev, #projectsSwiper .swiper-button-next, #projectsSwiper .swiper-pagination { display: none; } /* important: allow your cards to wrap like before */ #projectsSwiper .swiper-wrapper { flex-wrap: wrap; } /* keep slides from acting like fixed-width slides on desktop */ #projectsSwiper .swiper-slide { width: auto; } #projectsSwiper .swiper-slide { width: calc(50% - 15px) !important; } #projectsSwiper .swiper-wrapper { justify-content: space-between; } } @media (max-width: 1024px) { #contactSheet .form-grid { grid-template-columns: repeat(2, 1fr); } .packages-grid { grid-template-columns: 1fr; } } @media (max-width: 768px) { .desktop-only { display: none; } .mobile-only { display: unset; } .icons-container.desktop-only { display: none; } .icons-container.mobile-only { display: flex; } .icons-container .header-icon { width: 48px; height: 48px; border-radius: 100%; } .logo-and-icons-container { gap: 10px; padding: 10px 15px 10px 10px; } .logo-container { width: 82px; } .bottom-menu__label { display: none; } .bottom-menu__item { gap: 0; } .form-grid { grid-template-columns: 1fr; } #contactSheet .sheet-header { padding: 15px; } #contactSheet .sheet-title-wrap h3 { font-size: 22px; } #contactSheet .sheet-body { padding: 15px 15px 30px 15px; } #contactSheet .field input, #contactSheet .field select, #contactSheet .field textarea { padding: 12px 12px; } .field--full .btn-primary { max-width: 100%; } .hero-container { grid-template-columns: 1fr; gap: 30px; padding: 100px 20px 40px; grid-auto-flow: row; } .hero-media { width: 100%; } .hero-stats { gap: 14px; text-align: center; } .hero-description { margin-top: 10px; font-size: 14px; } .btn, .btn-primary { width: 100%; } .stat-value { font-size: 30px; } .stat-label { font-size: 11px; white-space: nowrap; } #contactSheet.bottom-sheet.contact-sheet { max-width: 95%; max-height: 86vh; height: fit-content; } #contactSheet .form-grid { grid-template-columns: 1fr; gap: 14px 10px; } .services-grid { display: flex; /* Swiper will control layout */ gap: 0; padding: 45px 0px 0px 0px; } .services-controls { display: flex; } .services .swiper-slide { width: auto; } .service-card { margin: 0px; aspect-ratio: var(--card-ratio); padding: 30px 20px; } .services-swiper { padding-top: 30px !important; } .section-heading { font-size: var(--section-heading-size-mobile); } .service-card { margin: 0px; } .services-grid { padding-left: 15px; } .packages .swiper-slide { height: auto; } .package-card { height: auto; margin: 0 10px; } .steps::before { left: 26px; transform: none; } .steps-item { grid-template-columns: 56px 1fr; gap: 12px; } .steps-marker { grid-column: 1 / 2; align-items: flex-start; padding-top: 4px; } .steps-card { grid-column: 2 / 3; } .steps-left .steps-card, .steps-right .steps-card { grid-column: 2 / 3; } .steps-num { width: 42px; height: 42px; font-size: 13px; } .packages-tabs { display: flex; align-items: center; } /* Force wrapper not to translate (prevents swiper transforms hiding active slide) */ #packagesSwiper .swiper-wrapper { transform: none !important; transition: none !important; } /* Hide all slides, show only active one */ #packagesSwiper .swiper-slide { width: 100% !important; display: none !important; } #packagesSwiper .swiper-slide.is-active { display: block !important; } .swiper-wrapper { padding-top: 15px; } .packages-container { padding: 0px 15px; } .package-card { margin: 0px; } .package-card { padding: 20px 15px; } .project-sheet { height: 86vh; max-width: 96vw; } .project-popup-section, .project-popup-section.reverse { grid-template-columns: 1fr; direction: ltr; }
.projects { padding: 50px 0px; } .projects-container { padding: 5px 15px !important; } .single-project { width: 100%; } .project-card { margin-bottom: 0px; } .project-title { font-size: 20px; } .project-type { font-size: 12px; } .project-card { padding-bottom: 20px; } .eye-view-project { width: 40px; height: 40px; } .reviews-3d-wrap { padding: 10px 0; } .reviews-3d-arrow { display: none; } .reviews-3d-subtitle { padding-left: 15px; padding-right: 15px; } .review-3d-rating { right: -11px; top: -22px; font-size: 18px; } .review-3d-name { font-size: 15px; } .review-3d-role { font-size: 12px; } .review-3d-avatar { width: 50px; height: 50px; } .review-3d-top { gap: 5px; } .fiverr-logo { width: 32px; right: 12px; bottom: 12px; } .footer-bottom { flex-direction: column; text-align: center; gap: 10px; } .rights-reserve-txt { position: static; transform: none; } .social-media-container { order: 2; margin-bottom: 5px; } .payment-icons-container { order: 3; } .rights-reserve-txt { order: 1; text-align: center; } .payment-icons-container, .social-media-container { justify-content: center; } .siteFooter { padding: 20px 10px; } .footer-logo { max-width: 100px; } .booking-grid { grid-template-columns: 1fr; gap: 18px; } .booking-divider { display: none; } /* Order: widget first */ .booking-widget { order: 1; } .booking-form { order: 2; } .booking-card { padding: 16px; } .booking-fields { grid-template-columns: 1fr; } .booking { max-width: var(--section-width); padding: 80px 15px 15px 15px; margin: auto; } .booking-grid { margin-top: 40px; } .booking-card { padding: 16px; } .booking-sheet { max-height: 86vh; width: 96vw; height: fit-content; } .booking-header { padding: 16px; } .booking-body { padding: 12px 12px 16px; } select { min-height: 44px !important; } } #ast-scroll-top{ display: none !important; } @media (max-width: 768px) { button.btn-primary.booking-popup-trigger b { color: #C9AE7A; } .sheet-close{ padding: 0 !important; } .btn-primary{ gap:5px; } } .booking-fields input[type="text"], .booking-fields input[type="email"], .booking-fields input[type="tel"], .booking-fields input[type="password"], .booking-fields input[type="url"], .booking-fields input[type="search"], .booking-fields input[type="number"] { color: #fff !important; } .woocommerce form .form-row input.input-text{ background: rgba(255, 255, 255, 0.06) !important; border: 1px solid rgba(255, 255, 255, 0.14) !important; color: #fff !important; border-radius: 12px !important; } .select2-container--default .select2-selection--single { background: rgba(255, 255, 255, 0.06) !important; border: 1px solid rgba(255, 255, 255, 0.14) !important; color: #fff !important; } /* Text inside */ .select2-container--default .select2-selection--single .select2-selection__rendered { color: #fff !important; } /* Arrow */ .select2-container--default .select2-selection--single .select2-selection__arrow b { border-top-color: #fff !important; } /* Dropdown background */ .select2-dropdown { background: #fff !important; } /* Default option text */ .select2-results__option { color: #000 !important; } /* Hover / selected (WordPress blue highlight) */ .select2-results__option--highlighted { color: #fff !important; } textarea#order_comments { border-radius: 12px; padding: 12px 12px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); color: #fff; } h3#order_review_heading { background: radial-gradient(700px 380px at 20% 15%, rgba(201, 174, 122, 0.18), transparent 55%), radial-gradient(700px 380px at 80% 50%, rgba(90, 80, 60, 0.26), transparent 60%), rgba(255, 255, 255, 0.04) !important; backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); border: 1px solid rgba(255, 255, 255, 0.12) !important; box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35); border-bottom: unset !important; border-radius: 12px 12px 0px 0px; } div#order_review { background: radial-gradient(700px 380px at 20% 15%, rgba(201, 174, 122, 0.18), transparent 55%), radial-gradient(700px 380px at 80% 50%, rgba(90, 80, 60, 0.26), transparent 60%), rgba(255, 255, 255, 0.04) !important; backdrop-filter: var(--backdrop-filter); -webkit-backdrop-filter: var(--backdrop-filter); border: 1px solid rgba(255, 255, 255, 0.12) !important; box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35); border-radius: 0px 0px 12px 12px; } .payment_box.payment_method_cod { background: rgba(255, 255, 255, 0.06) !important; border: 1px solid rgba(255, 255, 255, 0.14) !important; color: #fff !important; border-radius: 12px !important; } .woocommerce-page.woocommerce-checkout #payment div.payment_box:before{ border-bottom-color: radial-gradient(700px 380px at 20% 15%, rgba(201, 174, 122, 0.18), transparent 55%), radial-gradient(700px 380px at 80% 50%, rgba(90, 80, 60, 0.26), transparent 60%), rgba(255, 255, 255, 0.04) !important; } .payment_box.payment_method_stripe{ background: rgba(255, 255, 255, 0.06) !important; border: 1px solid rgba(255, 255, 255, 0.14) !important; color: #fff !important; border-radius: 12px !important; } fieldset#wc-stripe-upe-form{ background: rgba(255, 255, 255, 0.06) !important; border: 1px solid rgba(255, 255, 255, 0.14) !important; color: #fff !important; border-radius: 12px !important; } .AccordionItem.p-AccordionItem { background: rgba(255, 255, 255, 0.06) !important; border: 1px solid rgba(255, 255, 255, 0.14) !important; color: #fff !important; border-radius: 12px !important; } .p-AccordionButton.c-AccordionNegateSpacingHorizontal.c-AccordionNegateBorderVertical.p-AccordionButton--alignCenter { border-top: unset !important; } .fieldset{ background: rgba(255, 255, 255, 0.06) !important; border: 1px solid rgba(255, 255, 255, 0.14) !important; color: #fff !important; border-radius: 12px !important; } /* Wrapper (fieldset) */ .woocommerce fieldset { background: rgba(255, 255, 255, 0.06) !important; border: 1px solid rgba(255, 255, 255, 0.14) !important; border-radius: 12px !important; padding: 15px; } /* Text */ .woocommerce fieldset label { color: #fff !important; } /* Checkbox */ .woocommerce fieldset input[type="checkbox"] { accent-color: #fff; /* modern browsers */ } /* Optional: spacing alignment */ .woocommerce fieldset .form-row { display: flex; align-items: center; gap: 10px; } .AccordionItem { background-color: transparent; } .woocommerce-page.woocommerce-checkout form #order_review td{ border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important; } .checkout form #order_review th{ border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important; } th.product-total { border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important; } th.product-name{ border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important; } tr.cart-subtotal th { border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important; } tr.order-total th { border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important; } .woocommerce-privacy-policy-text a { color: #fff !important; text-decoration: underline !important; } #customer_details h3:not(.elementor-widget-woocommerce-checkout-page h3){ border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important; } html, body { overflow-x: hidden !important; } * { background-attachment: scroll !important; } .woocommerce-checkout { transform: none !important; }