/* 
   GS Travels and Holidays — Official Brand Theme
   Brand Colors: Navy Blue (#1B2A6B), Teal (#2ABFBF), Dark Teal (#1B6E6E), White (#FFFFFF)
   Tagline: Explore, Experience, Enjoy
   Fonts: Playfair Display (Display) + Plus Jakarta Sans (UI)
*/

:root {
    /* GS Travels Official Brand Palette */
    --primary-teal: #2ABFBF;
    --primary-teal-hover: #1fa8a8;
    --primary-navy: #1B2A6B;
    --primary-dark-teal: #1B6E6E;
    --text-charcoal: #111827;
    --text-gray: #64748B;
    --text-light: #94A3B8;

    --bg-white: #FFFFFF;
    --bg-offwhite: #F0F4FA;
    --bg-navy-soft: #EEF1F9;

    /* Aliases */
    --primary-mint: #2ABFBF;
    --primary-mint-hover: #1fa8a8;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.07), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 50px rgba(27, 42, 107, 0.10), 0 8px 20px rgba(0, 0, 0, 0.05);
    --shadow-teal: 0 8px 30px rgba(42, 191, 191, 0.30);
    --shadow-navy: 0 8px 30px rgba(27, 42, 107, 0.25);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-charcoal);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 120px 0;
}

/* Utilities */
.text-center {
    text-align: center;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-mint {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-dark-teal) 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: var(--shadow-teal);
}

.btn-mint:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(42, 191, 191, 0.45);
    background: linear-gradient(135deg, #2fd4d4 0%, #1fa8a8 100%);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-charcoal);
    border-color: #D1D5DB;
    font-weight: 600;
}

.btn-outline:hover {
    border-color: var(--primary-navy);
    background-color: var(--bg-navy-soft);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

/* ===========================
   TYPOGRAPHY ELEMENTS
=========================== */
.section-tagline {
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--primary-teal);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(42, 191, 191, 0.1);
    border: 1px solid rgba(42, 191, 191, 0.25);
    padding: 5px 14px;
    border-radius: 50px;
}

.section-tagline::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-teal);
    border-radius: 50%;
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* ===========================
   HEADER
=========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 42, 107, 0.06);
    transition: var(--transition);
}

.header.scrolled {
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(27, 42, 107, 0.08);
    background: rgba(255, 255, 255, 0.97);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
    position: relative;
    padding-bottom: 2px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-navy);
}

.nav-menu a:hover::after {
    width: 100%;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--primary-navy);
    letter-spacing: -0.3px;
    line-height: 1.15;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
    padding-top: 0;
    padding-bottom: 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #243580 40%, var(--primary-dark-teal) 100%);
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(42, 191, 191, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        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='%232ABFBF' fill-opacity='0.04'%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");
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 160px;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 860px;
    margin: 0 auto 70px;
}

.hero .section-tagline {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}

.hero .section-tagline::before {
    background: rgba(255, 255, 255, 0.7);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 28px;
    color: #fff;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero h1 em {
    font-style: italic;
    color: var(--primary-teal);
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.75;
    font-weight: 400;
    font-family: var(--font-body);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero .btn-mint {
    background: linear-gradient(135deg, var(--primary-teal), #20a8a8);
    box-shadow: 0 8px 32px rgba(42, 191, 191, 0.5);
    font-size: 1rem;
    padding: 16px 36px;
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    font-size: 1rem;
    padding: 16px 36px;
}

.hero .btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(-2px);
}

/* Wide Plane Image Banner */
.hero-image-banner {
    width: 100%;
    height: 600px;
    border-radius: 40px;
    /* Heavy rounded corners */
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.hero-image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    /* Perfectly centers the Qatar Airways plane body */
    transition: transform 10s ease;
}

.hero-image-banner:hover img {
    transform: scale(1.05);
}

/* Floating Stats on Hero */
.hero-stat-floating {
    position: absolute;
    background: var(--bg-white);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--text-charcoal);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-stat-floating.left {
    top: 40px;
    left: 40px;
}

.hero-stat-floating.right {
    top: 40px;
    right: 40px;
}

.hero-stat-floating i {
    color: #FFB020;
    /* Gold star/icon */
}


/* Crafting Journeys Split Section */
.crafting {
    background: var(--bg-white);
    padding: 80px 0;
}

.crafting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.crafting-text h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.crafting-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.crafting-stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid #EFEFEF;
    padding-top: 40px;
}

.craft-stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.craft-stat-box p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Destinations (GCC Custom) */
.destinations {
    background: var(--bg-offwhite);
}

.dest-header {
    margin-bottom: 60px;
    max-width: 500px;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Vertical clean cards per template */
.dest-card {
    background: transparent;
    display: flex;
    flex-direction: column;
}

.dest-img-wrap {
    height: 350px;
    /* Tall vertical format */
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.dest-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-img-wrap img {
    transform: scale(1.08);
    /* Zoom on hover */
}

.dest-info {
    padding: 0 10px;
}

.dest-info h3 {
    font-size: 1.4rem;
    color: var(--text-charcoal);
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dest-info p {
    font-size: 0.95rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Waitlist form styles removed - replaced with WhatsApp CTA */

/* ===========================
   HEADER RIGHT / MOBILE NAV
=========================== */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline-dark {
    background: transparent;
    border: 1px solid #ddd;
    color: var(--text-charcoal);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline-dark:hover {
    border-color: var(--text-charcoal);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-charcoal);
    padding: 5px;
}

/* ===========================
   HERO REFINEMENTS
=========================== */
.hero-sub {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

/* ===========================
   STATS BAR
=========================== */
.stats-bar {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1e3580 60%, var(--primary-dark-teal) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 200% at 80% 50%, rgba(42, 191, 191, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 20px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item i {
    font-size: 1.8rem;
    color: var(--primary-teal);
    margin-bottom: 14px;
    display: block;
    filter: drop-shadow(0 0 8px rgba(42, 191, 191, 0.5));
}

.stat-label-big {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-heading);
    font-weight: 500;
}

/* ===========================
   ABOUT SECTION ENHANCEMENTS
=========================== */
.feature-list {
    list-style: none;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-charcoal);
    font-weight: 500;
}

.feature-list li i {
    color: var(--primary-mint);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.crafting-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.crafting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crafting-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.crafting-badge .badge-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-charcoal);
    line-height: 1;
}

.crafting-badge .badge-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 4px;
}

/* ===========================
   SECTION HEADERS
=========================== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header .section-title {
    margin-top: 16px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 14px;
    line-height: 1.7;
    font-family: var(--font-body);
}

/* ===========================
   SERVICES SECTION
=========================== */
.services {
    background: var(--bg-offwhite);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 38px 32px;
    border: 1px solid rgba(27, 42, 107, 0.07);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-dark-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(42, 191, 191, 0.20);
}

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

.service-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-dark-teal));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 6px 18px rgba(42, 191, 191, 0.30);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-charcoal);
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    flex: 1;
    color: var(--text-gray);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
    font-size: 0.88rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark-teal);
    gap: 12px;
}

/* ===========================
   DESTINATION BADGES
=========================== */
.dest-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-teal);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dest-img-wrap {
    position: relative;
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials {
    background: var(--bg-offwhite);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testi-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 38px 32px;
    border: 1px solid rgba(27, 42, 107, 0.07);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-teal);
    opacity: 0.12;
    line-height: 1;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(42, 191, 191, 0.18);
}

.testi-stars {
    color: #F59E0B;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.testi-card p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #374151;
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 400;
    margin-bottom: 28px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.testi-avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-dark-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: var(--shadow-navy);
}

.testi-author strong {
    display: block;
    color: var(--text-charcoal);
    font-size: 0.9rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.testi-author span {
    font-size: 0.78rem;
    color: var(--text-light);
    font-family: var(--font-body);
}

/* ===========================
   BLOG PREVIEW
=========================== */
.blog-preview {
    background: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(27, 42, 107, 0.07);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    color: inherit;
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(42, 191, 191, 0.20);
}

.blog-card-img {
    height: 190px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.blog-card-body {
    padding: 28px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(42, 191, 191, 0.1);
    border: 1px solid rgba(42, 191, 191, 0.25);
    color: var(--primary-teal);
    font-size: 0.68rem;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.blog-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    line-height: 1.45;
    margin-bottom: 10px;
    color: var(--text-charcoal);
    font-weight: 600;
}

.blog-card-body p {
    font-size: 0.88rem;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.blog-read-more {
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 16px;
    margin-top: auto;
}

.blog-card:hover .blog-read-more {
    gap: 12px;
    color: var(--primary-dark-teal);
}

/* ===========================
   PARTNERS STRIP
=========================== */
.partners {
    background: var(--bg-white);
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.section-padding-sm {
    padding: 60px 0;
}

.partners-label {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 35px;
}

.partners-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partner-item {
    background: var(--bg-offwhite);
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-charcoal);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.partner-item i {
    color: var(--primary-teal);
    font-size: 0.85rem;
}

.partner-item:hover {
    border-color: var(--primary-teal);
    background: #e8f9f9;
}

/* ===========================
   CTA BAND
=========================== */
.cta-band {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1e3580 50%, var(--primary-dark-teal) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 10% 50%, rgba(42, 191, 191, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 90% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-band h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-band p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    font-family: var(--font-body);
}

.btn-white {
    background: #fff;
    color: var(--primary-navy);
    padding: 18px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.20);
}

.btn-white i {
    color: #25D366;
    font-size: 1.2rem;
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    background: #f0fdfb;
}

/* ===========================
   FOOTER REDESIGN
=========================== */
.footer {
    background: #0d1a3a;
    color: rgba(255, 255, 255, 0.65);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.footer-logo-tagline {
    font-size: 0.78rem;
    color: var(--primary-teal);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    font-weight: 500;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-teal);
    color: #fff;
}

.footer-links-col h4,
.footer-contact-col h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links-col ul,
.footer-contact-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--primary-teal);
    padding-left: 4px;
}

.footer-contact-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.footer-contact-col li i {
    color: var(--primary-teal);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-col a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-contact-col a:hover {
    color: var(--primary-teal);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    gap: 10px;
}

/* ===========================
   RESPONSIVE UPDATES
=========================== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.open {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        z-index: 999;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.open ul {
        flex-direction: column;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .btn-outline-dark {
        display: none;
    }

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

    .hero-image-banner {
        height: 400px;
    }

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

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

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

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .cta-band-inner {
        flex-direction: column;
        text-align: center;
    }

    .crafting-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .hero-stat-floating {
        display: none;
    }

    .hero-image-banner {
        border-radius: 20px;
        height: 280px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

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

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

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

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

    .cta-band h2 {
        font-size: 1.8rem;
    }
}


.form-wrapper {
    background: var(--bg-offwhite);
    border-radius: 30px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.form-wrapper .section-title {
    font-size: 2.8rem;
}

.custom-form {
    margin-top: 40px;
    text-align: left;
}

.custom-form .form-group {
    margin-bottom: 25px;
}

.custom-form label {
    display: block;
    color: var(--text-charcoal);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.custom-form input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    background: var(--bg-white);
    color: var(--text-charcoal);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.custom-form input:focus {
    outline: none;
    border-color: var(--primary-mint);
    box-shadow: 0 0 0 4px rgba(178, 240, 230, 0.3);
}

.btn-form {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 10px;
    border-radius: 12px;
    /* Less pill-shaped for form block */
}

/* Form Success State */
.form-success-message {
    text-align: center;
    padding: 30px 0;
    animation: fadeInUp 0.5s ease-out;
}

.form-success-message i {
    font-size: 4rem;
    color: var(--primary-mint);
    margin-bottom: 20px;
}


/* Footer */
.footer {
    background: var(--text-charcoal);
    color: var(--bg-white);
    padding: 80px 0 30px;
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--bg-white);
}

.footer-contact {
    display: flex;
    gap: 40px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer-contact a:hover {
    color: var(--primary-mint);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

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

    .hero-image-banner {
        height: 400px;
    }

    .crafting-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

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

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

    .hero-stat-floating {
        display: none;
    }

    /* Hide floating text on mobile */
    .hero-image-banner {
        border-radius: 20px;
        height: 300px;
    }

    .crafting-text h2 {
        font-size: 2.5rem;
    }

    .craft-stat-box h3 {
        font-size: 2rem;
    }

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

    .form-wrapper {
        padding: 40px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}