/* ===== CSS Variables ===== */
:root {
    --primary: #0a1930;
    --primary-dark: #061022;
    --primary-light: #132744;
    --secondary: #0a1930;
    --accent: #22c55e;
    --accent-light: #4ade80;
    --accent-yellow: #fbbf24;
    --text-primary: #0a1930;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f0fdf4;
    --bg-dark: #0a1930;
    --border: #e2e8f0;
    --gradient: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-text: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Utilities ===== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: var(--secondary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border-color: transparent;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: white;
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary);
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-icon {
    font-size: 1.75rem;
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a.active {
    color: white;
    background: var(--accent);
}

.nav-links a::after {
    display: none;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.header-contact-text {
    display: flex;
    flex-direction: column;
}

.header-contact-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.header-phone {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
    background: var(--primary);
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 50%, #0a1628 100%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0' x2='0' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%23051525'/%3E%3Cstop offset='1' stop-color='%230a1f35'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpolygon fill='url(%23a)' points='0,100 100,0 100,100'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Large triangle bottom right */
        linear-gradient(135deg, transparent 60%, rgba(20, 50, 80, 0.4) 60%, rgba(20, 50, 80, 0.4) 61%, transparent 61%),
        /* Medium triangle */
        linear-gradient(145deg, transparent 70%, rgba(15, 40, 65, 0.3) 70%, rgba(15, 40, 65, 0.3) 72%, transparent 72%),
        /* Small accent triangles */
        linear-gradient(120deg, transparent 80%, rgba(34, 197, 94, 0.08) 80%, rgba(34, 197, 94, 0.08) 82%, transparent 82%),
        /* Additional geometric shapes */
        linear-gradient(160deg, transparent 75%, rgba(10, 35, 60, 0.5) 75%, rgba(10, 35, 60, 0.5) 77%, transparent 77%);
    pointer-events: none;
}

.hero-geometric {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-geometric::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, transparent 50%, rgba(34, 197, 94, 0.1) 50%);
    transform: rotate(15deg);
}

.hero-geometric::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(-45deg, transparent 50%, rgba(20, 60, 100, 0.3) 50%);
    transform: rotate(-10deg);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.2);
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: white;
    font-family: 'Playfair Display', serif;
}

.hero-title .gradient-text {
    color: #22c55e;
    -webkit-text-fill-color: #22c55e;
    background: none;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    max-width: 420px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #22c55e;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-phone-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.hero-phone-btn .phone-icon {
    font-size: 1rem;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-globe-img {
    width: 100%;
    height: auto;
    max-width: 450px;
}

/* ===== Partners Section ===== */
.partners {
    padding: 3rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partners-title {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.6;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    color: var(--primary);
}

/* ===== About Section ===== */
.about {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    background-image: url('ethos-assets/About-us-bg.svg');
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 470px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position-x: right;
    background-position-y: top;
}

.about-image-side {

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem 0rem 3rem;
}

.about-image-side::after {
    content: '';
    position: absolute;
    top: 0;
    right: -80px;
    width: 160px;
    height: 100%;

    border-radius: 0 50% 50% 0 / 0 100% 100% 0;
    z-index: 1;
}

.about-img {
    width: 100%;
    height: auto;
    /*max-width: 515px;*/
    position: relative;
    z-index: 2;
}

.about-content-side {
  
   background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 3rem 2rem 3rem 10rem;
}

.about-content {
    max-width: 100%;
}

.section-badge-dark {
    display: inline-block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-title {
    font-size: 1.85rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    color: white;
    font-family: 'Playfair Display', serif;
}

.about-content-side .about-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.8rem;
    line-height: 1.75;
    font-weight: 400;
}

.about-content-side .about-text:first-of-type {
    margin-bottom: 1.25rem;
}

/* ===== Services Section ===== */
.services {
    padding: 3rem 0;
    background: #f5f7fa;
}

.section-header-services {
    text-align: center;
    margin-bottom: 3rem;
}

.services-badge {
    display: inline-block;
    color: #0C549B;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.services-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0A437A;
    font-family: sofia pro, serif;
}

.services-title-accent {
    color: #36CC2D;
    /* font-style: italic; */
}

.services-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card-new {
    background: white;
    padding: 0;
    border-radius: 16px;
    display: flex;
    align-items: stretch;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card-icon {
    flex-shrink: 0;
    width: 140px;
    background: #0a437a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 16px;
}

.service-card-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-card-content {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0a1930;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.service-card-content p {
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.7;
    font-weight: 400;
}

/* ===== Destinations Section ===== */
.destinations {
    padding: 6rem 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.destination-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.destination-image {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.destination-image.usa {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
}

.destination-image.uk {
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
}

.destination-image.canada {
    background: linear-gradient(135deg, #b71c1c 0%, #e53935 100%);
}

.destination-image.australia {
    background: linear-gradient(135deg, #00695c 0%, #26a69a 100%);
}

.destination-content {
    padding: 1.5rem;
}

.destination-flag {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.destination-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.destination-content > p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.destination-features {
    margin-bottom: 1.5rem;
}

.destination-features li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.destination-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.75rem;
}

.more-destinations {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-secondary);
}

.more-destinations span {
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
}

.more-destinations span:hover {
    text-decoration: underline;
}

/* ===== Process Section ===== */
.process {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--secondary);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin-top: 3rem;
}

/* ===== Testimonials Section ===== */
.testimonials-new {
    padding: 5rem 0;
    background: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-badge {
    display: inline-block;
    color: #22c55e;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.testimonials-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0a1930;
    font-family: 'Playfair Display', serif;
}

.testimonials-title-accent {
    color: #22c55e;
    /* font-style: italic; */
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.testimonial-card-new {
    background: #f8faf9;
    padding: 2rem;
    border-radius: 8px;
    max-width: 450px;
}

.testimonial-quote {
    color: #374151;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-author-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar-new {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 0.125rem;
}

.author-details p {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 400;
}

.testimonial-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: white;
    color: #9ca3af;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    border-color: #22c55e;
    color: #22c55e;
}

.nav-btn.nav-next {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
}

.testimonial-illustration-new {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-illustration-new img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* Legacy testimonials grid for fallback */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: var(--accent-yellow);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    /* font-style: italic; */
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-info h4 {
    font-size: 1rem;
    color: var(--secondary);
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== CTA Section ===== */
.cta {
    padding: 6rem 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2322c55e' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 1rem;
}

.cta h2 .gradient-text {
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Contact Section ===== */
.contact-new {
    padding: 5rem 0;
    background: white;
}

.contact-wrapper-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-illustration-new {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-illustration-new img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

.contact-form-side {
    max-width: 480px;
}

.contact-badge {
    display: inline-block;
    color: #22c55e;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.contact-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0a1930;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
}

.contact-title-accent {
    color: #22c55e;
    /* font-style: italic; */
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    padding-right: 2.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.875rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: #374151;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #9ca3af;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #22c55e;
    font-size: 0.875rem;
}

.textarea-wrapper {
    position: relative;
}

.textarea-wrapper textarea {
    resize: vertical;
    min-height: 100px;
    padding-right: 1rem;
}

.textarea-icon {
    top: 1rem;
    transform: none;
}

.contact-submit-btn {
    width: 100%;
    padding: 1rem;
    background: #22c55e;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    background: #16a34a;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* ===== Pre-Footer CTA ===== */
.pre-footer {
    background: var(--accent-yellow);
    padding: 3rem 0;
}

.pre-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.pre-footer-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pre-footer-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pre-footer-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.pre-footer-content h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.pre-footer-content p {
    color: var(--primary);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ===== Footer ===== */
.footer-new {
    background: #f8fafa;
    padding: 4rem 0 0;
}

.footer-grid-new {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand-new {
    max-width: 280px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-brand-new p {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-social-new {
    display: flex;
    gap: 0.75rem;
}

.footer-social-new a {
    width: 32px;
    height: 32px;
    background: #0a1930;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-new a:hover {
    background: #22c55e;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #0a1930;
    margin-bottom: 1.25rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    list-style: none;
}

.footer-column a {
    color: #6b7280;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-column a:hover {
    color: #22c55e;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.footer-contact-value {
    font-size: 0.9rem;
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}

.footer-contact-value:hover {
    color: #22c55e;
}

.footer-bottom-new {
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom-new p {
    color: #6b7280;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-light);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
        margin-bottom: 2rem;
    }

    .hero-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .header-contact {
        display: none;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        background-image: unset;
    }

    .about-image-side {
        padding: 3rem 3rem 0rem 3rem;
        /*min-height: 387px;*/
    }

    .about-image-side::after {
        display: none;
    }

    .about-content-side {
        padding: 3rem;
        background-color: #0A437A;
    }

    .about-title {
        font-size: 2rem;
    }

    .services-grid-new {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-content {
        grid-template-columns: 1fr;
    }

    .testimonial-card-new {
        max-width: 100%;
    }

    .testimonial-illustration-new {
        display: none;
    }

    .contact-wrapper-new {
        grid-template-columns: 1fr;
    }

    .contact-illustration-new {
        display: none;
    }

    .contact-form-side {
        max-width: 100%;
    }

    .footer-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .floating-card {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid-new {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-new {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-social-new {
        justify-content: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .form-row-new {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===== Mobile Menu (Active State) ===== */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    gap: 1rem;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
