/* Base & Reset */
:root {
    --color-text: #2D3748;
    --color-text-light: #718096;
    --color-bg: #FFFFFF;
    --color-bg-light: #F7FAFC;
    --color-border: #E2E8F0;

    /* Fallbacks for customizer vars */
    --color-primary: #0B3B60;
    --color-accent: #00B4D8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--color-primary);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-white,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white p {
    color: #fff !important;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.primary-bg {
    background-color: var(--color-primary);
}

.mt-2 {
    margin-top: 10px;
}

.mt-4 {
    margin-top: 20px;
}

.text-sm {
    font-size: 0.85rem;
}

.d-hide-desktop {
    display: none;
}

@media(max-width: 1024px) {
    .d-hide-desktop {
        display: block;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: #fff;
    opacity: 0.95;
}

.btn-accent {
    background-color: var(--color-accent);
    color: #fff;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: #fff;
    opacity: 0.95;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.15rem;
}

/* Header & Nav */
.top-bar {
    background-color: var(--color-primary);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #fff;
    font-weight: 500;
}

.top-bar .divider {
    margin: 0 10px;
    opacity: 0.3;
}

.top-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

.top-link:hover {
    background: #fff;
    color: var(--color-primary) !important;
}

.site-header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1;
    margin-bottom: 4px;
}

.site-description {
    font-size: 0.75rem;
    color: var(--color-text-light);
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.primary-menu-container ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.primary-menu-container a {
    color: var(--color-text);
    font-weight: 500;
    font-family: var(--font-heading);
    position: relative;
}

.primary-menu-container a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.primary-menu-container a:hover::after {
    width: 100%;
}

.header-cta {
    margin-left: 35px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
}

.hamburger {
    width: 30px;
    height: 3px;
    background: var(--color-primary);
    position: relative;
    display: block;
    border-radius: 3px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #0A1E33 0%, #1A4D7C 100%);
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 70px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 50px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.hero-stats {
    display: flex;
    gap: 50px;
}

.hero-stats .stat {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stats .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    font-family: var(--font-heading);
    margin-bottom: 5px;
    text-transform: none;
}

/* Forms */
.hero-form-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    color: var(--color-text);
    position: relative;
    z-index: 10;
    transform: translateY(20px);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 25px;
}

.form-header .gift-icon {
    font-size: 2.5rem;
    display: inline-block;
    background: var(--color-bg-light);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.form-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-primary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #FAFCFF;
    transition: var(--transition);
    color: var(--color-text);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
    background-color: #fff;
}

/* Trust Bar */
.trust-bar {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 25px 0;
}

.trust-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.trust-item {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-light);
}

.trust-item .icon {
    font-size: 1.2rem;
}

/* Solutions Grid */
.section-title {
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.solution-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 45px 35px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: var(--color-bg-light);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--color-text-light);
    margin-bottom: 30px;
    font-size: 1rem;
    flex-grow: 1;
}

.feature-list {
    margin-bottom: 35px;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--color-text);
}

.feature-list li span {
    color: var(--color-accent);
    font-weight: bold;
}

.popular-card {
    border: 2px solid var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.popular-card:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 60px;
    counter-reset: steps;
}

.step {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    text-align: center;
}

.step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    background: var(--color-primary);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-md);
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3.5rem;
    margin-top: 20px;
    margin-bottom: 25px;
}

.step h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.step p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* Why Us */
.why-us-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-row {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.f-icon {
    font-size: 2rem;
    background: var(--color-bg-light);
    color: var(--color-primary);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px var(--color-border);
}

.f-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.f-text p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.why-us-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-box {
    padding: 50px 40px;
    border-radius: 16px;
}

.stat-box h3 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-box p strong {
    font-size: 1.2rem;
}

.stat-box .small {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.white-bg {
    background: #fff;
    border: 1px solid var(--color-border);
}

.logos-slider-container {
    margin-top: 25px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logos-track {
    display: flex;
    width: calc(180px * 18);
    /* Number of items total * width per item */
    animation: scrollLogos 25s linear infinite;
    gap: 15px;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-item {
    width: 165px;
    flex-shrink: 0;
}

.logo-item div {
    background: var(--color-bg-light);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    height: 100%;
    min-height: 80px;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-180px * 9 - 15px * 9));
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.testimonial {
    background: #fff;
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.testimonial:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.stars {
    color: #F59E0B;
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 35px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text);
}

.author {
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
}

.author .avatar {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
}

.author-info strong {
    display: block;
    color: var(--color-primary);
    font-size: 1.05rem;
}

/* Destinations */
.destinations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.destinations-grid span {
    padding: 12px 25px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 30px;
    font-weight: 600;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
    cursor: default;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.destinations-grid span:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Lead Magnet */
.lead-magnet-section {
    background: linear-gradient(135deg, #1A4D7C 0%, var(--color-primary) 100%);
    border-radius: 20px;
    margin: 0 20px;
    padding: 80px 60px;
    box-shadow: var(--shadow-lg);
}

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: center;
}

.lead-magnet-section .badge {
    color: var(--color-text);
    background: #fff;
    margin-bottom: 25px;
}

.lead-magnet-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.lead-magnet-section .check-list li {
    font-size: 1.05rem;
}

.lead-form-box {
    background: #fff;
    padding: 45px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* FAQ */
.faq-section {
    background: #F8FAFC;
}

.faq-container {
    max-width: 850px;
    margin: 50px auto 0;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 25px 30px;
    background: none;
    border: none;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--color-text-light);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 600px;
}

.faq-item.active {
    border-color: var(--color-accent);
}

.faq-question .toggle {
    font-size: 2rem;
    font-weight: 300;
    transition: transform 0.4s ease;
    line-height: 1;
    color: var(--color-accent);
}

.faq-item.active .faq-question .toggle {
    transform: rotate(45deg);
    color: var(--color-primary);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-methods {
    margin-top: 40px;
}

.contact-methods .method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-methods .icon {
    font-size: 1.5rem;
    background: var(--color-bg-light);
    color: var(--color-primary);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.contact-methods strong {
    font-size: 1.1rem;
    color: var(--color-primary);
}

.contact-form-box {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.site-footer {
    background: #0A192F;
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 30px;
    font-size: 0.95rem;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
    margin-bottom: 25px;
}

.site-footer p {
    margin-bottom: 15px;
}

.site-footer ul li {
    margin-bottom: 12px;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.6);
}

.site-footer a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-info p {
    margin: 0;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 40px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-form-box {
        display: none;
    }

    .solutions-grid,
    .why-us-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .popular-card {
        transform: none;
    }

    .popular-card:hover {
        transform: translateY(-10px);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-top: 80px;
    }

    .lead-magnet-section {
        margin: 0;
        border-radius: 0;
        padding: 60px 20px;
    }

    .lead-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lead-magnet-section .check-list li {
        justify-content: center;
    }

    .footer-widgets {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
    }

    .primary-menu-container {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 25px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--color-border);
    }

    .primary-menu-container.show {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .primary-menu-container ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-section {
        padding: 60px 0 80px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .trust-inner {
        justify-content: center;
        gap: 20px;
    }

    .solutions-grid,
    .process-steps,
    .testimonials-grid,
    .footer-widgets,
    .logos-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .contact-form-box {
        padding: 30px 20px;
    }

    .site-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}