@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ==========================================================================
   CSS VARIABLES & THEME SETUP
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #004b87;         /* Deep Navy Blue from Logo */
    --primary-light: #0060ad;   /* Vibrant lighter navy blue */
    --primary-dark: #001b33;    /* Very dark navy blue for deep contrast */
    --gold: #f47b20;            /* Elegant Saffron / Orange from Logo */
    --gold-light: #ffedd5;      /* Warm saffron tint */
    --gold-dark: #d65a0b;       /* Deeper saffron for text / borders */
    --accent-green: #00a859;    /* Clean Green from Logo */
    --text-dark: #1e293b;       /* Crisp charcoal for high contrast body text */
    --text-muted: #64748b;      /* Slate grey for secondary text */
    --bg-light: #f8fafc;        /* Soft corporate grey-white */
    --bg-white: #ffffff;        /* Pure white */
    
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #f47b20 0%, #d65a0b 100%);
    --blue-gradient: linear-gradient(135deg, #004b87 0%, #001b33 100%);
    --glass-gradient: rgba(255, 255, 255, 0.9);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', Helvetica, Arial, sans-serif;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 2px 4px rgba(0, 75, 135, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 75, 135, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 75, 135, 0.12);
    --shadow-gold: 0 4px 15px rgba(244, 123, 32, 0.3);
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout */
    --max-width: 1280px;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
}

/* ==========================================================================
   GLOBAL RESETS & STRUCTURE
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.25;
}

p {
    font-size: 1rem;
    color: var(--text-muted);
}

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

ul {
    list-style: none;
}

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ==========================================================================
   REUSABLE COMPONENTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    background: linear-gradient(135deg, #ff8c3a 0%, #f47b20 100%);
}

.btn-secondary {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-white {
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    background: transparent;
}

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

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 1rem auto 0 auto;
    border-radius: 2px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Gold Accent Overlay Line */
.gold-line {
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

/* Scroll Animations Base */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

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

/* ==========================================================================
   TOP BAR & HEADER NAVBAR
   ========================================================================== */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--bg-light);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(244, 123, 32, 0.2);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-info, .top-socials {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-info a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.top-info a:hover {
    color: var(--gold);
}

.top-info svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.top-socials a svg {
    width: 14px;
    height: 14px;
    fill: rgba(255, 255, 255, 0.75);
    transition: var(--transition-fast);
}

.top-socials a:hover svg {
    fill: var(--gold);
    transform: translateY(-1px);
}

/* Navigation Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 0.5rem 0;
    background: rgba(0, 27, 51, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.main-header.scrolled a {
    color: var(--bg-light);
}

.main-header.scrolled .logo h1 {
    color: var(--bg-white);
}

.main-header.scrolled .nav-link::after {
    background: var(--gold);
}

.main-header.scrolled .logo-gold {
    color: var(--gold);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    /* background: var(--gold-gradient); */
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-dark);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.logo-gold {
    color: var(--gold);
}

.logo span.tagline {
    display: block;
    font-size: 0.65rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

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

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

/* Mobile Toggle Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.main-header.scrolled .hamburger span {
    background-color: var(--bg-white);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    background: var(--blue-gradient);
    color: var(--bg-white);
    padding: 8rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Overlay graphics */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 123, 32, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 96, 173, 0.4) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
}

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

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

.hero-title {
    font-size: 3.5rem;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

/* Trust Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
}

.stat-item h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Badge Card Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.hero-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 450px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    border-top-left-radius: var(--border-radius-lg);
    border-top-right-radius: var(--border-radius-lg);
}

.card-trust-badge {
    position: absolute;
    top: -25px;
    right: 30px;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
}

.hero-card h4 {
    color: var(--bg-white);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.badge-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.badge-benefit svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-green);
    flex-shrink: 0;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */
.about {
    padding: 7rem 0;
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-container {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 37, 55, 0.6) 0%, transparent 50%);
}

.about-img-container img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-visual:hover img {
    transform: scale(1.03);
}

.about-experience-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--bg-white);
    border: 2px solid var(--gold);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    max-width: 260px;
    z-index: 10;
}

.about-experience-card h3 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.about-experience-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .section-subtitle {
    margin-bottom: 0.5rem;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.about-text {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about-feature-item svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.about-feature-item h4 {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.about-feature-item p {
    font-size: 0.85rem;
}

/* ==========================================================================
   SERVICES GRID SECTION
   ========================================================================== */
.services {
    padding: 7rem 0;
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(15, 37, 55, 0.05);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
    transition: var(--transition-smooth);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.service-link svg {
    width: 14px;
    height: 14px;
    fill: var(--primary);
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.service-card:hover .service-icon {
    background: var(--primary);
}

.service-card:hover .service-icon svg {
    fill: var(--gold);
}

.service-card:hover h3 {
    color: var(--primary);
}

.service-card:hover .service-link {
    color: var(--gold);
}

.service-card:hover .service-link svg {
    fill: var(--gold);
    transform: translateX(3px);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-choose {
    padding: 7rem 0;
    background-color: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.why-left .section-subtitle {
    margin-bottom: 0.5rem;
}

.why-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.why-left p.main-desc {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.why-badge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.why-badge-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
}

.why-badge-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.why-badge-item p {
    font-size: 0.85rem;
}

.why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.why-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    text-align: left;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.why-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.why-card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold-dark);
}

.why-card h3 {
    font-size: 1.15rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-card p {
    font-size: 0.85rem;
}

.why-card:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover h3 {
    color: var(--bg-white);
}

.why-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

.why-card:hover .why-card-icon {
    background: rgba(255, 255, 255, 0.1);
}

.why-card:hover .why-card-icon svg {
    fill: var(--gold);
}

/* ==========================================================================
   PROCESS TIMELINE SECTION
   ========================================================================== */
.process {
    padding: 7rem 0;
    background: var(--blue-gradient);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.process .section-title {
    color: var(--bg-white);
}

.process .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    margin-top: 5rem;
}

/* Connecting timeline line (desktop only) */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-dark);
    border: 3px solid rgba(255, 255, 255, 0.15);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    color: var(--bg-white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-body);
}

.step-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    max-width: 250px;
    margin: 0 auto;
}

/* Hover effects for process timeline */
.process-step:hover .step-number {
    border-color: var(--gold);
    color: var(--primary-dark);
    background: var(--gold-gradient);
    box-shadow: var(--shadow-gold);
    transform: scale(1.1);
}

/* ==========================================================================
   INTERACTIVE TOOLS SECTION (BOOKING & DOCUMENT UPLOAD)
   ========================================================================== */
.tools-section {
    padding: 7rem 0;
    background-color: var(--bg-white);
}

.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

/* Form Styles Shared */
.tool-box {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.tool-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary);
    border-top-left-radius: var(--border-radius-md);
    border-top-right-radius: var(--border-radius-md);
}

.tool-box.highlight::before {
    background: var(--gold-gradient);
}

.tool-box h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.tool-box p.tool-desc {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Booking Widget Flow */
.booking-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 0.85rem 1rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    width: 100%;
}

.form-control:focus {
    border-color: var(--gold);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

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

/* Custom Booking Confirmation Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 21, 32, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    width: 90%;
    max-width: 500px;
    padding: 3rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: translateY(30px);
    transition: transform 0.4s var(--transition-smooth);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

.modal-close svg {
    width: 20px;
    height: 20px;
    fill: var(--text-muted);
    transition: var(--transition-fast);
}

.modal-close:hover svg {
    fill: var(--primary);
}

.modal-icon-success {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.modal-icon-success svg {
    width: 36px;
    height: 36px;
    fill: var(--gold);
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.modal-summary-box {
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    padding: 1.25rem;
    margin: 1.5rem 0 2rem 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.modal-summary-item {
    display: flex;
    justify-content: space-between;
}

.modal-summary-item span.label {
    font-weight: 600;
    color: var(--primary);
}

/* Document Upload Widget */
.upload-zone {
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 3rem 2rem;
    text-align: center;
    background: var(--bg-light);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.upload-zone.dragover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.upload-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem auto;
    fill: var(--text-muted);
    transition: var(--transition-smooth);
}

.upload-zone.dragover .upload-icon {
    transform: translateY(-5px);
    fill: var(--gold);
}

.upload-zone p.main-instruction {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.upload-zone p.file-limits {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.upload-input {
    display: none;
}

/* File list and progress tracker */
.uploaded-files-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.file-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.file-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.file-name {
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

.file-size {
    color: var(--text-muted);
}

.file-progress-bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.progress-fill {
    height: 100%;
    background: var(--gold-gradient);
    width: 0%;
    transition: width 0.1s ease;
}

.file-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.status-label {
    font-weight: 700;
    text-transform: uppercase;
}

.status-label.uploading { color: var(--primary); }
.status-label.completed { color: #10b981; } /* Emerald green */
.status-label.failed { color: #ef4444; } /* Red */

.remove-file-btn {
    cursor: pointer;
    background: none;
    border: none;
}

.remove-file-btn svg {
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
}

.remove-file-btn:hover svg {
    fill: #ef4444;
}

/* ==========================================================================
   TESTIMONIALS SLIDER SECTION
   ========================================================================== */
.testimonials {
    padding: 7rem 0;
    background-color: var(--bg-light);
    position: relative;
}

.slider-wrapper {
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    text-align: center;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 4rem 3rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.15);
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.client-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--gold);
}

.client-info {
    text-align: left;
}

.client-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

.client-company {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Slider Controls */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background: var(--primary);
}

.slider-btn:hover svg {
    fill: var(--gold);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.35);
}

/* ==========================================================================
   FAQS ACCORDION SECTION
   ========================================================================== */
.faqs {
    padding: 7rem 0;
    background-color: var(--bg-white);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--bg-light);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--bg-white);
    transition: var(--transition-fast);
}

.faq-header h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    padding-right: 1.5rem;
}

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: '';
    position: absolute;
    background: var(--gold-dark);
    transition: var(--transition-smooth);
}

/* Horizontal line */
.faq-toggle-icon::before {
    width: 14px;
    height: 2px;
}

/* Vertical line */
.faq-toggle-icon::after {
    width: 2px;
    height: 14px;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    padding: 1.5rem 2rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Active styles toggled by JS */
.faq-item.active {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-header {
    background: var(--bg-light);
}

.faq-item.active .faq-header h3 {
    color: var(--gold-dark);
}

.faq-item.active .faq-toggle-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-toggle-icon::before {
    background: var(--gold);
}

/* ==========================================================================
   CONTACT FORM & GOOGLE MAP SECTION
   ========================================================================== */
.contact-map-section {
    padding: 7rem 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
}

.contact-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-card p.contact-desc {
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

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

.map-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

/* Contact Info Blocks */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.info-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.info-card-icon {
    width: 36px;
    height: 36px;
    background: rgba(15, 37, 55, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
}

.info-card-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
}

.info-card h4 {
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.info-card p {
    font-size: 0.75rem;
}

.info-card a:hover {
    color: var(--gold);
}

/* Map Frame container with realistic mock border */
.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    flex-grow: 1;
    min-height: 300px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Form Submit Feedback toast alerts */
.toast-alert {
    position: fixed;
    bottom: 30px;
    right: -400px;
    background: var(--primary);
    color: var(--bg-white);
    padding: 1.25rem 2rem;
    border-radius: var(--border-radius-sm);
    border-left: 5px solid var(--gold);
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-alert.active {
    right: 30px;
}

.toast-alert svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    flex-shrink: 0;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: var(--primary-dark);
    color: var(--bg-light);
    padding: 5rem 0 2rem 0;
    border-top: 4px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    color: var(--bg-white);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    /* background: var(--gold-gradient); */
    
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-dark);
}

.footer-logo h3 {
    font-size: 1.3rem;
    color: var(--bg-white);
}

.footer-about-text {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-socials a svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.75);
}

.footer-socials a:hover {
    background: var(--gold-gradient);
}

.footer-socials a:hover svg {
    fill: var(--primary-dark);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    color: var(--gold);
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-links a:hover::before {
    padding-right: 2px;
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 0.85rem 4rem 0.85rem 1rem;
    color: var(--bg-white);
    font-size: 0.9rem;
    width: 100%;
    transition: var(--transition-fast);
}

.newsletter-input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-submit {
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    padding: 0 1.25rem;
    font-weight: 700;
    font-size: 0.85rem;
    border-top-right-radius: var(--border-radius-sm);
    border-bottom-right-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-submit:hover {
    background: linear-gradient(135deg, #ff8c3a 0%, #f47b20 100%);
}

/* Bottom bar copyright */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

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

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ==========================================================================
   RESPONSIVE LAYOUT MEDIA QUERIES
   ========================================================================== */

/* Laptop & Small Desktops (max-width: 1024px) */
@media (max-width: 1024px) {
    :root {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-grid, .about-grid, .why-grid, .contact-grid {
        gap: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* Tablets & Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar for clean mobile design */
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Responsive Menu Drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        padding: 4rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1050;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        color: var(--bg-light) !important;
        font-size: 1.25rem;
    }
    
    .nav-link::after {
        background: var(--gold);
    }
    
    .nav-menu .btn {
        margin-top: 1rem;
        width: 100%;
    }
    
    /* Hamburger toggling animations */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--gold);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--gold);
    }

    /* Grids to single column */
    .hero-grid, .about-grid, .why-grid, .tools-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-visual {
        order: -1; /* Place visual card on top on mobile */
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-visual {
        display: flex;
        justify-content: center;
    }
    
    .about-experience-card {
        right: 0;
        bottom: -20px;
        left: 0;
        margin: 0 auto;
    }
    
    .why-cards {
        grid-template-columns: 1fr;
    }
    
    .why-left {
        text-align: center;
    }
    
    .why-badge-grid {
        justify-content: center;
    }
    
    /* Timeline process to vertical layout */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step::after {
        content: '';
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 1.5rem;
        background: rgba(255, 255, 255, 0.2);
    }
    
    .process-step:last-child::after {
        display: none;
    }
    
    .tool-box {
        padding: 2rem;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Small Mobile Screen (max-width: 480px) */
@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
