:root {
    --primary-navy: #1e3a5f;
    --primary-gold: #d4a574;
    --accent-orange: #f5a623;
    --dark: #0f1f38;
    --light: #f8f9fa;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: var(--dark);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(30, 58, 95, 0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(30, 58, 95, 0.15);
}

.navbar-brand {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-big {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
}

.logo-by {
    font-size: 14px;
    font-weight: 400;
    color: var(--accent-orange);
    font-style: italic;
    margin-left: 2px;
}

.logo-design {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--primary-navy) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-left: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark) 100%);
    color: white;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.zero-banner {
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-gold));
    color: white;
    text-align: center;
    padding: 0.85rem 1rem;
    margin-top: 76px;
    font-weight: 600;
}

.zero-banner a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero::before,
.hero::after,
.testimonials::before,
.cta::before {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.hero::before {
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
}

.hero::after {
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--primary-gold);
    display: inline-block;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.hero-stat {
    min-width: 120px;
}

.hero-stat strong {
    display: block;
    font-size: 1.75rem;
    color: var(--primary-gold);
    line-height: 1.2;
}

.hero-stat span {
    font-size: 0.95rem;
    opacity: 0.85;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    color: white;
    border: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-gold);
    margin-left: 20px;
}

.btn-hero-secondary:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary-navy);
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-orange));
    bottom: -15px;
    left: calc(50% - 40px);
    border-radius: 2px;
}

.section-title p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-top: 25px;
}

.section-title.light h2,
.section-title.light p {
    color: white;
}

.section-title.light p {
    color: rgba(255, 255, 255, 0.8);
}

.service-card {
    background: white;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.15);
    border-color: var(--primary-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    border-radius: 20px;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
    background: linear-gradient(135deg, var(--primary-navy), var(--dark));
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.service-card p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 0;
}

.testimonials {
    padding: 100px 0;
    background: var(--primary-navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
    margin-top: 40px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-gold);
}

.testimonial-avatar {
    position: absolute;
    top: -40px;
    left: 35px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    border: 4px solid var(--primary-navy);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    margin-top: 50px;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.testimonial-author h5 {
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.testimonial-author small {
    opacity: 0.8;
}

.testimonial-author small a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.testimonial-author small a:hover {
    color: var(--primary-gold);
}

.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark) 100%);
    color: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
}

.contact-info-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-card p {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-detail i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.contact-form-card {
    background: var(--light);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(30, 58, 95, 0.08);
    border: 1px solid rgba(30, 58, 95, 0.06);
}

.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-gold) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-weight: 800;
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta {
    background: white;
    color: var(--primary-navy);
    padding: 18px 50px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--primary-navy);
    color: white;
}

footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.1);
    color: var(--primary-gold);
    margin-right: 12px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-3px);
}

.footer-links h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links ul {
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-gold);
    padding-left: 8px;
}

.footer-contact li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    margin-right: 15px;
    color: var(--primary-gold);
    font-size: 18px;
    margin-top: 3px;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-navy), var(--dark));
    color: white;
    border-radius: 10px 10px 0 0;
}

.modal-content {
    border-radius: 10px;
    border: none;
    overflow: hidden;
}

.form-label {
    font-weight: 600;
    color: var(--primary-navy);
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.bbdn-hp-wrap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

.hero-eyebrow {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.hero-support {
    font-size: 1.05rem;
    opacity: 0.88;
    max-width: 680px;
}

.intro-section,
.built-section,
.about-section,
.process-section {
    padding: 100px 0;
}

.intro-section {
    background: white;
}

.intro-section h2,
.built-section h2,
.about-section h2 {
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.intro-section .lead,
.built-section .lead {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 1rem;
}

.intro-section p,
.built-section p,
.about-section p {
    color: #6c757d;
    line-height: 1.85;
    font-size: 1.05rem;
}

.process-section {
    background: var(--light);
}

.process-step {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.06);
    border: 1px solid rgba(30, 58, 95, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(30, 58, 95, 0.12);
}

.process-number {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.85rem;
}

.process-step p {
    color: #6c757d;
    line-height: 1.75;
    margin-bottom: 0;
}

.built-section {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.04) 0%, rgba(212, 165, 116, 0.08) 100%);
}

.about-section {
    background: white;
}

.about-eyebrow {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 0.75rem;
}

.about-photo-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 31, 56, 0.18);
}

.about-photo-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 4px solid rgba(212, 165, 116, 0.35);
    border-radius: 24px;
    pointer-events: none;
}

.about-photo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cta-tagline {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem !important;
}

.btn-cta {
    display: inline-block;
    text-decoration: none;
}

.services .service-card h3 {
    text-align: center;
}

.services .service-card p {
    text-align: center;
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .btn-hero-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .about-photo-wrap {
        max-width: 420px;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2,
    .cta h2 {
        font-size: 2rem;
    }

    .service-card,
    .contact-form-card {
        margin-bottom: 30px;
    }
}
