:root { --dark-bg: #0C0D0E; --light-bg: #F8F9FA; --accent-orange: #F5A623; --text-muted: #8E9194; --white: #FFFFFF; --text-dark: #1C1E21; --transition-smooth: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); } * { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: var(--white); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; } h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; color: var(--text-dark); line-height: 1.2; } h1 { font-size: 3.5rem; text-transform: capitalize; } h2 { font-size: 2.5rem; margin-bottom: 1.2rem; } h3 { font-size: 1.8rem; margin-bottom: 1rem; } .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; } .max-w-800 { max-width: 800px; } .text-center { text-align: center; } .mt-40 { margin-top: 40px; } .mt-60 { margin-top: 60px; } .mt-25 { margin-top: 25px; } .mt-15 { margin-top: 15px; } .w-100 { width: 100%; } .bg-dark { background-color: var(--dark-bg) !important; color: var(--white) !important; } .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white) !important; } .bg-light { background-color: var(--light-bg); } .bg-orange-tint { background-color: rgba(245, 166, 35, 0.05); } .section-padding { padding: 100px 0; } .btn { display: inline-block; padding: 14px 28px; font-weight: 600; font-size: 0.95rem; border-radius: 4px; text-decoration: none; border: none; cursor: pointer; transition: var(--transition-smooth); } .btn-orange { background-color: var(--accent-orange); color: var(--dark-bg); } .btn-orange:hover { background-color: #E0951C; transform: translateY(-2px); } .btn-outline { background-color: transparent; color: var(--white); border: 2px solid var(--white); } .btn-outline:hover { background-color: var(--white); color: var(--dark-bg); transform: translateY(-2px); } .btn-primary { background-color: var(--dark-bg); color: var(--white); } .btn-primary:hover { background-color: var(--accent-orange); color: var(--dark-bg); } .btn-sm { padding: 8px 16px; font-size: 0.85rem; } .navbar { position: sticky; top: 0; left: 0; right: 0; z-index: 1000; background-color: rgba(12, 13, 14, 0.95); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding: 15px 0; } .nav-container { display: flex; align-items: center; justify-content: space-between; } .logo { display: flex; align-items: center; text-decoration: none; font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; color: var(--white); font-weight: bold; letter-spacing: 1px; } .logo svg { margin-right: 10px; } .logo-text { color: var(--white); } .nav-menu { display: flex; gap: 30px; } .nav-link { text-decoration: none; color: var(--white); font-size: 0.95rem; font-weight: 500; opacity: 0.8; transition: var(--transition-smooth); } .nav-link:hover, .nav-link.active { opacity: 1; color: var(--accent-orange); } .burger-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; } .burger-line { display: block; width: 25px; height: 2px; background-color: var(--white); transition: var(--transition-smooth); } .hero-section { height: 100vh; min-height: 650px; display: flex; align-items: center; color: var(--white); padding-top: 80px; } .hero-badge { display: inline-block; color: var(--accent-orange); font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 15px; } .hero-content h1 { font-size: 4rem; margin-bottom: 20px; font-weight: 800; text-transform: capitalize; } .hero-lead { font-size: 1.25rem; color: rgba(255, 255, 255, 0.85); max-width: 650px; margin-bottom: 35px; } .hero-actions { display: flex; gap: 20px; } .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; } .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; } .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; } .align-center { align-items: center; } .section-badge { display: inline-block; color: var(--accent-orange); font-size: 0.8rem; font-weight: bold; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; } .section-subtitle { max-width: 650px; margin: 0 auto; color: var(--text-muted); font-size: 1.1rem; } .intro-text h2 { line-height: 1.2; } .bullet-list { list-style: none; margin: 25px 0; } .bullet-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-weight: 500; } .bullet-list span { color: var(--accent-orange); font-weight: bold; } .btn-text-link { color: var(--text-dark); text-decoration: none; font-weight: bold; font-size: 0.95rem; border-bottom: 2px solid var(--accent-orange); padding-bottom: 2px; transition: var(--transition-smooth); } .btn-text-link:hover { color: var(--accent-orange); } .intro-image-wrapper img { width: 100%; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); filter: grayscale(20%) contrast(105%); } .stats-section { background-color: var(--dark-bg); padding: 50px 0; border-top: 1px solid rgba(255,255,255,0.05); } .stat-card { text-align: center; color: var(--white); } .stat-card h3 { font-size: 3rem; color: var(--accent-orange); margin-bottom: 5px; font-family: 'Plus Jakarta Sans', sans-serif; } .stat-card p { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; } .service-card { background: #181A1C; padding: 40px 30px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.03); transition: var(--transition-smooth); } .service-card:hover { transform: translateY(-5px); border-color: var(--accent-orange); } .card-icon { margin-bottom: 20px; } .link-orange { color: var(--accent-orange); text-decoration: none; font-weight: bold; font-size: 0.9rem; } .process-card { position: relative; padding: 20px; background: var(--white); border-radius: 6px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); } .process-number { font-size: 3.5rem; font-family: 'Playfair Display', Georgia, serif; color: rgba(245, 166, 35, 0.15); font-weight: 900; position: absolute; right: 20px; top: 10px; } .process-card h4 { font-size: 1.25rem; margin-bottom: 15px; margin-top: 40px; } .testimonial-card { background: var(--white); padding: 35px; border-radius: 6px; box-shadow: 0 15px 35px rgba(0,0,0,0.04); border-left: 4px solid var(--accent-orange); } .testimonial-text { font-style: italic; color: #4A4D50; margin-bottom: 25px; font-size: 1rem; } .testimonial-user { display: flex; align-items: justify; gap: 15px; } .testimonial-user img { width: 50px; height: 50px; border-radius: 100%; object-fit: cover; border: 2px solid var(--accent-orange); } .cta-lead-section { color: var(--white); } .phone-link { color: var(--accent-orange); text-decoration: none; font-weight: bold; } .contact-details-box p { margin-bottom: 12px; } .cta-form-container { background: #181A1C; padding: 40px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); } .contact-form h3 { color: var(--white); margin-bottom: 25px; } .form-group { margin-bottom: 20px; display: flex; flex-direction: column; gap: 8px; } .form-group label { font-size: 0.85rem; color: #B0B3B6; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; } .form-group input, .form-group textarea { background: #0C0D0E; border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; padding: 12px; color: var(--white); font-family: inherit; font-size: 0.95rem; } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent-orange); } .checkbox-group { flex-direction: row; align-items: flex-start; gap: 10px; margin-top: 15px; } .checkbox-group label { text-transform: none; color: #ccc; font-weight: normal; font-size: 0.85rem; line-height: 1.4; } .checkbox-group a { color: var(--accent-orange); text-decoration: underline; } .form-error-msg { display: none; color: #ff4d4d; font-size: 0.85rem; margin-bottom: 15px; } .faq-item { border-bottom: 1px solid rgba(0, 0, 0, 0.08); padding: 15px 0; } .faq-question { width: 100%; background: none; border: none; text-align: left; font-size: 1.15rem; font-family: 'Playfair Display', Georgia, serif; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text-dark); padding: 10px 0; } .faq-answer { display: none; padding-bottom: 15px; color: #555; font-size: 0.95rem; } .faq-answer.show { display: block; } .main-footer { background-color: var(--dark-bg); color: var(--white); padding: 80px 0 40px 0; border-top: 2px solid var(--accent-orange); font-size: 0.9rem; } .footer-top { display: grid; grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr; gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 50px; } .footer-brand-column p { color: var(--text-muted); line-height: 1.7; } .footer-links-column h4, .footer-contacts-column h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; } .footer-links-list { list-style: none; } .footer-links-list li { margin-bottom: 10px; } .footer-links-list a { color: var(--text-muted); text-decoration: none; transition: var(--transition-smooth); } .footer-links-list a:hover { color: var(--accent-orange); padding-left: 3px; } .footer-contacts-column { color: var(--text-muted); } .footer-contacts-column p { margin-bottom: 10px; } .footer-bottom { text-align: center; padding-top: 35px; color: var(--text-muted); font-size: 0.8rem; } .inner-hero { padding: 100px 0; color: var(--white); } .inner-hero h1 { font-size: 3.5rem; margin-bottom: 15px; } .lead-text { font-size: 1.2rem; color: rgba(255,255,255,0.8); } .story-image-space img, .service-image-box img { width: 100%; border-radius: 8px; filter: grayscale(20%); } .story-details h2 { margin-top: 10px; } .story-details p { margin-bottom: 15px; color: #4A4D50; } .focus-points { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; } .focus-point h5 { font-size: 1.1rem; margin-bottom: 5px; color: var(--text-dark); } .focus-point p { font-size: 0.9rem; color: var(--text-muted); } .mission-card { background: #131416; padding: 35px; border-radius: 6px; } .mission-card h4 { color: var(--white); margin-bottom: 15px; font-size: 1.25rem; } .mission-card p { color: var(--text-muted); font-size: 0.95rem; } .service-image-box img { box-shadow: 0 15px 35px rgba(0,0,0,0.08); } .service-text ul { list-style: none; margin-top: 20px; } .service-text ul li { position: relative; padding-left: 20px; margin-bottom: 10px; font-size: 0.95rem; } .service-text ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-orange); font-weight: bold; } .reverse-row { direction: rtl; } .reverse-row .service-text { direction: ltr; } .reverse-row .service-image-box { direction: ltr; } .price-card { background: var(--white); border-radius: 8px; padding: 40px 30px; border: 1px solid rgba(0,0,0,0.08); text-align: center; position: relative; } .price-card.featured-price { border: 2px solid var(--accent-orange); scale: 1.05; background: #0C0D0E; color: var(--white); } .price-card.featured-price h4, .price-card.featured-price p, .price-card.featured-price li { color: var(--white); } .pricing-badge { background-color: var(--accent-orange); color: var(--dark-bg); font-weight: bold; font-size: 0.75rem; padding: 4px 12px; border-radius: 12px; width: fit-content; margin: 0 auto; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); } .price-number { font-size: 2.8rem; font-weight: bold; color: var(--accent-orange); margin: 15px 0; font-family: 'Plus Jakarta Sans', sans-serif; } .price-number span { font-size: 1rem; color: var(--text-muted); } .price-header p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 25px; } .price-features { list-style: none; margin: 30px 0; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 20px; text-align: left; } .price-features li { margin-bottom: 12px; font-size: 0.9rem; position: relative; padding-left: 15px; } .price-features li::before { content: '•'; color: var(--accent-orange); font-size: 1.2rem; position: absolute; left: 0; top: -3px; } .blog-card { background: var(--white); border-radius: 6px; overflow: hidden; box-shadow: 0 10px 25px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.05); } .blog-img-wrapper img { width: 100%; height: 220px; object-fit: cover; } .blog-body { padding: 30px; } .blog-tag { display: inline-block; background-color: rgba(245, 166, 35, 0.1); color: var(--accent-orange); font-size: 0.75rem; font-weight: bold; padding: 4px 10px; border-radius: 3px; margin-bottom: 15px; text-transform: uppercase; } .blog-body h4 { font-size: 1.3rem; margin-bottom: 12px; line-height: 1.3; } .blog-summary { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; } .back-link { margin-bottom: 30px; } .back-link a { text-decoration: none; color: var(--text-muted); font-weight: bold; font-size: 0.9rem; } .back-link a:hover { color: var(--accent-orange); } .article-title { font-size: 3rem; margin-bottom: 15px; } .article-meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 30px; } .article-featured-image-wrapper img { width: 100%; max-height: 450px; object-fit: cover; border-radius: 8px; margin-bottom: 40px; } .article-body-content p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 25px; color: #333; } .article-body-content h3 { font-size: 1.7rem; margin-top: 35px; } .article-body-content blockquote { border-left: 4px solid var(--accent-orange); padding-left: 20px; font-style: italic; font-size: 1.25rem; font-family: 'Playfair Display', Georgia, serif; margin: 30px 0; color: #111; } .legal-page h1 { font-size: 3rem; margin-bottom: 10px; } .last-updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 40px; } .legal-page h3 { font-size: 1.4rem; margin-top: 30px; } .legal-page p, .legal-page li { font-size: 1rem; color: #444; line-height: 1.7; margin-bottom: 15px; } .legal-page table { width: 100%; border-collapse: collapse; margin: 30px 0; } .legal-page th, .legal-page td { border: 1px solid rgba(0,0,0,0.1); padding: 12px 15px; text-align: left; font-size: 0.9rem; } .legal-page th { background-color: var(--light-bg); font-weight: bold; } .nap-block { border-left: 3px solid var(--accent-orange); padding-left: 20px; margin-top: 30px; } .nap-item { display: flex; gap: 15px; margin-bottom: 12px; } .nap-label { font-weight: bold; min-width: 140px; } .map-wrapper { border-radius: 8px; overflow: hidden; } .cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #131416; color: var(--white); border-top: 2px solid var(--accent-orange); z-index: 9999; padding: 25px 0; display: none; } .cookie-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; gap: 15px; } .cookie-container h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 0; font-family: 'Plus Jakarta Sans', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; } .cookie-container p { font-size: 0.85rem; color: #ccc; } .cookie-container a { color: var(--accent-orange); } .cookie-options { display: flex; gap: 20px; margin: 5px 0; font-size: 0.85rem; } .cookie-options label { cursor: pointer; display: flex; align-items: center; gap: 5px; } .cookie-buttons { display: flex; gap: 15px; justify-content: flex-end; } .hamburger-active .nav-menu { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background-color: #0C0D0E; padding: 30px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } .hamburger-active .nav-cta { display: block !important; margin-top: 20px; text-align: center; } @media (max-width: 991px) { .grid-4 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } .grid-2 { grid-template-columns: 1fr; gap: 40px; } .reverse-row { direction: ltr; } .footer-top { grid-template-columns: 1fr 1fr; } .price-card.featured-price { scale: 1; } .hero-content h1 { font-size: 3rem; } } @media (max-width: 768px) { .nav-menu { display: none; } .burger-btn { display: flex; } .nav-cta { display: none; } .grid-3, .grid-4 { grid-template-columns: 1fr; } .footer-top { grid-template-columns: 1fr; } .hero-content h1 { font-size: 2.5rem; } .hero-actions { flex-direction: column; } .section-padding { padding: 60px 0; } }