/* --- Дизайн Система & Змінні --- */ :root { --bg-main: #0b0f19; /* Шляхетний глибокий темний фон */ --bg-surface: #141b2d; /* Контрастні картки та секції */ --accent-gold: #facc15; /* Золотий бренд-колір для кнопок/акцентів */ --accent-green: #22c55e; /* Приємний зелений для CTA-елементів */ --text-primary: #f8fafc; /* Читабельний білий текст */ --text-muted: #94a3b8; /* М'який сірий текст для описів */ --border-subtle: rgba(255, 255, 255, 0.06); --radius-lg: 16px; --radius-md: 8px; --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1); } /* --- Скидання стилів (Reset) --- */ *, *::before, *::after { box-sizing: border-box; } body { margin: 0; background-color: var(--bg-main); color: var(--text-primary); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; line-height: 1.5; } .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; } h1, h2, h3, p { margin: 0; } /* --- Плейсхолдер для зображень --- */ .raster-placeholder { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); border-radius: var(--radius-lg); border: 2px dashed rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; text-align: center; padding: 24px; } /* --- Фіксований Header --- */ .site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(11, 15, 25, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-subtle); } .header-container { display: flex; align-items: center; justify-content: space-between; height: 72px; } .main-nav { display: flex; gap: 32px; } .nav-link { color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 15px; transition: var(--transition-smooth); } .nav-link:hover { color: var(--text-primary); } .phone-cta { display: inline-flex; align-items: center; gap: 8px; background-color: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: var(--accent-green); padding: 8px 16px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 14px; transition: var(--transition-smooth); } .phone-cta:hover { background-color: var(--accent-green); color: #fff; box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3); } /* --- Блок Hero --- */ .hero-block { padding: 160px 0 80px 0; } .hero-container-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; } .hero-badge { display: inline-block; color: var(--accent-gold); text-transform: uppercase; font-size: 12px; font-weight: 700; letter-spacing: 2px; margin-bottom: 12px; } .hero-main-title { font-size: 48px; font-weight: 800; line-height: 1.15; margin-bottom: 16px; } .hero-desc { color: var(--text-muted); font-size: 18px; margin-bottom: 32px; } .hero-actions { display: flex; gap: 16px; } .action-btn { padding: 14px 28px; border-radius: var(--radius-md); font-weight: 600; text-decoration: none; font-size: 15px; transition: var(--transition-smooth); display: inline-flex; align-items: center; justify-content: center; } .btn-gold { background-color: var(--accent-gold); color: #000; } .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(250, 204, 21, 0.25); } .btn-outline { border: 1px solid rgba(255,255,255,0.2); color: #fff; } .btn-outline:hover { background-color: rgba(255,255,255,0.05); } /* --- Заголовки блоків --- */ .block-title { text-align: center; font-size: 32px; font-weight: 700; margin-bottom: 48px; } .left-title { font-size: 32px; font-weight: 700; margin-bottom: 24px; } /* --- Блок Послуг (Image 6) --- */ .services-block { padding: 80px 0; background-color: var(--bg-surface); } .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; } .service-card { background-color: var(--bg-main); border: 1px solid var(--border-subtle); padding: 32px 24px; border-radius: var(--radius-lg); transition: var(--transition-smooth); } .service-card:hover { transform: translateY(-6px); border-color: rgba(250, 204, 21, 0.3); box-shadow: 0 12px 30px rgba(0,0,0,0.25); } /* ========================= SERVICES SECTION ========================= */ .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-top: 50px; } .service-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; overflow: hidden; transition: 0.35s ease; backdrop-filter: blur(14px); } .service-card:hover { transform: translateY(-8px); border-color: rgba(250,204,21,0.45); box-shadow: 0 20px 45px rgba(0,0,0,0.35); } .service-image { position: relative; height: 240px; overflow: hidden; } .service-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; } .service-card:hover .service-image img { transform: scale(1.08); } .service-content { padding: 26px; } .service-badge { display: inline-block; margin-bottom: 14px; padding: 7px 14px; border-radius: 999px; background: rgba(250,204,21,0.12); color: #facc15; font-size: 12px; font-weight: 700; letter-spacing: 1px; } .service-content h3 { font-size: 24px; margin-bottom: 14px; color: #ffffff; } .service-content p { color: rgba(255,255,255,0.72); line-height: 1.7; font-size: 15px; } /* MOBILE */ @media (max-width: 768px) { .service-image { height: 220px; } .service-content { padding: 22px; } .service-content h3 { font-size: 21px; } } /* ========================================================= SERVICES SECTION PREMIUM UI ========================================================= */ .services-block { position: relative; padding: 110px 0; background: radial-gradient(circle at top left, rgba(250,204,21,0.08), transparent 30%), radial-gradient(circle at bottom right, rgba(59,130,246,0.08), transparent 30%), #070b14; overflow: hidden; } .services-block::before { content: ""; position: absolute; inset: 0; background: linear-gradient( to bottom, rgba(255,255,255,0.02), transparent ); pointer-events: none; } .services-block .block-title { text-align: center; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; color: #ffffff; margin-bottom: 70px; line-height: 1.15; letter-spacing: -1px; } .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 32px; } /* ========================================================= CARD ========================================================= */ .service-card { position: relative; overflow: hidden; border-radius: 28px; background: rgba(15,23,42,0.88); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(12px); transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.35); } .service-card:hover { transform: translateY(-10px); border-color: rgba(250,204,21,0.35); box-shadow: 0 25px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(250,204,21,0.12); } /* GOLD GLOW */ .service-card::after { content: ""; position: absolute; inset: auto -40% -40% auto; width: 220px; height: 220px; background: radial-gradient( circle, rgba(250,204,21,0.18), transparent 70% ); opacity: 0; transition: opacity .45s ease; } .service-card:hover::after { opacity: 1; } /* ========================================================= IMAGE ========================================================= */ .service-image { position: relative; height: 240px; overflow: hidden; } .service-image::before { content: ""; position: absolute; inset: 0; background: linear-gradient( to top, rgba(7,11,20,0.92), rgba(7,11,20,0.15) ); z-index: 2; } .service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease, filter .6s ease; filter: brightness(.88); } .service-card:hover .service-image img { transform: scale(1.08); filter: brightness(1); } /* ========================================================= CONTENT ========================================================= */ .service-content { position: relative; padding: 28px; z-index: 5; } .service-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px; background: rgba(250,204,21,0.12); border: 1px solid rgba(250,204,21,0.25); color: #facc15; font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 18px; } .service-content h3 { color: #ffffff; font-size: 1.7rem; line-height: 1.2; margin-bottom: 16px; font-weight: 800; letter-spacing: -0.5px; } .service-content p { color: rgba(255,255,255,0.72); line-height: 1.75; font-size: 15.5px; } /* ========================================================= PREMIUM HOVER LINE ========================================================= */ .service-card .service-content::before { content: ""; position: absolute; top: 0; left: 28px; width: 55px; height: 4px; border-radius: 20px; background: linear-gradient( 90deg, #facc15, #fde68a ); transition: width .35s ease; } .service-card:hover .service-content::before { width: 100px; } /* ========================================================= RESPONSIVE ========================================================= */ @media (max-width: 768px) { .services-block { padding: 80px 0; } .services-grid { gap: 24px; } .service-image { height: 210px; } .service-content { padding: 24px; } .service-content h3 { font-size: 1.45rem; } } .card-icon-holder { background: rgba(250, 204, 21, 0.1); width: 56px; height: 56px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; } .service-card h3 { font-size: 18px; margin-bottom: 12px; font-weight: 600;} .service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; } /* --- Блок Про Нас & Переваги (Image 7) --- */ .about-block { padding: 90px 0; } .about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; } .about-p { color: var(--text-muted); margin-bottom: 20px; font-size: 16px;} .about-p strong { color: var(--text-primary); } .advantages-box { background-color: var(--bg-surface); padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--border-subtle); } .adv-title { font-size: 22px; margin-bottom: 24px; font-weight: 700; } .adv-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 16px; } .adv-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 15px;} /* --- Блок Табів Маршрутів --- */ .routes-block { padding: 80px 0; background: var(--bg-surface); } .tabs-nav-wrapper { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px; } .tab-trigger { background: rgba(255,255,255,0.04); border: 1px solid var(--border-subtle); color: var(--text-muted); padding: 12px 22px; border-radius: 999px; cursor: pointer; font-weight: 600; transition: var(--transition-smooth); } .tab-trigger.active, .tab-trigger:hover { background: var(--accent-gold); color: #000; border-color: var(--accent-gold); } .tab-pane { display: none; animation: fadeInUp 0.5s ease; } .tab-pane.active { display: block; } .routes-list-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; } .route-item { background: var(--bg-main); border: 1px solid var(--border-subtle); padding: 20px; border-radius: var(--radius-md); display: flex; justify-content: space-between; align-items: center; font-weight: 600; transition: var(--transition-smooth); } .route-item:hover { transform: translateY(-4px); border-color: rgba(250,204,21,0.35); box-shadow: 0 10px 24px rgba(0,0,0,0.2); } .arrow { color: var(--accent-gold); } /* Forms */ .booking-section, .questions-section { padding: 90px 0; } .form-card-container { background: var(--bg-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 48px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); } .alt-bg-form { background: linear-gradient(145deg, #141b2d, #0f172a); } .form-main-heading { text-align: center; font-size: 32px; margin-bottom: 12px; } .form-sub-heading { text-align: center; color: var(--text-muted); margin-bottom: 36px; } .grid-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; } .full-width-field { grid-column: span 2; } .input-holder { display: flex; flex-direction: column; gap: 8px; } .input-holder input, .input-holder textarea { width: 100%; padding: 14px 16px; border-radius: var(--radius-md); border: 1px solid var(--border-subtle); background: rgba(255,255,255,0.03); color: white; font-size: 15px; } .input-holder input:focus, .input-holder textarea:focus { outline: none; border-color: var(--accent-gold); box-shadow: 0 0 0 3px rgba(250,204,21,0.15); } .input-holder.error input, .input-holder.error textarea { border-color: #ef4444; } .err-hint { display: none; color: #ef4444; font-size: 13px; } .input-holder.error .err-hint { display: block; } .submit-btn-cta { width: 100%; padding: 16px; border: none; border-radius: var(--radius-md); background: var(--accent-gold); color: #000; font-size: 16px; font-weight: 700; cursor: pointer; transition: var(--transition-smooth); } .submit-btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(250,204,21,0.25); } .btn-dark-accent { background: var(--accent-green); color: white; } /* Media Section */ .media-preview-block { padding: 90px 0; } .media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; } .iframe-fluid-ratio { position: relative; width: 100%; padding-top: 56.25%; border-radius: var(--radius-lg); overflow: hidden; } .iframe-fluid-ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; } .route-description { margin-top: 20px; color: var(--text-muted); font-size: 15px; line-height: 1.8; max-width: 720px; } .route-benefits-section, .travel-guidelines-section, .contact-cta-section { padding: 90px 0; } .route-benefits-section { background: rgba(255,255,255,0.03); } .benefits-list { list-style: none; padding: 0; margin: 0 auto; max-width: 860px; display: grid; gap: 18px; } .benefits-list li { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 22px 24px; color: var(--text-primary); font-size: 16px; line-height: 1.7; } .travel-guidelines-section .guidelines-grid { display: grid; grid-template-columns: repeat(3, minmax(240px, 1fr)); gap: 24px; } .guideline-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; padding: 32px; box-shadow: 0 24px 60px rgba(0,0,0,0.16); } .guideline-card h3 { font-size: 20px; margin-bottom: 16px; } .guideline-card p { color: var(--text-muted); line-height: 1.75; font-size: 15px; } .contact-cta-section { background: linear-gradient(135deg, rgba(250,204,21,0.12), rgba(34,197,94,0.08)); } .contact-cta-card { background: rgba(7,11,20,0.95); border: 1px solid rgba(255,255,255,0.08); border-radius: 28px; padding: 48px; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.2); } .contact-cta-card h2 { font-size: 34px; margin-bottom: 18px; } .contact-cta-card p { max-width: 760px; margin: 0 auto 28px; color: var(--text-muted); font-size: 18px; line-height: 1.8; } .contact-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; } .contact-actions .action-btn { min-width: 180px; } /* Footer */ .site-footer { padding: 32px 0; border-top: 1px solid var(--border-subtle); text-align: center; color: var(--text-muted); } /* Reveal */ .service-card, .route-item, .advantages-box, .form-card-container { opacity: 0; transform: translateY(30px); } .revealed { opacity: 1; transform: translateY(0); transition: all 0.7s ease; } /* Animation */ @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } /* Responsive */ @media (max-width: 992px) { .hero-container-grid, .about-grid, .media-grid { grid-template-columns: 1fr; } .services-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 768px) { .main-nav { display: none; } .hero-main-title { font-size: 36px; } .hero-actions { flex-direction: column; } .grid-form { grid-template-columns: 1fr; } .full-width-field { grid-column: span 1; } .services-grid { grid-template-columns: 1fr; } .form-card-container { padding: 28px; } .block-title, .left-title, .form-main-heading { font-size: 28px; } } :root { --elite-gradient: linear-gradient(135deg, #facc15 0%, #fde68a 50%, #f59e0b 100%); --glass-bg: rgba(255,255,255,0.06); --shadow-gold: 0 20px 60px rgba(250,204,21,0.18); } body { background: radial-gradient(circle at top right, rgba(250,204,21,0.08), transparent 30%), radial-gradient(circle at bottom left, rgba(34,197,94,0.05), transparent 25%), var(--bg-main); } /* Luxury Header */ .site-header { background: rgba(10,14,25,0.72); backdrop-filter: blur(20px); box-shadow: 0 8px 30px rgba(0,0,0,0.35); } /* Premium Logo */ .logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-size: 26px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: #ffffff; position: relative; transition: all 0.35s ease; font-family: 'Segoe UI', sans-serif; } .logo img { width: 42px; height: 42px; object-fit: contain; filter: drop-shadow(0 0 10px rgba(250,204,21,0.35)) drop-shadow(0 0 20px rgba(250,204,21,0.15)); transition: transform 0.35s ease, filter 0.35s ease; } .logo::after { content: ''; position: absolute; left: 54px; bottom: -4px; width: calc(100% - 54px); height: 2px; background: linear-gradient(90deg, #facc15, transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; } .logo:hover { color: #facc15; text-shadow: 0 0 18px rgba(250,204,21,0.3); } .logo:hover img { transform: scale(1.08) rotate(-3deg); filter: drop-shadow(0 0 14px rgba(250,204,21,0.45)) drop-shadow(0 0 26px rgba(250,204,21,0.25)); } .logo:hover::after { transform: scaleX(1); } /* Hero Image Full HD Fix */ .hero-media-wrap { width: 100%; position: relative; } .raster-placeholder { width: 100%; aspect-ratio: 16 / 10; border-radius: 24px; overflow: hidden; padding: 0; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 25px rgba(250,204,21,0.08); } .raster-placeholder span { display: block; width: 100%; height: 100%; } .raster-placeholder img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; transition: transform 0.6s ease; } /* Premium hover */ .raster-placeholder:hover img { transform: scale(1.04); } /* Optional luxury overlay */ .raster-placeholder::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,15,25,0.22), transparent 35%), linear-gradient(to right, rgba(250,204,21,0.04), transparent); pointer-events: none; } /* Tablet */ @media (max-width: 992px) { .raster-placeholder { aspect-ratio: 16 / 11; } } /* Mobile */ @media (max-width: 768px) { .raster-placeholder { aspect-ratio: 16 / 12; border-radius: 18px; } } /* Mobile */ @media (max-width: 768px) { .logo { font-size: 20px; gap: 8px; letter-spacing: 1px; } .logo img { width: 34px; height: 34px; } .logo::after { left: 44px; width: calc(100% - 44px); } } /* Burger */ .burger-menu { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; } .burger-menu span { width: 28px; height: 3px; background: white; border-radius: 2px; transition: 0.3s; } /* Hero Elite */ .hero-main-title { font-size: 64px; background: var(--elite-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 25px rgba(250,204,21,0.15); } .hero-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(250,204,21,0.06), transparent 60%); pointer-events: none; } .hero-badge { padding: 8px 14px; border: 1px solid rgba(250,204,21,0.3); border-radius: 999px; background: rgba(250,204,21,0.08); } .action-btn { position: relative; } /* ========================= REPLACE ONLY SOCIALS STYLE ========================= */ .sticky-socials { position: fixed; right: 18px; bottom: 18px; display: flex; flex-direction: column; gap: 14px; z-index: 9999; } .social-btn { width: 58px; height: 58px; display: flex; align-items: center; justify-content: center; border-radius: 50%; overflow: hidden; text-decoration: none; position: relative; backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 10px 28px rgba(0,0,0,0.35), 0 0 18px rgba(255,255,255,0.04); transition: all 0.35s ease; } .social-btn img { width: 28px; height: 28px; object-fit: contain; display: block; transition: transform 0.35s ease; } /* Individual brand backgrounds */ .social-btn.telegram { background: linear-gradient(135deg, #229ED9, #1d4ed8); } .social-btn.viber { background: linear-gradient(135deg, #7360F2, #5b21b6); } .social-btn.whatsapp { background: linear-gradient(135deg, #25D366, #15803d); } /* Hover */ .social-btn:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 16px 36px rgba(0,0,0,0.45), 0 0 20px rgba(250,204,21,0.12); } .social-btn:hover img { transform: scale(1.15); } /* Soft pulse ring */ .social-btn::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(255,255,255,0.12); animation: socialPulse 2.6s infinite; } @keyframes socialPulse { 0% { transform: scale(1); opacity: 0.5; } 70% { transform: scale(1.35); opacity: 0; } 100% { opacity: 0; } } /* Mobile */ @media (max-width: 768px) { .sticky-socials { right: 12px; bottom: 12px; gap: 10px; } .social-btn { width: 50px; height: 50px; } .social-btn img { width: 24px; height: 24px; } } /* ========================= PREMIUM FLEET SLIDER ========================= */ .fleet-gallery { padding: 100px 0; background: linear-gradient(180deg, var(--bg-main), #111827); overflow: hidden; } .gallery-slider { position: relative; width: 100%; overflow: hidden; border-radius: 24px; } .gallery-track { display: flex; transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1); will-change: transform; } .gallery-slide { min-width: 100%; position: relative; flex-shrink: 0; border-radius: 24px; overflow: hidden; background: #000; box-shadow: 0 20px 60px rgba(0,0,0,0.35); } .gallery-slide img { width: 100%; height: 460px; object-fit: cover; display: block; transition: transform 0.8s ease; } .gallery-slide:hover img { transform: scale(1.05); } /* Overlay */ .gallery-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient( to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.25) 35%, transparent 65% ); pointer-events: none; } /* Text Caption */ .gallery-caption { position: absolute; left: 40px; bottom: 40px; z-index: 5; max-width: 70%; } .gallery-caption h3 { font-size: 32px; font-weight: 800; color: white; margin-bottom: 10px; } .gallery-caption p { color: rgba(255,255,255,0.85); font-size: 17px; line-height: 1.6; } /* Navigation Buttons */ .slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 58px; height: 58px; border: none; border-radius: 50%; background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); color: white; font-size: 34px; cursor: pointer; z-index: 10; transition: all 0.3s ease; } .slider-btn:hover { background: var(--accent-gold); color: black; transform: translateY(-50%) scale(1.08); } .slider-btn.prev { left: 24px; } .slider-btn.next { right: 24px; } /* Dots */ .gallery-dots { display: flex; justify-content: center; gap: 12px; margin-top: 28px; } .gallery-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.3s ease; } .gallery-dot.active { background: var(--accent-gold); transform: scale(1.3); } /* Responsive */ @media (max-width: 992px) { .gallery-slide img { height: 520px; } .gallery-caption h3 { font-size: 24px; } .gallery-caption p { font-size: 15px; } } @media (max-width: 768px) { .gallery-slide img { height: 380px; } .gallery-caption { left: 20px; bottom: 20px; max-width: 85%; } .gallery-caption h3 { font-size: 20px; } .gallery-caption p { font-size: 14px; } .slider-btn { width: 46px; height: 46px; font-size: 26px; } } /* ========================= MOBILE HEADER + BURGER FIX ADD THIS AT THE VERY END ========================= */ @media (max-width: 768px) { /* Header layout */ .header-container { height: 72px; display: flex; align-items: center; justify-content: space-between; position: relative; } /* Hide desktop nav */ .main-nav { position: absolute; top: 72px; left: 0; width: 100%; flex-direction: column; gap: 0; background: rgba(10,14,25,0.98); backdrop-filter: blur(18px); border-top: 1px solid rgba(255,255,255,0.06); padding: 16px 0; display: none; z-index: 999; } /* Show menu when active */ .main-nav.active { display: flex; } .main-nav .nav-link { padding: 16px 24px; width: 100%; display: block; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.04); } /* Hide phone button on mobile */ .phone-cta { display: none; } /* Burger button visible */ .burger-menu { display: flex; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); z-index: 1001; } /* Burger animation */ .burger-menu.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); } .burger-menu.active span:nth-child(2) { opacity: 0; } .burger-menu.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); } /* Smaller logo */ .logo { font-size: 20px; } .logo img { width: 34px; height: 34px; } } /* ========================= PREMIUM GALLERY DOTS FIX REPLACE OLD .gallery-dots STYLES ========================= */ .gallery-dots { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 34px; padding: 14px 24px; background: rgba(255,255,255,0.03); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.06); border-radius: 999px; width: fit-content; margin-left: auto; margin-right: auto; box-shadow: 0 10px 30px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.04); } /* Individual dots */ .gallery-dot { width: 14px; height: 14px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.45); background: transparent; cursor: pointer; padding: 0; transition: all 0.35s ease; position: relative; } /* Hover */ .gallery-dot:hover { border-color: var(--accent-gold); transform: scale(1.15); box-shadow: 0 0 12px rgba(250,204,21,0.25); } /* Active dot */ .gallery-dot.active { background: var(--accent-gold); border-color: var(--accent-gold); transform: scale(1.35); box-shadow: 0 0 14px rgba(250,204,21,0.55), 0 0 28px rgba(250,204,21,0.25); } /* Animated pulse ring */ .gallery-dot.active::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(250,204,21,0.25); animation: galleryDotPulse 2s infinite; } @keyframes galleryDotPulse { 0% { transform: scale(0.8); opacity: 0.7; } 70% { transform: scale(1.4); opacity: 0; } 100% { opacity: 0; } } /* Mobile */ @media (max-width: 768px) { .gallery-dots { gap: 10px; padding: 10px 18px; margin-top: 22px; } .gallery-dot { width: 11px; height: 11px; } } /* ========================= FAQ SECTION ========================= */ .faq-section { position: relative; padding: 120px 0; background: radial-gradient(circle at top left, rgba(250,204,21,0.08), transparent 30%), linear-gradient(180deg, #020817 0%, #061120 100%); overflow: hidden; } .section-heading { text-align: center; max-width: 760px; margin: 0 auto 70px; } .section-badge { display: inline-flex; align-items: center; justify-content: center; padding: 10px 18px; border-radius: 999px; background: rgba(250,204,21,0.12); border: 1px solid rgba(250,204,21,0.25); color: #facc15; font-size: 13px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 24px; } .faq-subtitle { margin-top: 18px; color: rgba(255,255,255,0.72); font-size: 18px; line-height: 1.7; } .faq-grid { max-width: 950px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; } .faq-item { background: rgba(8,15,30,0.82); border: 1px solid rgba(255,255,255,0.06); border-radius: 24px; overflow: hidden; backdrop-filter: blur(18px); transition: .35s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04); } .faq-item:hover { border-color: rgba(250,204,21,0.22); transform: translateY(-3px); box-shadow: 0 18px 45px rgba(0,0,0,0.45), 0 0 0 1px rgba(250,204,21,0.08); } .faq-question { width: 100%; background: transparent; border: none; outline: none; color: #fff; font-size: 21px; font-weight: 700; padding: 30px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; text-align: left; } .faq-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(250,204,21,0.12); color: #facc15; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 300; transition: .3s ease; flex-shrink: 0; } .faq-item.active .faq-icon { transform: rotate(45deg); background: #facc15; color: #020817; } .faq-answer { max-height: 0; overflow: hidden; transition: max-height .45s ease; } .faq-answer p { padding: 0 30px 30px; color: rgba(255,255,255,0.72); font-size: 17px; line-height: 1.8; } /* MOBILE */ @media (max-width: 768px) { .faq-section { padding: 90px 0; } .faq-question { font-size: 18px; padding: 24px; } .faq-answer p { padding: 0 24px 24px; font-size: 15px; } .faq-subtitle { font-size: 16px; } } body { overflow-x: hidden; }