* { box-sizing: border-box; margin: 0; padding: 0; } body { font-family: 'Plus Jakarta Sans', sans-serif; background-color: #f7fafc; color: #1a202c; line-height: 1.6; } h1, h2, h3 { font-family: 'Cinzel', serif; color: #0d1e1e; font-weight: 700; } a { text-decoration: none; color: inherit; transition: color 0.3s ease, border-color 0.3s ease; } .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; } .small-container { max-width: 800px; } .section { padding: 80px 0; } .bg-light { background-color: #e6f2f2; } .badge { display: inline-block; padding: 6px 14px; background-color: #d1ebeb; color: #008080; border-radius: 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; border: 1px solid #a3d9d9; } .navbar-sticky { background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(0, 128, 128, 0.1); transition: transform 0.3s ease; } .nav-container { display: flex; align-items: center; justify-content: space-between; height: 80px; } .logo { display: flex; align-items: center; gap: 10px; font-family: 'Cinzel', serif; font-size: 22px; font-weight: 700; color: #008080; } .logo-icon { flex-shrink: 0; } .nav-menu { display: flex; align-items: center; gap: 32px; } .nav-item { font-size: 14px; font-weight: 600; color: #4a5568; position: relative; padding: 8px 0; } .nav-item:hover, .nav-item.active { color: #008080; } .nav-item::after { content: ''; display: block; width: 0; height: 2px; background: #008080; transition: width 0.3s; position: absolute; bottom: 0; left: 0; } .nav-item:hover::after, .nav-item.active::after { width: 100%; } .cta-btn { display: inline-block; padding: 14px 28px; background-color: #008080; color: #ffffff !important; border-radius: 30px; font-size: 14px; font-weight: 700; text-align: center; border: 2px solid #008080; cursor: pointer; transition: background 0.3s, border-color 0.3s, transform 0.3s; } .cta-btn:hover { background-color: #006666; border-color: #006666; transform: translateY(-2px); } .btn-sec { display: inline-block; padding: 14px 28px; border: 2px solid #a3d9d9; background: transparent; border-radius: 30px; font-weight: 700; font-size: 14px; color: #008080; transition: all 0.3s ease; } .btn-sec:hover { background-color: #008080; color: #ffffff; border-color: #008080; } .white-btn { background-color: #ffffff; color: #008080 !important; border-color: #ffffff; } .white-btn:hover { background-color: #f7fafc; border-color: #f7fafc; } .burger-btn { display: none; background: none; border: none; flex-direction: column; gap: 6px; cursor: pointer; } .burger-line { width: 25px; height: 3px; background-color: #008080; transition: 0.3s; } .hero { min-height: calc(100vh - 80px); display: flex; align-items: center; position: relative; background: radial-gradient(circle at top right, rgba(0, 128, 128, 0.15) 0%, rgba(255, 255, 255, 1) 70%); border-bottom: 1px solid rgba(0, 128, 128, 0.08); padding: 50px 0; } .hero-wrapper { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; } .hero-content h1 { font-size: 56px; line-height: 1.15; margin-bottom: 24px; } .hero-content p { font-size: 18px; color: #4a5568; margin-bottom: 32px; } .hero-ctas { display: flex; gap: 16px; margin-bottom: 40px; } .hero-features { display: flex; flex-direction: column; gap: 12px; } .hero-feat-item { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: #2d3748; } .check-icon { color: #008080; font-weight: 800; font-size: 16px; } .hero-media { position: relative; width: 100%; height: 500px; } .hero-main-img-wrap { width: 85%; height: 85%; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 4px solid #ffffff; } .hero-img { width: 100%; height: 100%; object-fit: cover; } .hero-sub-img-wrap { width: 45%; height: 45%; border-radius: 16px; overflow: hidden; position: absolute; bottom: 0; right: 0; box-shadow: 0 15px 30px rgba(0,0,0,0.15); border: 4px solid #ffffff; } .hero-sub-img { width: 100%; height: 100%; object-fit: cover; } .center-header { text-align: center; margin-bottom: 50px; max-width: 600px; margin-left: auto; margin-right: auto; } .center-header h2 { font-size: 38px; margin-bottom: 16px; } .center-header p { font-size: 16px; color: #4a5568; } .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; } .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; } .valign-center { align-items: center; } .card { background-color: #ffffff; border-radius: 20px; padding: 40px; box-shadow: 0 4px 6px rgba(0,0,0,0.02); border: 1px solid rgba(0, 128, 128, 0.08); transition: transform 0.3s, box-shadow 0.3s; } .card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,128,128,0.08); } .card-icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; background-color: #e6f2f2; color: #008080; border-radius: 16px; font-weight: 700; font-size: 18px; margin-bottom: 24px; } .card h3 { font-size: 22px; margin-bottom: 16px; } .card p { font-size: 14px; color: #4a5568; margin-bottom: 24px; } .learn-more { font-weight: 700; font-size: 14px; color: #008080; display: inline-block; } .learn-more:hover { color: #004d4d; } .rounded-img { width: 100%; height: auto; border-radius: 24px; object-fit: cover; } .shadow-lg { box-shadow: 0 20px 40px rgba(0,0,0,0.1); } .milestones-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; } .milestone-card { background: #e6f2f2; border-radius: 16px; padding: 20px; text-align: center; border: 1px solid #a3d9d9; } .milestone-card h3 { font-size: 28px; color: #008080; margin-bottom: 6px; } .milestone-card p { font-size: 12px; color: #4a5568; font-weight: 600; text-transform: uppercase; } .testimonials .test-card { background: #ffffff; border-radius: 20px; padding: 30px; border-bottom: 4px solid #008080; box-shadow: 0 4px 6px rgba(0,0,0,0.02); } .test-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; } .test-icon { font-size: 24px; background: #e6f2f2; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; } .test-header h4 { font-size: 16px; font-weight: 700; color: #0d1e1e; } .sub-tag { font-size: 11px; text-transform: uppercase; color: #008080; font-weight: 700; } .test-card p { font-size: 14px; color: #4a5568; font-style: italic; } .cta-section { background-color: #008080; color: #ffffff; padding: 100px 0; text-align: center; position: relative; overflow: hidden; background: radial-gradient(circle at bottom left, #004d4d, #008080); } .cta-banner { max-width: 700px; margin: 0 auto; z-index: 2; position: relative; } .cta-icon { font-size: 48px; margin-bottom: 24px; color: #ffffff; } .cta-banner h2 { font-family: 'Cinzel', serif; color: #ffffff; font-size: 42px; margin-bottom: 20px; } .cta-banner p { font-size: 18px; line-height: 1.6; margin-bottom: 40px; color: #d1ebeb; } .faq-block { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; } .faq-item { background: #ffffff; border-radius: 14px; border: 1px solid rgba(0, 128, 128, 0.1); overflow: hidden; transition: box-shadow 0.3s; } .faq-item:hover { box-shadow: 0 5px 15px rgba(0,128,128,0.05); } .faq-trigger { padding: 24px; cursor: pointer; user-select: none; } .faq-trigger h4 { font-size: 16px; display: flex; justify-content: space-between; align-items: center; font-weight: 600; color: #0d1e1e; } .faq-arrow { font-size: 12px; transition: transform 0.3s; } .faq-content { max-height: 0; overflow: hidden; padding: 0 24px; transition: max-height 0.3s ease, padding 0.3s ease; font-size: 14px; color: #4a5568; line-height: 1.7; } .faq-item.active .faq-content { max-height: 200px; padding-bottom: 24px; } .faq-item.active .faq-arrow { transform: rotate(180deg); } .lead-form { display: flex; flex-direction: column; gap: 20px; background: #ffffff; padding: 40px; border-radius: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.05); border: 1px solid rgba(0, 128, 128, 0.08); } .form-group { display: flex; flex-direction: column; gap: 8px; } .form-group label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #4a5568; } .form-group input, .form-group textarea { width: 100%; padding: 14px 18px; border-radius: 10px; border: 1px solid #cbd5e1; font-family: inherit; font-size: 14px; color: #1a202c; transition: border-color 0.3s; } .form-group input:focus, .form-group textarea:focus { outline: none; border-color: #008080; } .form-group textarea { height: 120px; resize: none; } .form-group-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: #4a5568; } .form-group-checkbox input { margin-top: 3px; accent-color: #008080; } .form-group-checkbox a { color: #008080; font-weight: 600; text-decoration: underline; } .full-btn { width: 100%; } .team-card { background: #ffffff; border-radius: 20px; padding: 30px; text-align: center; border: 1px solid rgba(0, 128, 128, 0.08); } .team-avatar { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; border: 3px solid #e6f2f2; } .team-card h4 { font-size: 18px; margin-bottom: 4px; } .team-role { font-size: 12px; font-weight: 700; color: #008080; text-transform: uppercase; letter-spacing: 1px; } .inner-hero { background: linear-gradient(135deg, #0d1e1e 0%, #004d4d 100%); color: #ffffff; padding: 100px 0; text-align: center; } .inner-hero h1 { color: #ffffff; font-size: 46px; margin-bottom: 16px; margin-top: 10px; } .inner-hero p { color: #d1ebeb; font-size: 18px; max-width: 700px; margin: 0 auto; } .details-list { display: flex; flex-direction: column; gap: 24px; margin-top: 30px; } .detail-item strong { display: block; font-size: 12px; text-transform: uppercase; color: #008080; letter-spacing: 0.5px; margin-bottom: 4px; } .detail-item p { font-size: 16px; color: #4a5568; } .accent-lnk { color: #008080; font-weight: 700; } .card-bg { background-color: #ffffff; border-radius: 24px; padding: 30px; border: 1px solid rgba(0, 128, 128, 0.08); } .map-wrapper { border-radius: 16px; overflow: hidden; margin-top: 30px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); } .blog-card { background: #ffffff; border-radius: 20px; overflow: hidden; border: 1px solid rgba(0, 128, 128, 0.08); transition: transform 0.3s; } .blog-card:hover { transform: translateY(-5px); } .blog-img-wrap { width: 100%; height: 200px; overflow: hidden; } .blog-img { width: 100%; height: 100%; object-fit: cover; } .blog-body { padding: 30px; } .blog-date { font-size: 12px; color: #008080; font-weight: 700; margin-bottom: 12px; display: block; } .blog-card h3 { font-size: 20px; margin-bottom: 12px; line-height: 1.3; } .blog-card p { font-size: 14px; color: #4a5568; margin-bottom: 20px; } .article-image-block { border-radius: 24px; overflow: hidden; margin-bottom: 40px; box-shadow: 0 15px 30px rgba(0,0,0,0.05); } .article-image-block img { width: 100%; max-height: 450px; object-fit: cover; } .article-content { font-size: 16px; color: #2d3748; line-height: 1.8; } .article-content p { margin-bottom: 24px; } .article-content h3 { font-size: 24px; margin-top: 40px; margin-bottom: 16px; } .article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 24px; } .article-content li { margin-bottom: 10px; } .article-content blockquote { border-left: 4px solid #008080; padding-left: 20px; font-style: italic; font-size: 18px; margin: 30px 0; color: #0d1e1e; font-weight: 500; } .article-cta { margin-top: 60px; background: #e6f2f2; padding: 40px; border-radius: 20px; text-align: center; border: 1px solid #a3d9d9; } .article-cta p { margin-bottom: 20px; font-weight: 600; font-size: 18px; } .legal-text-wrap { font-size: 14.5px; color: #2d3748; line-height: 1.75; } .legal-text-wrap h3 { font-size: 20px; margin-top: 35px; margin-bottom: 14px; } .legal-text-wrap p { margin-bottom: 16px; } .legal-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 13.5px; } .legal-table th, .legal-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #cbd5e1; } .legal-table th { background-color: #e6f2f2; color: #008080; font-weight: 700; text-transform: uppercase; font-size: 11px; letter-spacing: 0.5px; } .rev-date { margin-top: 40px; font-size: 11px; text-transform: uppercase; color: #718096; font-weight: 600; } footer { background-color: #0d1e1e; color: #d1ebeb; padding: 80px 0 40px; border-top: 4px solid #008080; } .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; } .footer-brand p { font-size: 13px; margin-top: 16px; margin-bottom: 20px; color: #a3bfbf; } .footer-info p { font-size: 13px; margin-bottom: 8px; } .footer-logo span { color: #ffffff; } .footer-links { display: flex; flex-direction: column; gap: 12px; } .footer-links h4, .footer-address h4 { color: #ffffff; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; font-weight: 700; } .footer-links a { font-size: 13px; color: #a3bfbf; } .footer-links a:hover { color: #ffffff; } .footer-address p { font-size: 13px; color: #a3bfbf; line-height: 1.6; margin-bottom: 12px; } .bus-id { font-size: 11px !important; color: #008080 !important; } .footer-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 40px; font-size: 13px; color: #a3bfbf; } .footer-legal-links { display: flex; gap: 20px; align-items: center; } .footer-legal-links a { color: #a3bfbf; } .footer-legal-links a:hover { color: #ffffff; } .btn-cookie-link { background: none; border: none; font-size: 13px; color: #a3bfbf; cursor: pointer; transition: color 0.3s; } .btn-cookie-link:hover { color: #ffffff; text-decoration: underline; } .cookie-toast { position: fixed; bottom: 24px; left: 24px; right: 24px; background: #ffffff; color: #1a202c; padding: 24px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); border: 2px solid #008080; z-index: 10001; transition: transform 0.4s ease, opacity 0.4s ease; display: none; } .cookie-banner-wrapper { display: flex; flex-direction: column; gap: 16px; max-width: 1200px; margin: 0 auto; } .cookie-banner-text h4 { font-family: 'Cinzel', serif; font-size: 18px; margin-bottom: 6px; color: #0d1e1e; } .cookie-banner-text p { font-size: 13px; color: #4a5568; line-height: 1.5; } .cookie-categories { display: flex; flex-wrap: wrap; gap: 16px; background: #f1f5f9; padding: 16px; border-radius: 10px; } .cookie-cat-item label { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: #2d3748; cursor: pointer; } .cookie-cat-item input[type="checkbox"] { accent-color: #008080; } .cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; } .cookie-btn { padding: 10px 20px; border-radius: 20px; font-size: 12px; font-weight: 700; cursor: pointer; transition: 0.2s; border: 1.5px solid #008080; background: #008080; color: #ffffff; } .cookie-btn:hover { background: #006666; border-color: #006666; } .cookie-btn.btn-outline { background: transparent; color: #008080; } .cookie-btn.btn-outline:hover { background: #e6f2f2; } .cookie-btn.btn-text { background: transparent; border-color: transparent; color: #4a5568; text-decoration: underline; } .cookie-btn.btn-text:hover { color: #008080; } .hidden { display: none !important; } @media (max-width: 991px) { .hero-wrapper { grid-template-columns: 1fr; text-align: center; gap: 40px; } .hero-content h1 { font-size: 42px; } .hero-ctas { justify-content: center; } .hero-features { align-items: center; } .hero-media { height: 380px; } .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: 1fr; gap: 45px; } .footer-grid { grid-template-columns: repeat(2, 1fr); } .footer-bottom { flex-direction: column; gap: 20px; text-align: center; } } @media (max-width: 768px) { .burger-btn { display: flex; } .nav-menu { display: none; width: 100%; position: absolute; top: 80px; left: 0; background: #ffffff; flex-direction: column; padding: 30px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); gap: 20px; border-top: 1px solid rgba(0, 128, 128, 0.08); } .nav-menu.active { display: flex; } .grid-3 { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } .inner-hero h1 { font-size: 32px; } }