/* ===== COLOR VARIABLES ===== */
:root {
--dark-teal: #11464E;
--dark-teal-2: #04414B;
--tangerine: #EE8C59;
--ash-grey: #BBC8C9;
--jet-black: #052932;
--dark-teal-rgb: 17, 70, 78;
--tangerine-rgb: 238, 140, 89;
--ash-grey-rgb: 187, 200, 201;
--jet-black-rgb: 5, 41, 50;
}

/* ===== RESET & BASE ===== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Inter', sans-serif;
color: var(--jet-black);
background: #fafafa;
overflow-x: hidden;
scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Inter', sans-serif;
font-weight: 700;
}

.display-heading {
font-family: 'Playfair Display', serif;
font-weight: 700;
font-style: italic;
}

a {
text-decoration: none;
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
background: var(--tangerine);
color: #fff;
padding: 12px 36px;
border-radius: 50px;
font-weight: 600;
font-size: 1.05rem;
border: none;
transition: all 0.3s ease;
box-shadow: 0 8px 24px rgba(238, 140, 89, 0.35);
}
.btn-primary-custom:hover {
background: #d97a4a;
color: #fff;
transform: translateY(-3px);
box-shadow: 0 12px 32px rgba(238, 140, 89, 0.45);
}

.btn-outline-custom {
background: transparent;
color: var(--dark-teal);
padding: 12px 36px;
border-radius: 50px;
font-weight: 600;
font-size: 1.05rem;
border: 2px solid var(--dark-teal);
transition: all 0.3s ease;
}
.btn-outline-custom:hover {
background: var(--dark-teal);
color: #fff;
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(17, 70, 78, 0.25);
}

.btn-dark-custom {
background: var(--jet-black);
color: #fff;
padding: 12px 36px;
border-radius: 50px;
font-weight: 600;
font-size: 1.05rem;
border: none;
transition: all 0.3s ease;
}
.btn-dark-custom:hover {
background: #0a3d4a;
color: #fff;
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(5, 41, 50, 0.35);
}

/* ===== NAVBAR ===== */
.navbar {
background: rgba(5, 41, 50, 0.92);
backdrop-filter: blur(12px);
padding: 16px 0;
transition: all 0.3s ease;
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.navbar-brand {
font-family: 'Playfair Display', serif;
font-weight: 700;
font-style: italic;
font-size: 1.6rem;
color: #fff !important;
letter-spacing: -0.5px;
}
.navbar-brand span {
color: var(--tangerine);
}
.navbar .nav-link {
color: rgba(255, 255, 255, 0.8) !important;
font-weight: 500;
font-size: 0.95rem;
padding: 8px 18px !important;
border-radius: 50px;
transition: all 0.3s ease;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
color: #fff !important;
background: rgba(238, 140, 89, 0.2);
}
.navbar .nav-link.cta-nav {
background: var(--tangerine);
color: #fff !important;
padding: 8px 24px !important;
}
.navbar .nav-link.cta-nav:hover {
background: #d97a4a;
transform: scale(1.04);
}
.navbar-toggler {
border: none;
padding: 6px 10px;
}
.navbar-toggler:focus {
box-shadow: none;
}
.navbar-toggler-icon {
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== HERO ===== */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
background: linear-gradient(135deg, var(--jet-black) 0%, var(--dark-teal) 50%, var(--dark-teal-2) 100%);
overflow: hidden;
padding: 120px 0 80px;
}
.hero::before {
content: '';
position: absolute;
top: -40%;
right: -20%;
width: 70%;
height: 140%;
background: radial-gradient(ellipse, rgba(238, 140, 89, 0.12) 0%, transparent 70%);
pointer-events: none;
}
.hero::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 120px;
background: linear-gradient(to top, #fafafa, transparent);
pointer-events: none;
}
.hero .hero-badge {
display: inline-block;
background: rgba(238, 140, 89, 0.18);
color: var(--tangerine);
padding: 6px 20px;
border-radius: 50px;
font-size: 0.85rem;
font-weight: 600;
letter-spacing: 0.5px;
border: 1px solid rgba(238, 140, 89, 0.2);
margin-bottom: 20px;
}
.hero h1 {
font-size: 3.6rem;
line-height: 1.08;
color: #fff;
margin-bottom: 20px;
}
.hero h1 .highlight {
color: var(--tangerine);
font-family: 'Playfair Display', serif;
font-style: italic;
}
.hero p.lead {
color: rgba(255, 255, 255, 0.75);
font-size: 1.2rem;
max-width: 520px;
line-height: 1.7;
}
.hero .hero-stats {
display: flex;
gap: 40px;
margin-top: 32px;
}
.hero .hero-stats .stat h4 {
color: #fff;
font-size: 1.8rem;
font-weight: 800;
margin-bottom: 0;
}
.hero .hero-stats .stat span {
color: rgba(255, 255, 255, 0.5);
font-size: 0.85rem;
font-weight: 400;
}
.hero .hero-image-wrapper {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.hero .hero-image-wrapper .image-placeholder {
width: 100%;
max-width: 480px;
aspect-ratio: 1/1;
border-radius: 30px;
background: linear-gradient(145deg, rgba(17, 70, 78, 0.5), rgba(238, 140, 89, 0.15));
border: 1px solid rgba(255, 255, 255, 0.08);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
color: rgba(255, 255, 255, 0.3);
backdrop-filter: blur(4px);
position: relative;
overflow: hidden;
}
.hero .hero-image-wrapper .image-placeholder i {
font-size: 5rem;
color: rgba(238, 140, 89, 0.3);
}
.hero .hero-image-wrapper .floating-card {
position: absolute;
background: rgba(255, 255, 255, 0.06);
backdrop-filter: blur(12px);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 16px;
padding: 14px 22px;
display: flex;
align-items: center;
gap: 12px;
color: #fff;
font-size: 0.9rem;
animation: float 4s ease-in-out infinite;
}
.hero .hero-image-wrapper .floating-card:nth-child(2) {
top: 10%;
left: -10%;
animation-delay: 0.5s;
}
.hero .hero-image-wrapper .floating-card:nth-child(3) {
bottom: 12%;
right: -8%;
animation-delay: 1s;
}
.hero .hero-image-wrapper .floating-card i {
font-size: 1.6rem;
color: var(--tangerine);
}

@keyframes float {
0%,
100% {
transform: translateY(0px);
}
50% {
transform: translateY(-12px);
}
}

/* ===== SECTION TITLES ===== */
.section-title {
font-size: 2.6rem;
font-weight: 700;
margin-bottom: 12px;
color: var(--jet-black);
}
.section-title .highlight {
color: var(--tangerine);
font-family: 'Playfair Display', serif;
font-style: italic;
}
.section-subtitle {
color: #6b7a7e;
font-size: 1.1rem;
max-width: 560px;
margin: 0 auto 48px;
line-height: 1.7;
}

/* ===== FEATURES ===== */
.features-section {
padding: 100px 0 80px;
background: #fff;
}
.feature-card {
background: #fff;
padding: 40px 28px;
border-radius: 24px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
border: 1px solid rgba(187, 200, 201, 0.25);
transition: all 0.4s ease;
height: 100%;
text-align: center;
}
.feature-card:hover {
transform: translateY(-8px);
box-shadow: 0 16px 48px rgba(17, 70, 78, 0.08);
border-color: var(--tangerine);
}
.feature-card .icon-wrapper {
width: 72px;
height: 72px;
border-radius: 20px;
background: rgba(238, 140, 89, 0.10);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
font-size: 2rem;
color: var(--tangerine);
transition: all 0.3s ease;
}
.feature-card:hover .icon-wrapper {
background: var(--tangerine);
color: #fff;
transform: scale(1.05);
}
.feature-card h5 {
font-weight: 700;
font-size: 1.2rem;
color: var(--jet-black);
margin-bottom: 10px;
}
.feature-card p {
color: #6b7a7e;
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: 0;
}

/* ===== HOW IT WORKS ===== */
.how-section {
padding: 100px 0 80px;
background: #f7f9f9;
}
.step-card {
text-align: center;
padding: 20px;
}
.step-card .step-number {
width: 64px;
height: 64px;
border-radius: 50%;
background: var(--dark-teal);
color: #fff;
font-size: 1.6rem;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
transition: all 0.3s ease;
box-shadow: 0 8px 24px rgba(17, 70, 78, 0.20);
}
.step-card:hover .step-number {
background: var(--tangerine);
transform: scale(1.08);
box-shadow: 0 8px 32px rgba(238, 140, 89, 0.35);
}
.step-card h5 {
font-weight: 700;
font-size: 1.15rem;
color: var(--jet-black);
margin-bottom: 8px;
}
.step-card p {
color: #6b7a7e;
font-size: 0.95rem;
line-height: 1.6;
max-width: 260px;
margin: 0 auto;
}
.step-connector {
display: flex;
align-items: center;
justify-content: center;
color: var(--ash-grey);
font-size: 1.8rem;
padding: 0 10px;
}
@media (max-width: 768px) {
.step-connector {
transform: rotate(90deg);
padding: 4px 0;
}
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
padding: 100px 0 80px;
background: var(--jet-black);
color: #fff;
}
.testimonials-section .section-title {
color: #fff;
}
.testimonials-section .section-subtitle {
color: rgba(255, 255, 255, 0.5);
}
.testimonial-card {
background: rgba(255, 255, 255, 0.05);
backdrop-filter: blur(8px);
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 24px;
padding: 32px 28px;
transition: all 0.3s ease;
height: 100%;
}
.testimonial-card:hover {
background: rgba(255, 255, 255, 0.08);
transform: translateY(-4px);
}
.testimonial-card .stars {
color: var(--tangerine);
font-size: 1rem;
letter-spacing: 2px;
margin-bottom: 12px;
}
.testimonial-card blockquote {
font-size: 1rem;
line-height: 1.7;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 16px;
font-style: italic;
}
.testimonial-card .author {
display: flex;
align-items: center;
gap: 14px;
}
.testimonial-card .author .avatar {
width: 44px;
height: 44px;
border-radius: 50%;
background: rgba(238, 140, 89, 0.2);
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
color: var(--tangerine);
font-size: 1.1rem;
}
.testimonial-card .author .name {
font-weight: 600;
font-size: 0.95rem;
color: #fff;
}
.testimonial-card .author .role {
font-size: 0.8rem;
color: rgba(255, 255, 255, 0.4);
}

/* ===== CTA / NEWSLETTER ===== */
.cta-section {
padding: 100px 0;
background: linear-gradient(135deg, var(--dark-teal-2), var(--dark-teal));
position: relative;
overflow: hidden;
}
.cta-section::before {
content: '';
position: absolute;
top: -50%;
right: -20%;
width: 60%;
height: 200%;
background: radial-gradient(ellipse, rgba(238, 140, 89, 0.08) 0%, transparent 70%);
pointer-events: none;
}
.cta-section .cta-content {
position: relative;
z-index: 2;
}
.cta-section h2 {
font-size: 2.8rem;
color: #fff;
font-weight: 700;
}
.cta-section h2 .highlight {
color: var(--tangerine);
font-family: 'Playfair Display', serif;
font-style: italic;
}
.cta-section .cta-sub {
color: rgba(255, 255, 255, 0.5);
font-size: 1.05rem;
max-width: 460px;
margin: 8px auto 32px;
line-height: 1.6;
}
.cta-section .input-group-custom {
max-width: 500px;
margin: 0 auto;
display: flex;
gap: 12px;
flex-wrap: wrap;
justify-content: center;
}
.cta-section .input-group-custom input {
flex: 1;
min-width: 220px;
padding: 14px 24px;
border-radius: 50px;
border: none;
background: rgba(255, 255, 255, 0.08);
color: #fff;
font-size: 1rem;
outline: none;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.3s ease;
}
.cta-section .input-group-custom input::placeholder {
color: rgba(255, 255, 255, 0.35);
}
.cta-section .input-group-custom input:focus {
background: rgba(255, 255, 255, 0.12);
border-color: var(--tangerine);
}
.cta-section .input-group-custom .btn-primary-custom {
padding: 14px 36px;
}

/* ===== FOOTER ===== */
.footer {
background: var(--jet-black);
color: rgba(255, 255, 255, 0.6);
padding: 60px 0 30px;
border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer .brand {
font-family: 'Playfair Display', serif;
font-weight: 700;
font-style: italic;
font-size: 1.8rem;
color: #fff;
}
.footer .brand span {
color: var(--tangerine);
}
.footer p {
font-size: 0.9rem;
line-height: 1.7;
max-width: 320px;
}
.footer h6 {
color: #fff;
font-weight: 600;
font-size: 0.95rem;
margin-bottom: 16px;
}
.footer ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer ul li {
margin-bottom: 8px;
}
.footer ul li a {
color: rgba(255, 255, 255, 0.5);
font-size: 0.9rem;
transition: all 0.3s ease;
}
.footer ul li a:hover {
color: var(--tangerine);
}
.footer .social-links a {
display: inline-block;
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.04);
color: rgba(255, 255, 255, 0.5);
text-align: center;
line-height: 40px;
font-size: 1.1rem;
transition: all 0.3s ease;
margin-right: 8px;
}
.footer .social-links a:hover {
background: var(--tangerine);
color: #fff;
transform: translateY(-3px);
}
.footer .footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.04);
padding-top: 24px;
margin-top: 40px;
font-size: 0.85rem;
text-align: center;
color: rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
.hero h1 {
font-size: 2.8rem;
}
.hero .hero-image-wrapper .image-placeholder {
max-width: 380px;
}
.hero .hero-image-wrapper .floating-card {
display: none;
}
.section-title {
font-size: 2.2rem;
}
}

@media (max-width: 768px) {
.hero {
padding: 100px 0 60px;
text-align: center;
}
.hero h1 {
font-size: 2.2rem;
}
.hero p.lead {
margin: 0 auto 20px;
font-size: 1rem;
}
.hero .hero-stats {
justify-content: center;
gap: 24px;
}
.hero .hero-stats .stat h4 {
font-size: 1.4rem;
}
.hero .hero-image-wrapper .image-placeholder {
max-width: 280px;
margin-top: 30px;
}
.section-title {
font-size: 1.8rem;
}
.cta-section h2 {
font-size: 2rem;
}
.navbar-brand {
font-size: 1.3rem;
}
.footer .brand {
font-size: 1.4rem;
}
}

@media (max-width: 576px) {
.hero h1 {
font-size: 1.8rem;
}
.hero .hero-badge {
font-size: 0.75rem;
padding: 4px 14px;
}
.hero .hero-stats {
flex-wrap: wrap;
gap: 16px;
}
.feature-card {
padding: 28px 18px;
}
.cta-section .input-group-custom input {
min-width: 100%;
}
.cta-section .input-group-custom .btn-primary-custom {
width: 100%;
}
}

/* ===== SCROLL ANIMATIONS (simple reveal) ===== */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: all 0.7s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}

/* ===== FORM FEEDBACK ===== */
.form-feedback {
display: none;
padding: 12px 20px;
border-radius: 12px;
margin-top: 16px;
font-weight: 500;
}
.form-feedback.success {
display: block;
background: rgba(46, 213, 115, 0.12);
color: #2ed573;
border: 1px solid rgba(46, 213, 115, 0.2);
}
.form-feedback.error {
display: block;
background: rgba(255, 71, 87, 0.12);
color: #ff4757;
border: 1px solid rgba(255, 71, 87, 0.2);
}

/* ===== MODALS ===== */
.modal-content {
border: none;
border-radius: 24px;
overflow: hidden;
background: #ffffff;
box-shadow: 0 24px 80px rgba(5, 41, 50, 0.4);
}
.modal-header {
background: var(--dark-teal, #11464E);
color: #fff;
border-bottom: none;
padding: 24px 28px;
}
.modal-header .btn-close {
filter: brightness(0) invert(1);
opacity: 0.6;
transition: opacity 0.2s ease;
}
.modal-header .btn-close:hover {
opacity: 1;
}
.modal-header .modal-title {
font-weight: 700;
font-size: 1.4rem;
display: flex;
align-items: center;
gap: 10px;
}
.modal-header .modal-title i {
color: var(--tangerine, #EE8C59);
font-size: 1.6rem;
}
.modal-body {
padding: 32px 28px;
background: #fafafa;
}
.modal-body .form-label {
font-weight: 600;
font-size: 0.85rem;
color: var(--jet-black, #052932);
margin-bottom: 4px;
}
.modal-body .form-control {
border-radius: 12px;
border: 1.5px solid var(--ash-grey, #BBC8C9);
padding: 12px 16px;
background: #fff;
font-size: 0.95rem;
transition: all 0.3s ease;
}
.modal-body .form-control:focus {
border-color: var(--tangerine, #EE8C59);
box-shadow: 0 0 0 4px rgba(238, 140, 89, 0.15);
}
.modal-body .btn-primary-custom {
width: 100%;
padding: 12px;
font-size: 1rem;
margin-top: 4px;
}
.modal-body .switch-link {
color: var(--tangerine, #EE8C59);
font-weight: 600;
text-decoration: none;
cursor: pointer;
}
.modal-body .switch-link:hover {
color: #d97a4a;
text-decoration: underline;
}
.modal-body .auth-divider {
display: flex;
align-items: center;
gap: 16px;
margin: 20px 0 12px;
color: var(--ash-grey, #BBC8C9);
font-size: 0.85rem;
}
.modal-body .auth-divider::before,
.modal-body .auth-divider::after {
content: '';
flex: 1;
height: 1px;
background: var(--ash-grey, #BBC8C9);
opacity: 0.3;
}
@media (max-width: 576px) {
.modal-header {
padding: 18px 20px;
}
.modal-body {
padding: 24px 18px;
}
.modal-header .modal-title {
font-size: 1.2rem;
}
}