/* =========================================
   COMPLETE PRODUCTION CSS FILE
   With 170px Big Logo Height & Transparent Header
========================================= */

/* =========================================
   BASE & RESET
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Agency section responsive fixes (mobile & tablet) */
@media (max-width: 768px) {
    .agency-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        align-items: center !important;
        padding: 18px 12px !important;
    }

    .agency-image-box, .agency-content-box { width: 100% !important; }

    .agency-main-img {
        height: 300px !important;
        max-width: 100% !important;
        object-fit: cover !important;
    }

    .agency-title {
        font-size: 28px !important;
        text-align: center !important;
        line-height: 1.15 !important;
        margin-bottom: 8px !important;
    }

    .agency-content-box p, .agency-content-box .feature-text {
        font-size: 16px !important;
        text-align: center !important;
    }

    .agency-cta-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 16px !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 1024px) {
    .agency-container { gap: 40px !important; }
    .agency-image-box { max-width: 55% !important; }
    .agency-content-box { max-width: 45% !important; }
    .agency-main-img { max-width: 100% !important; height: auto !important; }
    .agency-title { font-size: clamp(20px, 2.2vw, 32px) !important; }
}

img, picture, video { max-width: 100%; height: auto; display: block; }
button, a, input { -webkit-tap-highlight-color: rgba(0,0,0,0); }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Arial', sans-serif;
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    padding-top: 0 !important;
}

html, body {
    -webkit-text-size-adjust: 100%;
    touch-action: manipulation;
}

:root {
    --blue-primary: #0B5ED7;
    --blue-dark: #083D8C;
    --blue-mid: #0A4FB3;
    --blue-soft: #4A90E2;
    --black-main: #000000;
    --white-main: #FFFFFF;
    --gray-light: #f5f5f5;
    --gray-medium: #666666;
    --red-primary: #b30000;
    --red-dark: #a20000;
    --site-nav-bg: #001f4d;
    --site-header-height: 120px; /* Increased for 170px logo */
    --container-max: 1200px;
    --hamburger-size: 36px;
    --vh: 1vh;
    --safe-top: env(safe-area-inset-top, 0px);
}

/* =========================================
   HEADER - With 170px Big Logo & Transparent Background
========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: transparent !important; /* FULLY TRANSPARENT */
    transform: translateY(0);
    transition: transform .24s ease;
    will-change: transform;
    padding-top: var(--safe-top);
    box-sizing: border-box;
    height: var(--site-header-height);
}
.site-header.hidden { transform: none !important; visibility: visible !important; }

.top-bar {
  background: linear-gradient(90deg, var(--site-nav-bg) 0%, #05224a 100%);
  color: #fff;
  font-size: .92rem;
} 
.top-bar .container { max-width: var(--container-max); margin: 0 auto; padding: 6px 14px; display:flex; align-items:center; justify-content:space-between; gap:8px; flex-wrap:nowrap; min-height:34px; }
.top-left, .top-right { display:flex; align-items:center; gap:8px; flex-wrap:nowrap; min-width:0; }
.top-left { flex: 1 1 auto; min-width:0; }
.top-right { flex: 0 0 auto; gap:10px; }
.top-left span { white-space:nowrap; overflow:visible; text-overflow:unset; display:inline-block; font-size:clamp(0.78rem, 1.1vw, 0.9rem); }
.top-left a, .top-right a { color: #fff; text-decoration:none; opacity:.95; font-weight:500; font-size:clamp(0.74rem, 1vw, 0.88rem); white-space:nowrap; overflow:visible; text-overflow:unset; }
.top-left a i, .top-right a i { width:18px; display:inline-block; }

.navbar { 
    background: transparent !important;
    width: 100%;
    position: relative;
    z-index: 9999;
}
.navbar .nav-inner { 
    max-width: var(--container-max); 
    margin: 0 auto; 
    padding: 8px 24px; /* extra right padding to keep nav away from edge */
    display:flex; 
    align-items:center; 
    justify-content:space-between; 
    gap:10px; 
    min-height:70px; /* Increased for big logo */
    background: transparent !important;
}

/* NAVBAR ALIGNMENT FIX - Logo Left, Links Right */
.navbar .nav-inner > .logo { 
    order: 1; 
    margin-right: auto; /* Pushes everything else to right */
}
.navbar .nav-inner > .nav-links { 
    order: 2; 
    margin-left: auto !important; /* FORCES links to far RIGHT */
    margin-right: 0 !important;
}
.navbar .nav-inner > .hamburger { 
    order: 3; 
    margin-left: 15px;
}

.hamburger { z-index: 10001; }
.hamburger span { background: #fff; }

/* =========================================
   BIG LOGO - 170px HEIGHT
========================================= */
.logo img {
    height: 170px !important; /* BIG 170px HEIGHT */
    width: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
    filter: none !important; /* Original colors */
}

/* ================= NAVBAR LOGO SCALE (Increase visibility without changing layout) ================= */
/* Uses transform so navbar height/layout is preserved. Targets only navbar logo inside header. */
.site-header .navbar .logo img {
    transform-origin: center;
    transform: scale(1.45); /* ~45% larger visually without changing layout */
    transition: transform 120ms ease;
    will-change: transform;
    display: block !important;
}

@media (max-width: 1100px) {
    .site-header .navbar .logo img { transform: scale(1.35); }
}
@media (max-width: 880px) {
    .site-header .navbar .logo img { transform: scale(1.15); }
}
@media (max-width: 420px) {
    /* Keep reasonable size on very small screens */
    .site-header .navbar .logo img { transform: scale(1.0); }
}

@media (min-width: 881px) {
    .logo img {
        height: 170px !important; /* BIG 170px HEIGHT */
        width: auto !important;
        max-height: calc(var(--site-header-height) - 10px) !important;
    }
}

@media (max-width: 880px) {
    .logo img {
        height: 140px !important; /* Slightly smaller for tablet */
        width: auto !important;
        max-height: calc(var(--site-header-height) - 10px) !important;
    }
    .navbar .nav-inner { padding-left: 12px; padding-right: 12px; }
}

.logo { 
    display: flex; 
    align-items: center; 
    height: 100%;
    justify-content: center;
}

@media (max-width: 1100px) {
  .logo img { height: 150px !important; }
}

@media (max-width: 420px) {
  .logo img { height: 120px !important; }
}

/* NAV-LINKS - RIGHT ALIGNED WITH PROPER SPACING */
.nav-links { 
    display:flex; 
    gap: 18px; /* Proper spacing between links */
    list-style:none; 
    align-items:center; 
    margin-left: auto !important; /* CRITICAL - pushes to right */
    margin-right: 0 !important; 
    padding-right: 0 !important; 
    flex-wrap:nowrap; 
    justify-content: flex-end; /* Ensures links align right */
}
.nav-links li { white-space:nowrap; }
.nav-links a { 
    color:#fff; 
    text-decoration:none; 
    padding:8px 12px; /* Comfortable padding */
    font-weight:600; 
    border-radius:4px; 
    font-size:0.98rem; 
    transition: background .16s ease, opacity .12s ease; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.8); 
}
.nav-links a:hover, .nav-links a:focus { background: rgba(255,255,255,0.15); opacity: .95; }
.nav-links a.cta { background:var(--blue-primary); color:#fff; padding:7px 12px; }

@media (max-width:420px) {
  .top-bar .container { padding:6px 10px; }
  .top-left span { font-size:0.8rem; }
  .top-left a, .top-right a { font-size:0.78rem; }
  .nav-links a { font-size:0.95rem; }
}

@media (max-width:360px) {
  .top-left span { max-width:22ch; }
}

/* ================= UPDATED HAMBURGER MENU - FIXED ANIMATION ================= */
.hamburger { 
    display:none; 
    background:none; 
    border:0; 
    padding:6px; 
    cursor:pointer; 
    align-items:center; 
    justify-content:center; 
    width:var(--hamburger-size); 
    height:var(--hamburger-size); 
    z-index: 10001;
}
.hamburger span { 
    display:block; 
    width:24px; 
    height:3px; 
    background:#ffffff; 
    margin:4px 0; 
    border-radius:2px; 
    transition: transform 0.3s ease, opacity 0.3s ease; 
}
.hamburger.active span:nth-child(1){ 
    transform: rotate(45deg) translate(5px, 5px); 
}
.hamburger.active span:nth-child(2){ 
    opacity:0; 
}
.hamburger.active span:nth-child(3){ 
    transform: rotate(-45deg) translate(7px, -6px); 
}

.mobile-overlay { position:fixed; left:0; right:0; top:var(--site-header-height); bottom:0; background:rgba(0,0,0,0.45); opacity:0; pointer-events:none; transition:opacity .22s ease; z-index:9998; }
.mobile-overlay.active { opacity:1; pointer-events:auto; }

.nav-links.mobile { position:fixed; left:0; right:0; top:var(--site-header-height); background: linear-gradient(180deg,var(--site-nav-bg) 0%, #05224a 100%); color: #fff; flex-direction:column; align-items:stretch; padding:6px 12px; gap:6px; max-height:calc((var(--vh,1vh) * 100) - var(--site-header-height)); overflow-y:auto; -webkit-overflow-scrolling:touch; transform: translateY(-2%); opacity:0; pointer-events:none; transition:transform .18s ease, opacity .18s ease; z-index:9999; box-shadow:0 8px 28px rgba(11,18,40,0.12); }
.nav-links.mobile.active { transform:translateY(0); opacity:1; pointer-events:auto; }

.nav-links.mobile a { color:#fff; display:block; padding:12px 14px; font-size:1.02rem; border-radius:6px; text-decoration:none; }
.nav-links.mobile a.cta { background: rgba(255,255,255,0.06); color:#fff; }
.nav-links.mobile a:hover { background: rgba(255,255,255,0.04); }

.nav-links.mobile a:focus { outline: 2px solid rgba(255,255,255,0.12); outline-offset: 2px; }

.container { width:100%; padding:0 16px; box-sizing:border-box; }

/* =========================================
   HERO - STARTS FROM TOP
========================================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0 !important;
}

.hero-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-top: calc(var(--site-header-height) + 40px) !important;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: left;
    width: 100%;
}

.hero-content .badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-soft));
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 8px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
    text-align: left;
    border: none;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    text-align: left;
    color: var(--white-main);
}

.hero-content h1 .highlight {
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-soft));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #f0f0f0;
    max-width: 600px;
    text-align: left;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    text-align: center;
    border: 2px solid transparent;
}

.btn.primary {
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-mid));
    color: var(--white-main);
    border: none;
}

.btn.primary:hover {
    background: linear-gradient(90deg, var(--blue-dark), var(--blue-primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 94, 215, 0.3);
}

.btn.outline {
    background: transparent;
    color: var(--white-main);
    border: 2px solid var(--white-main);
}

.btn.outline:hover {
    background: var(--white-main);
    color: var(--blue-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* =========================================
   LOGO STRIP SECTION
========================================= */
.lp-logo-strip {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: -80px auto 24px auto !important; /* Changed from -120px to -80px */
    padding: 60px 0 64px !important;
    box-sizing: border-box !important;
    z-index: 50 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: rgba(255,255,255,0.8) !important;
    line-height: 1.25 !important;
}

.lp-logo-viewport {
    background: linear-gradient(135deg, #0b3c8a 0%, #0f5fc7 100%) !important;
    border-radius: 32px !important;
    padding: 48px 70px !important;
    box-shadow: 
        0 20px 40px rgba(11, 60, 138, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    max-width: 1200px !important;
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    border: 1px solid rgba(255, 255,255, 0.1) !important;
}

.lp-logo-viewport::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  border-radius: 34px;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

.lp-logo-track {
  display: inline-flex !important;
  align-items: center !important;
  gap: 70px !important;
  white-space: nowrap !important;
  animation: lp-scroll 30s linear infinite !important;
  will-change: transform !important;
  padding: 10px 0 !important;
  background: transparent !important;
}

.lp-logo-item {
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

/* ================= BACK TO TOP BUTTON ================= */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(12,12,12,0.88), rgba(28,28,28,0.95));
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.32);
    opacity: 0;
    transform: translateY(12px) scale(.96);
    visibility: hidden;
    transition: opacity .26s cubic-bezier(.2,.9,.3,1), transform .26s cubic-bezier(.2,.9,.3,1), visibility .26s;
    z-index: 11000;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(6px);
}
.back-to-top i { font-size: 18px; pointer-events: none; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.back-to-top:focus { outline: 3px solid rgba(255,255,255,0.12); outline-offset: 3px; }

@media (max-width: 480px) {
    .back-to-top { right: 14px; bottom: 14px; width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top { transition: none; }
    html { scroll-behavior: auto; }
}

/* ================= FORCE PERMANENT FIXED HEADER ================= */
/* Ensure header never moves or hides and content is offset correctly */
.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateY(0) !important;
    /* No transition - instant hide/show per requirement */
    transition: none !important;
    will-change: auto !important;
    z-index: 12000 !important;
}
/* When hidden, move header fully out of view immediately */
.site-header.hidden { transform: translateY(-100%) !important; visibility: visible !important; }

/* Prevent content from sitting under the fixed header */
body {
    padding-top: var(--site-header-height) !important;
    scroll-padding-top: var(--site-header-height) !important;
}

/* Ensure mobile overlay and nav respect header height */
.mobile-overlay { top: var(--site-header-height); }
.nav-links.mobile { top: var(--site-header-height); }

.lp-logo-item img {
  height: 45px !important;
  width: auto !important;
  max-width: 160px !important;
  display: block !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.lp-logo-item:hover img {
  transform: scale(1.08) !important;
  filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) !important;
}

@keyframes lp-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.lp-logo-viewport:hover .lp-logo-track {
  animation-play-state: paused !important;
}

/* =========================================
   ABOUT SECTION
========================================= */
.hero-section {
    padding: 80px 20px !important;
    background: var(--white-main);
    margin-top: -30px !important;
}

.hero-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    z-index: 2;
    animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-circle {
    position: absolute;
    width: 340px;
    height: 340px;
    background: var(--blue-primary);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 3s infinite;
}

.hero-content-2 h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black-main);
    text-align: left;
    font-weight: 600;
}

.hero-content-2 span {
    color: var(--blue-primary);
}

.hero-content-2 p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-medium);
    margin-bottom: 30px;
    text-align: left;
}

.hero-content-2 .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-content-2 .hero-buttons .btn.filled {
    background: var(--blue-primary);
    color: var(--white-main);
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-content-2 .hero-buttons .btn.filled:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 94, 215, 0.3);
}

.hero-content-2 .hero-buttons .btn.outline {
    background: transparent;
    color: var(--blue-primary);
    border: 2px solid var(--blue-primary);
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-content-2 .hero-buttons .btn.outline:hover {
    background: var(--blue-primary);
    color: var(--white-main);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 94, 215, 0.3);
}

/* =========================================
   SIMPLE CONTACT FORM
========================================= */
.simple-contact-section {
    background: url(uploads/contact.png) center/cover no-repeat;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: var(--site-header-height);
}

.simple-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.simple-title {
    color: white;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.simple-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 40px;
    padding: 0 20px;
}

.simple-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.simple-input,
.simple-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    color: #333;
    background: white;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.simple-input::placeholder,
.simple-textarea::placeholder {
    color: #666;
    font-weight: 500;
}

.simple-input:focus,
.simple-textarea:focus {
    outline: none;
    border-color: #1a0b8c;
    box-shadow: 0 0 0 3px rgba(26, 11, 140, 0.1);
}

.simple-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.5;
}

.separator {
    height: 2px;
    background: #1a0b8c;
    margin: 30px 0;
    position: relative;
}

.separator::before {
    content: "---";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: #1a0b8c;
    padding: 0 15px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 3px;
}

.simple-button {
    width: 100%;
    padding: 18px;
    background: #1a0b8c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.simple-button:hover {
    background: #2a1bc2;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 11, 140, 0.3);
}

.simple-button:active {
    transform: translateY(0);
}

/* =========================================
   SERVICES SECTION
========================================= */
.book-idea-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--gray-light);
    padding: 100px 20px;
    flex-direction: column;
    margin-top: var(--site-header-height);
}

.book-content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 50px;
}

.book-text-section {
    flex: 1;
    padding: 30px;
    max-width: 600px;
    min-width: 300px;
    background: var(--white-main);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(11, 94, 215, 0.1);
}

.book-main-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--blue-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
}

.book-description-text {
    font-size: 16px;
    color: var(--gray-medium);
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: left;
}

.book-sub-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--blue-primary);
    text-align: left;
}

.book-benefits-ul {
    list-style: none;
    margin-bottom: 30px;
}

.book-benefit-item {
    font-size: 16px;
    color: var(--black-main);
    margin-bottom: 10px;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
    text-align: left;
}

.book-benefit-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-weight: bold;
    font-size: 18px;
}

.book-action-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.book-start-btn {
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    color: var(--white-main);
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    background-color: var(--blue-dark);
}

.book-start-btn:hover {
    background-color: var(--blue-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(11, 94, 215, 0.3);
}

.book-covers-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 500px;
    min-width: 300px;
}

.book-covers-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cover-item-wrapper {
    position: relative;
    transition: all 0.4s ease;
}

.cover-img {
    width: 140px;
    height: 210px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cover-shadow-effect {
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 20px;
    background: rgba(11, 94, 215, 0.1);
    border-radius: 50%;
    filter: blur(10px);
    z-index: 1;
    transition: all 0.4s ease;
}

.cover-item-wrapper:hover {
    transform: translateY(-10px);
}

.cover-item-wrapper:hover .cover-img {
    box-shadow: 0 15px 30px rgba(11, 94, 215, 0.25);
    transform: scale(1.05);
}

.cover-item-wrapper:hover .cover-shadow-effect {
    transform: scale(0.9);
    opacity: 0.7;
    background: rgba(11, 94, 215, 0.2);
}

/* =========================================
   COMPREHENSIVE SERVICES SECTION
========================================= */
.comprehensive-services-section {
    padding: 80px 20px;
    background: #ffffff;
    width: 100%;
    font-family: 'Arial', sans-serif;
}

.comprehensive-services-section .services-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.comprehensive-services-section .services-main-title {
    font-size: 2.8rem;
    color: var(--black-main);
    margin-bottom: 20px;
    text-align: left;
    font-weight: 800;
    line-height: 1.3;
}

.comprehensive-services-section .services-intro {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 40px;
    text-align: left;
    max-width: 100%;
    line-height: 1.6;
}

.comprehensive-services-section .services-table-wrapper {
    width: 100%;
    margin-bottom: 50px;
}

.comprehensive-services-section .services-table {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1px;
    background: #e0e0e0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.comprehensive-services-section .table-item {
    background: white;
    padding: 20px 12px;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: normal;
}

.comprehensive-services-section .table-item:hover {
    background: #f0f7ff;
    color: var(--blue-primary);
}

.comprehensive-services-section .table-item.active {
    background: var(--blue-primary);
    color: white;
}

.comprehensive-services-section .services-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.comprehensive-services-section .services-subtitle {
    font-size: 2rem;
    color: var(--black-main);
    margin-bottom: 0;
    font-weight: 700;
    text-align: left;
}

.comprehensive-services-section .services-description {
    font-size: 1.1rem;
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 0;
    text-align: left;
}

.comprehensive-services-section .services-action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.comprehensive-services-section .read-more-btn,
.comprehensive-services-section .get-started-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
}

.comprehensive-services-section .read-more-btn {
    background: transparent;
    color: var(--blue-primary);
    border-color: var(--blue-primary);
}

.comprehensive-services-section .read-more-btn:hover {
    background: var(--blue-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(11, 94, 215, 0.2);
}

.comprehensive-services-section .get-started-btn {
    background: var(--blue-primary);
    color: white;
    border-color: var(--blue-primary);
}

.comprehensive-services-section .get-started-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(11, 94, 215, 0.3);
}

/* =========================================
   PROFESSIONAL EDITING SECTION
========================================= */
.professional-editing-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: var(--site-header-height);
}

.editing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.editing-content-side {
    flex: 1;
}

.editing-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.editing-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--blue-primary);
    border-radius: 2px;
}

.features-list {
    margin-bottom: 40px;
}

.feature-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.point-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--blue-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    margin-top: 2px;
}

.point-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.cta-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--blue-primary);
}

.cta-heading {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 600;
}

.button-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.start-action-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 180px;
    background: var(--blue-primary);
    color: white;
}

.start-action-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(11, 94, 215, 0.3);
}

.editing-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.editing-main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--blue-primary);
    border-radius: 15px;
    z-index: 1;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.editing-main-image:hover {
    transform: scale(1.02);
}

.editing-main-image:hover + .image-frame {
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    opacity: 0.5;
}

/* =========================================
   AGENCY SECTION
========================================= */
.agency-section {
    padding: 100px 20px;
    background: #f8f9fa;
    position: relative;
    margin-top: var(--site-header-height);
}

.agency-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.agency-image-box {
    flex: 1;
    position: relative;
}

.agency-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.agency-frame {
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    border: 3px solid var(--blue-primary);
    border-radius: 20px;
    opacity: 0.3;
    transition: all 0.5s ease;
}

.agency-main-img:hover {
    transform: translateY(-10px);
}

.agency-main-img:hover + .agency-frame {
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    opacity: 0.5;
}

.agency-content-box {
    flex: 1;
}

.agency-title {
    font-size: 3.2rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
    position: relative;
    padding-bottom: 20px;
}

.agency-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 5px;
    background: var(--blue-primary);
    border-radius: 3px;
}

.agency-features {
    margin-bottom: 40px;
}

.agency-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-text {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.agency-cta-btn {
    padding: 18px 45px;
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--blue-dark);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.agency-cta-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(11, 94, 215, 0.3);
}

/* =========================================
   PORTFOLIO CAROUSEL
========================================= */
:root{--pzpf-gap:24px;--pzpf-transition:0.5s;--pzpf-nav-size:56px}
.pzpf-wrap {
    background: url(uploads/contact.jpg) center/cover no-repeat;
    padding: 80px 18px;
    color: var(--white-main);
    overflow: hidden;
    position: relative;
    margin-top: var(--site-header-height);
}

.pzpf-header {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-bottom: 40px;
}

.pzpf-header h2 {
    font-size: 34px;
    margin-bottom: 8px;
    color: var(--white-main);
}

.pzpf-header p {
    font-size: 15px;
    color: rgba(255,255,255,0.92);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.pzpf-carousel[data-carousel] {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.pzpf-track-wrap { overflow: hidden; width: 100%; }
.pzpf-track {
    display: flex;
    gap: var(--pzpf-gap);
    transition: transform var(--pzpf-transition) cubic-bezier(.22,.9,.3,1);
    will-change: transform;
    align-items: stretch;
    padding: 6px 0;
}

.pzpf-item {
    flex: 0 0 90%;
    max-width: 90%;
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 10px;
    transition: transform 0.28s ease;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: stretch;
}

@media (min-width:600px){ .pzpf-item{ flex:0 0 calc(50% - (var(--pzpf-gap) + 1px)/2); max-width:calc(50% - (var(--pzpf-gap) + 1px)/2); } }
@media (min-width:900px){ .pzpf-item{ flex:0 0 calc(33.333% - (var(--pzpf-gap) * 2 / 3)); max-width:calc(33.333% - (var(--pzpf-gap) * 2 / 3)); } }
@media (min-width:1200px){ .pzpf-item{ flex:0 0 calc(25% - (var(--pzpf-gap) / 1.33)); max-width:calc(25% - (var(--pzpf-gap) / 1.33)); } }

.pzpf-item:hover{ transform: translateY(-8px) scale(1.01); box-shadow: 0 10px 24px rgba(0,0,0,0.35); }

.pzpf-item img{
    width:100%;
    height:auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius:8px;
    display:block;
}

.pzpf-nav{
    background: rgba(255,255,255,0.95);
    width: var(--pzpf-nav-size);
    height: var(--pzpf-nav-size);
    border-radius: 50%;
    display:grid;place-items:center;
    position:absolute;top:50%;transform:translateY(-50%);
    z-index:60;
    border:none;cursor:pointer;pointer-events:auto;
    box-shadow:0 8px 30px rgba(12,60,120,0.12);
    transition:transform .18s ease, box-shadow .18s ease;
}
.pzpf-nav:focus{outline:3px solid rgba(11,94,215,0.15);}
.pzpf-nav:hover{ transform:translateY(-50%) scale(1.06); box-shadow:0 12px 44px rgba(12,60,120,0.18); }
.pzpf-prev{ left: 12px; }
.pzpf-next{ right: 12px; }

@media (max-width:420px){ .pzpf-nav{ width:44px;height:44px } .pzpf-item{ flex:0 0 86%; max-width:86% } }

.pzpf-track.is-animating{ pointer-events:none }
.pzpf-carousel .sr-only{ position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap;border:0;padding:0;margin:-1px }

/* =========================================
   PROCESS STEPS
========================================= */
.ftz-steps-wrap {
    padding: 100px 20px;
    background: var(--white-main);
    text-align: center;
    margin-top: var(--site-header-height);
}

.ftz-steps-head {
    max-width: 900px;
    margin: auto;
    margin-bottom: 60px;
}

.ftz-steps-head h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--black-main);
}

.ftz-steps-head h2 span {
    color: var(--blue-primary);
}

.ftz-steps-head p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-medium);
    max-width: 800px;
    margin: 0 auto;
}

.ftz-timeline {
    margin: 60px auto 50px;
    max-width: 1000px;
    height: 6px;
    background: linear-gradient(to right, var(--blue-primary), var(--blue-mid), var(--blue-dark), #000000);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 3px;
}

.ftz-dot {
    width: 36px;
    height: 36px;
    background: var(--blue-primary);
    color: var(--white-main);
    font-weight: 700;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    box-shadow: 0 6px 18px rgba(11, 94, 215, 0.25);
    border: 3px solid var(--white-main);
}

.ftz-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: auto;
}

.ftz-step-card {
    background: var(--white-main);
    border-radius: 14px;
    padding: 32px 22px;
    transition: all 0.35s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(11, 94, 215, 0.1);
}

.ftz-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(11, 94, 215, 0.15);
    border-color: var(--blue-primary);
}

.ftz-icon {
    width: 58px;
    height: 58px;
    background: var(--blue-primary);
    color: var(--white-main);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 26px;
    margin: 0 auto 18px;
}

.ftz-step-card h3 {
    font-size: 20px;
    color: var(--blue-primary);
    margin-bottom: 10px;
}

.ftz-step-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-medium);
}

/* =========================================
   FAQ SECTION
========================================= */
.nx-faq-wrapper {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 20px;
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-dark) 100%);
    padding: 40px;
    border-radius: 20px;
    margin-top: var(--site-header-height);
}

.nx-faq-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--white-main);
    margin-bottom: 12px;
}

.nx-faq-intro {
    text-align: center;
    color: rgba(255,255,255,0.92);
    max-width: 780px;
    margin: 0 auto 26px auto;
    font-size: 16px;
}

.nx-faq-list { max-width: 920px; margin: 0 auto; }

.nx-faq-item {
    margin-bottom: 18px;
    border-radius: 10px;
    overflow: hidden;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nx-faq-question {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-main);
    font-size: 18px;
    font-weight: 600;
    padding: 18px 22px;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s ease;
    text-align: left;
}

.nx-faq-question:hover {
    background: rgba(255, 255, 255, 0.2);
}

.nx-faq-icon {
    font-size: 26px;
    transition: transform 0.35s ease, color 0.25s ease;
    display: inline-block;
    transform-origin: center center;
}

.nx-faq-question:focus { outline: 3px solid rgba(255,255,255,0.08); border-radius: 8px; }

.nx-faq-answer {
    height: 0;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: height 0.36s cubic-bezier(.22,.9,.3,1), opacity 0.25s ease;
    opacity: 0;
    will-change: height, opacity;
}

.nx-faq-item.active .nx-faq-answer { opacity: 1; }
.nx-faq-item.active .nx-faq-icon { transform: rotate(45deg); }

.nx-faq-answer p {
    padding: 22px;
    font-size: 16px;
    line-height: 1.7;
}

/* =========================================
   TESTIMONIALS
========================================= */
.nx-testimonial-wrap {
    padding: 100px 20px;
    background: var(--gray-light);
    text-align: center;
    margin-top: var(--site-header-height);
}

.nx-testimonial-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--black-main);
    margin-bottom: 20px;
}

.nx-testimonial-heading span {
    color: var(--blue-primary);
}

.nx-testimonial-subtext {
    max-width: 700px;
    margin: 12px auto 50px;
    color: var(--gray-medium);
    font-size: 16px;
    line-height: 1.6;
}

.nx-testimonial-slider {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 0 50px;
}

.nx-slider-viewport {
    overflow: hidden;
    border-radius: 20px;
}

.nx-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s ease;
    padding: 10px;
}

.nx-test-card {
    flex: 0 0 calc(33.333% - 16px);
    background: var(--white-main);
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: 0 12px 30px rgba(11, 94, 215, 0.1);
    position: relative;
    border: 2px solid transparent;
    min-width: 300px;
}

.nx-test-card:hover {
    border-color: var(--blue-primary);
    transform: translateY(-5px);
}

.nx-quote {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 60px;
    color: var(--blue-primary);
    opacity: 0.3;
}

.nx-test-card h4 {
    color: var(--blue-primary);
    font-size: 20px;
    margin-bottom: 10px;
}

.nx-stars {
    color: #FFD700;
    margin: 10px 0;
    font-size: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.nx-test-card p {
    font-size: 15px;
    color: var(--gray-medium);
    line-height: 1.6;
    font-style: italic;
}

.nx-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--blue-primary);
    color: var(--white-main);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 40;
    pointer-events: auto;
}

@media (min-width:900px){ .nx-slide-btn{ width:50px;height:50px } }
.nx-slide-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-50%) scale(1.1);
}

.nx-prev {
    left: 0;
}

.nx-next {
    right: 0;
}

/* =========================================
   FOOTER (cleaned, syntax-correct)
   - Fixed parsing errors
   - Emergency vertical compression (~50%) using !important
========================================= */
.book-footer {
    background: linear-gradient(135deg, #0a1a2f 0%, #0f2547 50%, #081321 100%);
    color: #ffffff;
    padding: 6px 0 4px !important; /* final aggressive vertical compression */
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    position: relative;
    min-height: 0 !important;
    margin-top: var(--site-header-height);
}

.book-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #0b5ed7, #3da9fc);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px !important;
}

.footer-grid {
    display: grid !important;
    /* brand on left, four equal columns for the other sections */
    grid-template-columns: 1fr repeat(4, minmax(140px, 1fr)) !important;
    gap: 4px 14px !important; /* tighter to reduce vertical space */
    align-items: start;
    margin-bottom: 2px !important;
}

.footer-column {
    display: block !important;
    float: none !important;
    padding: 4px 6px !important; /* reduce vertical padding for compactness */
    box-sizing: border-box;
    min-width: 0;
}

.footer-column > * { margin: 0; }
.footer-column p { margin-top: 4px !important; margin-bottom: 4px !important; }

.footer-links { margin-top: 4px !important; }
.footer-links li { list-style: none; margin-bottom: 4px !important; }
.footer-links a.footer-link { display: block; padding: 2px 0 !important; line-height: 1.2 !important; }

.footer-column.footer-brand .footer-logo-img { max-width: 140px; display:block; margin-bottom: 4px !important; }
.footer-column.footer-brand .footer-description { margin-top: 4px !important; line-height: 1.2 !important; }

/* Move the four non-brand columns down and increase their fonts
   - Targets only columns that are NOT the brand column
   - Headings +40% (~18px -> 25px), links/contact +30% (~15px -> 20px)
*/
.footer-grid > .footer-column:not(.footer-brand) {
    padding-top: 28px !important; /* move down 20-40px */
    padding-bottom: 4px !important;
}

.footer-grid > .footer-column:not(.footer-brand) .footer-heading {
    font-size: 25px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
}

.footer-grid > .footer-column:not(.footer-brand) .footer-link {
    font-size: 20px !important;
    line-height: 1.3 !important;
}

.footer-grid > .footer-column:not(.footer-brand) .contact-item a,
.footer-grid > .footer-column:not(.footer-brand) .contact-item span {
    font-size: 20px !important;
    line-height: 1.3 !important;
}

.footer-grid > .footer-column:not(.footer-brand) .footer-links li { margin-bottom: 6px !important; }

.contact-item i { width: 20px; text-align: center; }

.footer-container { width: 100%; }

.footer-brand { max-width: 100%; }

.footer-logo-img { max-width: 140px; margin-bottom: 4px !important; }

.footer-description {
    font-size: 15px !important; /* increased paragraph size */
    line-height: 1.25 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    margin: 0 !important;
    text-align: left;
}

.footer-heading {
    font-size: 18px !important; /* larger headings */
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    position: relative;
    text-align: left;
    min-height: 0 !important;
    display: block !important;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 26px;
    height: 2px;
    background: #0b5ed7;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 4px !important; }

.footer-link {
    font-size: 15px !important; /* larger links */
    color: rgba(255, 255, 255, 0.95) !important;
    text-decoration: none !important;
    display: block !important;
    transition: color 0.14s ease !important;
    text-align: left !important;
    line-height: 1.25 !important;
}

.footer-link:hover { color: #3da9fc; transform: translateX(2px); }

.contact-item { display: flex !important; gap: 8px !important; margin-bottom: 4px !important; align-items: center !important; text-align: left !important; }

.contact-item i { font-size: 16px !important; color: #3da9fc !important; margin-top: 0 !important; flex-shrink: 0 !important; line-height: 1 !important; }

.contact-item a, .contact-item span { font-size: 15px !important; line-height: 1.25 !important; color: rgba(255,255,255,0.9) !important; text-decoration: none !important; }

.contact-item a:hover { color: #3da9fc !important; }

/* Make the email link slightly smaller only (prevents wrapping) */
.footer-column .contact-item > a {
    font-size: 13px !important;
}

/* Accessible visually-hidden helper for screen readers */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Ensure the contact icon link shows only the icon and remains centered */
.footer-column .contact-item > .contact-mail {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 0 !important;
    color: inherit !important;
}

.footer-column .contact-item > .contact-mail i { font-size: 18px !important; }

.footer-social { display: flex !important; gap: 6px !important; margin-top: 6px !important; align-items: center !important; }

.footer-social a {
    width: 30px; height: 30px; background: rgba(255,255,255,0.08); color: #ffffff; border-radius: 50%; display:flex; align-items:center; justify-content:center; font-size:13px; transition: all 0.18s ease; border: 1px solid rgba(255,255,255,0.12);
}

.footer-social a:hover { background: #0b5ed7; transform: translateY(-2px); border-color: #0b5ed7; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    margin-top: 8px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
    text-align: center;
}

.footer-bottom p { font-size: 12px !important; color: rgba(255,255,255,0.6) !important; margin: 0; line-height: 1.2 !important; }

/* =========================================
   Footer Typography — professional stack
   - Modern sans-serif stack, clear weights, spacing and smoothing
   - Targets footer elements only and keeps structural layout rules intact
========================================= */
.book-footer,
.footer-container,
.footer-column,
.footer-bottom {
    font-family: Inter, "Segoe UI", "SF Pro Display", "Helvetica Neue", Arial, sans-serif !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    color: rgba(255,255,255,0.95) !important;
}

.footer-heading {
    font-family: Inter, "Segoe UI", "SF Pro Display", "Helvetica Neue", Arial, sans-serif !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
    letter-spacing: 0.2px !important;
    color: rgba(255,255,255,0.98) !important;
}

.footer-description,
.footer-link,
.contact-item a,
.contact-item span,
.footer-bottom p {
    font-family: Inter, "Segoe UI", "SF Pro Display", "Helvetica Neue", Arial, sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
    letter-spacing: 0 !important;
    color: rgba(255,255,255,0.92) !important;
}

.footer-link {
    font-weight: 500 !important;
    text-decoration: none !important;
    color: rgba(255,255,255,0.95) !important;
}

.footer-social a { font-size: 14px !important; }
.footer-link:hover { color: #bfe6ff !important; }

/* Responsive footer grid adjustments */
@media (max-width: 1200px) { .footer-grid { gap: 12px !important; } }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 12px !important; } .footer-column { padding-left: 6px; padding-right: 6px; } }

.pzpf-wrap#portfolio,
.portfolio-section,
.pzpf-wrap[ id="portfolio" ] {
    /* Contained theme-matching blue background (darker than primary) */
    background: linear-gradient(180deg, #0a4fb3 0%, #083a8a 100%) !important; /* primary-darker -> deep blue */
    color: #eef7ff !important;
    padding: 56px 18px !important; /* section-limited padding */
    box-sizing: border-box !important;
    background-clip: padding-box !important;
}

/* Ensure internal track/rows remain transparent and content sits on the section background only */
.pzpf-wrap#portfolio .pzpf-track-wrap,
.pzpf-wrap#portfolio .pzpf-track,
.pzpf-wrap#portfolio .pzpf-item {
    background: transparent !important;
}

@media (max-width: 768px) {
    .pzpf-wrap#portfolio,
    .portfolio-section,
    .pzpf-wrap[ id="portfolio" ] {
        padding: 36px 14px !important;
    }
}

/* Ensure portfolio headings and paragraphs are centered and larger */
.pzpf-wrap#portfolio .pzpf-header,
.pzpf-wrap#portfolio .pzpf-header h2,
.pzpf-wrap#portfolio .pzpf-header p,
.pzpf-wrap#portfolio p {
    text-align: center !important;
}

.pzpf-wrap#portfolio .pzpf-header h2 {
    font-size: 2.5rem !important; /* ~40px */
    font-weight: 700 !important;
    line-height: 1.15 !important;
    margin: 0 0 12px 0 !important;
}

.pzpf-wrap#portfolio .pzpf-header p,
.pzpf-wrap#portfolio p {
    font-size: 1.2rem !important; /* ~19px */
    line-height: 1.6 !important;
    max-width: 960px !important;
    margin: 0 auto 14px auto !important;
}

@media (max-width: 768px) {
    .pzpf-wrap#portfolio .pzpf-header h2 { font-size: 1.6rem !important; }
    .pzpf-wrap#portfolio .pzpf-header p { font-size: 1rem !important; }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #0b5ed7;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: none;
    cursor: pointer;
    z-index: 1000;
    opacity: 0.9;
    transition: all 0.2s ease;
}

.back-to-top:hover {
    background: #3da9fc;
    transform: translateY(-3px);
    opacity: 1;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
========================================= */

/* Desktop (min-width: 881px) */
@media (min-width: 881px) {
    .nav-links { display:flex !important; }
    .nav-links.mobile { display:none !important; }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .comprehensive-services-section .services-table {
        grid-template-columns: repeat(9, 1fr);
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .comprehensive-services-section .services-table {
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: auto auto;
    }
    
    .comprehensive-services-section .services-main-title {
        font-size: 2.4rem;
    }
    
    .comprehensive-services-section .services-main-content {
        padding: 25px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* HERO - mobile/tablet: reduce empty space, tighten padding, stack buttons */
    .hero {
        min-height: auto;
        padding: 24px 12px !important;
    }

    .hero-container {
        padding: 18px 12px !important;
        max-width: 980px;
    }

    .hero-content h1 {
        font-size: 2rem; /* ~32px */
        text-align: center;
        line-height: 1.12;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 1rem; /* ~16px */
        text-align: center;
        max-width: 100%;
        margin-bottom: 12px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-buttons .btn { width: 100%; max-width: 360px; }

    /* LOGO STRIP - mobile/tablet: scale logos, reduce padding and slow animation */
    .lp-logo-strip {
        padding: 60px 12px 36px !important;
        margin-top: -50px !important;
    }

    .lp-logo-viewport { padding: 18px 20px !important; border-radius: 20px !important; }

    .lp-logo-track { gap: 28px !important; animation: lp-scroll 30s linear infinite !important; }

    .lp-logo-item img { height: 35px !important; max-width: 120px !important; width: auto !important; }
    
    .comprehensive-services-section {
        padding: 60px 15px;
    }
    
    .comprehensive-services-section .services-table {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, auto);
    }
    
    .comprehensive-services-section .table-item {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .comprehensive-services-section .services-main-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .comprehensive-services-section .services-intro {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .comprehensive-services-section .services-subtitle {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .comprehensive-services-section .services-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .comprehensive-services-section .services-action-buttons {
        justify-content: center;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content-2 h2,
    .hero-content-2 p {
        text-align: center;
    }
    
    .hero-content-2 .hero-buttons {
        justify-content: center;
    }
    
    .book-content-container {
        flex-direction: column;
    }
    
    .ftz-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-links { display:none; }
    .nav-links.mobile { display:flex; }
    .hamburger { display:flex; }
    .top-bar .container { padding:8px 12px; }
    .navbar .nav-inner { padding:8px 12px; }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-overlay,
    .nav-links.mobile {
        top: var(--site-header-height) !important;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
    }
    
    .hero-container {
        padding: 20px 16px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .lp-logo-strip {
        padding: 270px 12px 48px !important;
        margin-top: -50px !important;
    }
    
    .lp-logo-viewport {
        padding: 20px 25px !important;
        border-radius: 20px !important;
    }
    
    .lp-logo-track {
        gap: 40px !important;
        animation: lp-scroll 20s linear infinite !important;
    }
    
    .lp-logo-item img {
        height: 30px !important;
        max-width: 100px !important;
    }
    
    .comprehensive-services-section .services-table {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, auto);
    }
    
    .comprehensive-services-section .table-item {
        padding: 10px 6px;
        font-size: 0.85rem;
    }
    
    .comprehensive-services-section .services-main-title {
        font-size: 1.8rem;
    }
    
    .comprehensive-services-section .services-intro {
        font-size: 1rem;
    }
    
    .comprehensive-services-section .read-more-btn,
    .comprehensive-services-section .get-started-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ftz-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .nx-test-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Z-INDEX MANAGEMENT
========================================= */
.site-header { z-index: 10000; }
.navbar { z-index: 9999; }
.hero { z-index: 1; }
.hero-backgrounds { z-index: -1; }
.hero-container { z-index: 2; }
.hero-content { z-index: 3; }
.mobile-overlay { z-index: 9998; }
.nav-links.mobile { z-index: 9999; }

/* Remove conflicting styles */
.hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Fix body padding */
body {
    padding-top: 0 !important;
}

/* Ensure no duplicate hero background in navbar */
.navbar,
.navbar .nav-inner {
    background: transparent !important;
    background-image: none !important;
}

/* =========================================
   Exact Book Services Section - Blue Theme
========================================= */
.exact-book-services {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.exact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.exact-header {
    text-align: center;
    margin-bottom: 40px;
}

.exact-main-title {
    color: #1e3a8a; /* Dark Blue */
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.exact-subtitle {
    color: #4b5563; /* Gray-Blue */
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.exact-services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.exact-service-btn {
    padding: 12px 24px;
    background-color: #f0f9ff; /* Light Blue */
    border: 1px solid #bae6fd; /* Light Blue Border */
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    color: #0369a1; /* Medium Blue */
    cursor: pointer;
    transition: all 0.3s ease;
}

.exact-service-btn:hover {
    background-color: #e0f2fe; /* Slightly Darker Light Blue */
}

.exact-service-btn.active {
    background-color: #1d4ed8; /* Primary Blue */
    color: #ffffff;
    border-color: #1d4ed8;
}

.exact-content-area {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.exact-image-side {
    flex: 1;
    min-width: 300px;
}

.exact-image-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid #dbeafe; /* Light Blue Border */
}

.exact-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.exact-main-image.active {
    opacity: 1;
}

.exact-text-side {
    flex: 1;
    min-width: 300px;
}

.exact-content-wrapper {
    position: relative;
}

.exact-service-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.exact-service-content.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.exact-service-content h2 {
    color: #1e3a8a; /* Dark Blue */
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.exact-service-content p {
    color: #4b5563; /* Gray-Blue */
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.exact-buttons {
    display: flex;
    gap: 15px;
}

.exact-btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.exact-read-more {
    background-color: #ffffff;
    color: #2563eb; /* Blue Text */
    border: 2px solid #2563eb; /* Blue Border */
}

.exact-read-more:hover {
    background-color: #dbeafe; /* Light Blue */
}

.exact-get-started {
    background-color: #2563eb; /* Blue */
    color: #ffffff;
    border: 2px solid #2563eb;
}

.exact-get-started:hover {
    background-color: #1d4ed8; /* Darker Blue */
    border-color: #1d4ed8;
}

/* Responsive Design for Exact Book Services */
@media (max-width: 1024px) {
    .exact-content-area {
        flex-direction: column;
        gap: 30px;
    }
    
    .exact-image-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .exact-main-title {
        font-size: 28px;
    }
    
    .exact-subtitle {
        font-size: 16px;
    }
    
    .exact-service-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .exact-service-content h2 {
        font-size: 24px;
    }
    
    .exact-service-content p {
        font-size: 16px;
    }
    
    .exact-buttons {
        flex-direction: column;
    }
    
    .exact-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .exact-book-services {
        padding: 40px 15px;
    }
    
    .exact-main-title {
        font-size: 24px;
    }
    
    .exact-services-row {
        gap: 8px;
    }
    
    .exact-service-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .exact-image-wrapper {
        height: 250px;
    }
}

/* ==========================
     Global Responsive Helpers
     - Fluid type, image scaling, touch-targets, grids
========================== */
:root {
    --fluid-min: 14px;
    --fluid-max: 18px;
}

html { font-size: 16px; }

h1 { font-size: clamp(1.6rem, 2.4rem + 1vw, 3rem); }
h2 { font-size: clamp(1.25rem, 1.6rem + 0.8vw, 2rem); }
p, li { font-size: clamp(var(--fluid-min), 1rem + 0.2vw, var(--fluid-max)); }

img, picture, video { max-width: 100%; height: auto; display: block; }

/* Touch targets */
.nav-links a, .btn, .btn.primary, .btn.outline { min-height: 44px; }

/* Ensure logo strip images scale down on small screens */
.lp-logo-item img { height: auto; max-width: 140px; width: auto; }

/* Footer: stack columns on small screens and prevent overflow */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr !important; gap: 12px !important; }
    .footer-column { padding: 12px 8px !important; }
    .footer-container { padding: 12px !important; }
    .footer-column.footer-brand .footer-logo-img { max-width: 120px; }
    .footer-links a.footer-link { padding: 8px 0 !important; }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr repeat(2, minmax(160px, 1fr)); }
    .lp-logo-strip { padding-top: 90px !important; }
}

/* Mobile menu behavior: ensure hamburger shows and desktop nav hides */
@media (max-width: 768px) {
    .nav-links { display: none !important; }
    .nav-links.mobile { display: flex !important; }
    .hamburger { display: flex !important; }
    .navbar .nav-inner { padding-left: 12px !important; padding-right: 12px !important; }
}

/* Desktop: ensure nav-links sit at far right and wrap sensibly */
@media (min-width: 881px) {
    .nav-links { display:flex !important; margin-left:auto !important; justify-content:flex-end; gap:15px; }
    .nav-links a { padding: 8px 12px; }
}

/* Prevent horizontal overflow globally */
body, html { overflow-x: hidden; }

/* Hide top-bar on tablet and mobile per request */
@media (max-width: 880px) {
    .top-bar { display: none !important; }
}

/* User-requested mobile fixes: hero spacing and logo strip placement */
@media (max-width: 768px) {
    /* HERO FIX */
    .hero-container {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .hero-content h1 {
        font-size: 32px !important;
        margin-bottom: 15px !important;
    }

    .hero-content p {
        font-size: 18px !important;
        margin-bottom: 20px !important;
    }

    .hero-buttons {
        gap: 10px !important;
    }

    /* LOGO STRIP UPWARD MOVE */
    .lp-logo-strip {
        margin-top: -100px !important;
        padding-top: 30px !important;
        padding-bottom: 40px !important;
    }

    .lp-logo-item img {
        height: 30px !important;
    }
}

/* Professional Editing Section - mobile centering */
@media (max-width: 768px) {
    .professional-editing-section { text-align: center !important; }

    .editing-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 18px 12px !important;
    }

    .editing-image-side, .editing-content-side { width: 100% !important; }

    .editing-title,
    .point-text,
    .cta-heading,
    .features-list {
        text-align: center !important;
    }

    .editing-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .feature-point { justify-content: center !important; text-align: center !important; }

    .start-action-btn {
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        max-width: 360px !important;
    }

    .image-container { display: flex !important; justify-content: center !important; width: 100% !important; }

    .editing-main-image { max-width: 100% !important; height: auto !important; object-fit: cover !important; }
}

/* Ensure the right-side floating hero image is fully hidden on mobile */
@media (max-width: 768px) {
    .right-side-bg,
    .hero-backgrounds > .right-side-bg,
    div[class*="right-side"] {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        position: absolute !important;
        z-index: -1000 !important;
        pointer-events: none !important;
    }

    /* Additional generic fallbacks to catch variants */
    [class*="right"][class*="bg"] { display: none !important; }
}

/* Hide second/floating hero image on mobile only */
@media (max-width: 768px) {
    .hero-image { display: none !important; }
}