/* Universal Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}

:root {
    --primary-color: #0052DA;
    --secondary-color: #fff;
    --background-color: #F8F9FA;
    --text-color: #253041;
    --muted-text: #5f6c7b;
    --surface-color: #ffffff;
    --hero-shadow: 0 24px 60px rgba(10, 24, 43, 0.18);
    --transition: 0.35s ease;
    --container-width: 1240px;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

a,
button {
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

/* TopBar Styles */
.topbar {
    background-color: var(--text-color);
    color: var(--secondary-color);
    padding: 18px 40px;
}

.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-left,
.topbar-right span {
    display: inline-flex;
    align-items: center;
}

.topbar-left i{
    font-size: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

.topbar-left span {
    font-size: 18px;
}

.topbar-right{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.topbar-right span {
    font-size: 18px;
}

.topbar-right span i {
    font-size: 20px;
    margin-right: 10px;
    color: var(--primary-color);
}

/* Header Styles */
header {
    background-color: rgba(248, 249, 250, 0.96);
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(22, 34, 51, 0.06);
    transition:
        padding 0.35s ease,
        background-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 24px;
}

.logo img {
    width: 170px;
    transition: width 0.35s ease, transform 0.35s ease;
}

.navbar {
    flex: 1;
}

.navbar > ul {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.navbar > ul > li {
    list-style: none;
    position: relative;
}

.navbar > ul > li > a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

.navbar > ul > li > a.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 18px;
    border-radius: 50px;
}

.navbar > ul > li > a.active:hover,
.navbar > ul > li > a.active:focus-visible {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.navbar > ul > li > a:not(.active):hover {
    color: var(--primary-color);
}

.nav-dropdown__trigger {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown__link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
    position: relative;
}

.nav-dropdown__link:hover {
    color: var(--primary-color);
}

.nav-dropdown__toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    background: linear-gradient(180deg, rgba(0, 82, 218, 0.1), rgba(0, 82, 218, 0.04));
    box-shadow: inset 0 0 0 1px rgba(0, 82, 218, 0.08);
}

.nav-dropdown__toggle i {
    font-size: 0.82rem;
    transition: transform 0.3s ease;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    min-width: 290px;
    display: grid;
    gap: 0;
    padding: 14px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.98));
    box-shadow: 0 24px 56px rgba(19, 34, 54, 0.16);
    transform: translate(-50%, 16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.28s ease,
        transform 0.28s ease,
        visibility 0.28s ease;
    z-index: 20;
}

.nav-dropdown__menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: -4px -4px 14px rgba(19, 34, 54, 0.04);
}

.nav-dropdown__menu li {
    width: 100%;
    list-style: none;
}

.nav-dropdown__menu a {
    display: block;
    width: 100%;
    padding: 18px 16px;
    text-decoration: none;
    color: #1453a5;
    border-bottom: 1px solid rgba(37, 48, 65, 0.08);
}

.nav-dropdown__menu a strong {
    font-size: 1rem;
    font-weight: 500;
    color: inherit;
    display: block;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
    background: rgba(20, 83, 165, 0.05);
    color: var(--primary-color);
}

.nav-dropdown__menu li:last-child a {
    border-bottom: none;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-dropdown__toggle i,
.nav-dropdown:focus-within .nav-dropdown__toggle i,
.nav-dropdown.is-open .nav-dropdown__toggle i {
    transform: rotate(180deg);
}

.nav-dropdown:hover .nav-dropdown__toggle,
.nav-dropdown:focus-within .nav-dropdown__toggle,
.nav-dropdown.is-open .nav-dropdown__toggle {
    color: var(--primary-color);
    background: linear-gradient(180deg, rgba(0, 82, 218, 0.16), rgba(0, 82, 218, 0.08));
}

.nav-dropdown.is-current .nav-dropdown__link {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 10px 18px;
    border-radius: 50px;
}

.nav-dropdown.is-current .nav-dropdown__link:hover,
.nav-dropdown.is-current .nav-dropdown__link:focus-visible {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.nav-dropdown.is-current .nav-dropdown__toggle {
    background: linear-gradient(180deg, rgba(0, 82, 218, 0.18), rgba(0, 82, 218, 0.08));
    color: var(--primary-color);
}

.nav-button{
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 12px 25px rgba(0, 82, 218, 0.22);
}

.nav-button a{
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.nav-button:hover {
    background-color: var(--text-color);
}

header.scrolled {
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 38px rgba(22, 34, 51, 0.12);
}

header.scrolled .logo img {
    width: 154px;
}

/* Page Banner Styles */
.page-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 440px;
    padding: 72px 20px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    isolation: isolate;
}

.page-banner--about {
    background-image: url("../img/banner.jpg");
}

.page-banner--gallery {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
        url("../img/carousel-2.jpg");
}

.page-banner--contact {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        url("../img/banner.jpg");
}

.page-banner__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 82, 218, 0.84) 0%, rgba(0, 82, 218, 0.56) 48%, rgba(17, 33, 56, 0.62) 100%),
        linear-gradient(180deg, rgba(12, 24, 45, 0.18) 0%, rgba(12, 24, 45, 0.48) 100%);
    z-index: -1;
}

.page-banner__content {
    max-width: 720px;
    text-align: center;
    color: var(--secondary-color);
    padding: 0 12px;
}

.page-banner__content h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3.4rem, 7vw, 6rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-shadow: 0 10px 24px rgba(8, 18, 36, 0.28);
}

.page-banner__content p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 12px 26px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    font-size: 1.55rem;
    font-weight: 500;
}

.page-banner__content p a,
.page-banner__content p span {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-banner__content p a:hover {
    color: rgba(255, 255, 255, 0.82);
}

/* Hero Carousel Styles */
.hero-carousel {
    padding: 32px 20px 48px;
}

.hero-carousel__viewport {
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: var(--hero-shadow);
}

.hero-carousel__track {
    display: flex;
    transition: transform 0.7s ease-in-out;
    will-change: transform;
}

.hero-slide {
    min-width: 100%;
    min-height: 760px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 72px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    isolation: isolate;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(18, 30, 49, 0.82) 0%, rgba(18, 30, 49, 0.56) 42%, rgba(18, 30, 49, 0.2) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.28) 100%);
    z-index: -1;
}

.hero-slide__content {
    max-width: 680px;
    color: var(--secondary-color);
}

.hero-slide__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-slide h1,
.hero-slide h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.9rem);
    line-height: 1.08;
    margin-bottom: 22px;
    max-width: 14ch;
}

.hero-slide p {
    font-size: 1.15rem;
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 34px;
}

.hero-slide__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-slide__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 999px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 82, 218, 0.28);
}

.hero-slide__cta:hover {
    background-color: #0a3f9f;
    transform: translateY(-2px);
}

.hero-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.14);
    color: var(--secondary-color);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
}

.hero-carousel__arrow:hover {
    background-color: var(--primary-color);
}

.hero-carousel__arrow--prev {
    left: 28px;
}

.hero-carousel__arrow--next {
    right: 28px;
}

.hero-carousel__controls {
    max-width: var(--container-width);
    margin: 22px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.hero-carousel__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(37, 48, 65, 0.2);
}

.hero-carousel__dot.active {
    width: 42px;
    border-radius: 999px;
    background-color: var(--primary-color);
}

/* Trust Strip */
.trust-strip {
    padding: 12px 20px 56px;
    background:
        radial-gradient(circle at top left, rgba(0, 82, 218, 0.08), transparent 24%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.trust-strip__container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 34px;
    border-radius: 32px;
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(239, 245, 251, 0.98) 100%);
    border: 1px solid rgba(0, 82, 218, 0.08);
    box-shadow: 0 22px 54px rgba(17, 35, 58, 0.08);
}

.trust-strip__content {
    max-width: 460px;
}

.trust-strip__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: rgba(0, 82, 218, 0.1);
    color: var(--primary-color);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trust-strip__content h2 {
    margin-bottom: 14px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.08;
    color: #172538;
}

.trust-strip__content p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--muted-text);
}

.trust-strip__logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.trust-strip__card {
    min-height: 230px;
    padding: 26px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid rgba(18, 37, 56, 0.08);
    box-shadow: 0 18px 40px rgba(17, 35, 58, 0.08);
    overflow: hidden;
}

.trust-strip__card--city {
    background:
        radial-gradient(circle at top right, rgba(255, 38, 38, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.trust-strip__card--gas-safe {
    background:
        radial-gradient(circle at top right, rgba(255, 215, 0, 0.2), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fffef4 100%);
}

.trust-strip__logo {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.trust-strip__logo--city {
    max-width: 290px;
}

.trust-strip__logo--gas-safe {
    max-width: 240px;
}

/* Call To Action Styles */
/* ===== Base Section ===== */
.call-to-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  background: var(--background-color);
  flex-wrap: wrap; /* important for responsiveness */
}

/* ===== Each Step ===== */
.call-to-action-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ===== Circle Design ===== */
.call-to-action-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: #dbe5f1; /* light blue */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

/* ===== Icons ===== */
.call-to-action-circle img {
  width: 100px;
  height: 100px;
}

/* ===== Text ===== */
.call-to-action-container p {
  margin-top: 18px;
  font-size: 20px;
  font-weight: 500;
  color: #1f2d3d;
}

/* ===== Active (Middle Step) ===== */
.call-to-action-container.active .call-to-action-circle {
  background: var(--primary-color); /* strong blue */
}

.call-to-action-container.active p {
  color: var(--text-color);
}

/* Make icon white inside active circle (if SVG supports it) */
.call-to-action-container.active img {
  filter: brightness(0) invert(1);
}

/* ===== Arrow Image ===== */
.arrow {
  width: 70px;
  height: auto;
  opacity: 0.85;
  transform: translateY(-10px); /* aligns with center of circles */
}

/* ===== Hover Effects ===== */
.call-to-action-container:hover .call-to-action-circle {
  transform: scale(1.06);
}

/* How We Work */
.workflow-section {
    padding: 110px 20px 120px;
    background:
        radial-gradient(circle at top left, rgba(0, 82, 218, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.workflow-section__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.workflow-section__intro {
    max-width: 720px;
    margin-bottom: 42px;
}

.workflow-section__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: rgba(0, 82, 218, 0.1);
    color: var(--primary-color);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.workflow-section__intro h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    line-height: 1.08;
    margin-bottom: 16px;
    color: #172538;
}

.workflow-section__intro p {
    font-size: 1.04rem;
    line-height: 1.8;
    color: var(--muted-text);
    max-width: 58ch;
}

.workflow-section__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.95fr);
    gap: 34px;
    align-items: start;
}

.workflow-steps {
    display: grid;
    gap: 48px;
    padding-right: 28px;
}

.workflow-step {
    position: relative;
    min-height: 332px;
    max-width: 680px;
    padding: 94px 72px 54px;
    border-radius: 26px;
    border: 3px solid #dfe7ef;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(17, 35, 58, 0.03);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        opacity 0.35s ease;
}

.workflow-step.is-active {
    transform: none;
    border-color: #dbe4ec;
    box-shadow: 0 14px 36px rgba(17, 35, 58, 0.04);
}

.workflow-step__number {
    position: absolute;
    top: 18px;
    right: 24px;
    min-width: 116px;
    height: 54px;
    padding: 0 18px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf1f7;
    color: #172538;
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
}

.workflow-step h3 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.25rem, 3vw, 3rem);
    line-height: 1.08;
    color: #153f6d;
    margin-bottom: 18px;
    max-width: 11ch;
}

.workflow-step p {
    max-width: 20ch;
    font-size: 1rem;
    line-height: 1.58;
    color: #63788e;
}

.workflow-media {
    position: sticky;
    top: 110px;
    min-height: 540px;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(160deg, #d8e5f4 0%, #edf4fb 100%);
    box-shadow: 0 24px 56px rgba(17, 35, 58, 0.14);
}

.workflow-media__stage,
.workflow-media__stage img {
    width: 100%;
    height: 100%;
}

.workflow-media__stage {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.45s ease, transform 0.6s ease;
}

.workflow-media__stage.is-active {
    opacity: 1;
    transform: scale(1);
}

.workflow-media__stage img {
    object-fit: cover;
}

.workflow-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 19, 33, 0.04) 0%, rgba(9, 19, 33, 0.42) 100%),
        linear-gradient(120deg, rgba(0, 82, 218, 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.workflow-media__overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    display: grid;
    gap: 6px;
    padding: 20px 22px;
    border-radius: 22px;
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 36px rgba(17, 35, 58, 0.16);
}

.workflow-media__label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.workflow-media__overlay strong {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.35;
    color: #172538;
}

/* SERVICES SECTION */
.services {
    padding: 100px 50px;
    background: #f8fafc;
}

.services-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

/* TITLE */
.services-title {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 12px;
}

.services-p {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
    color: var(--muted-text);
    font-size: 1.05rem;
    line-height: 1.7;
}

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

/* CARD */
.service-item {
    text-align: center;
    padding: 55px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 18px 42px rgba(24, 39, 59, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 30px;
    text-decoration: none;
    color: inherit;
    background:
        radial-gradient(circle at top right, rgba(0, 82, 218, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
    border: 1px solid rgba(0, 82, 218, 0.08);
    overflow: hidden;
    position: relative;
}

/* ICON FIX */
.service-item img {
    width: 65px;
    height: 65px;
    margin-bottom: 18px;
    display: block;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(0, 82, 218, 0.1), rgba(0, 82, 218, 0.03));
}


/* TEXT */
.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.service-item p {
    font-size: 0.95rem;
    color: var(--muted-text);
    line-height: 1.6;
}

.service-item::after {
    content: "Explore service";
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: rgba(0, 82, 218, 0.08);
    color: var(--primary-color);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(24, 39, 59, 0.14);
    border-color: rgba(0, 82, 218, 0.18);
}

.service-item:hover::after {
    background: var(--primary-color);
    color: #ffffff;
}

.services-hero {
    padding: 110px 20px 42px;
    background:
        radial-gradient(circle at top left, rgba(0, 82, 218, 0.12), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #edf4fb 100%);
}

.services-hero__container,
.service-directory__container,
.service-detail__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.services-hero__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 34px;
    align-items: stretch;
    padding: 32px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, #ffffff 0%, #f3f8fd 100%);
    box-shadow: 0 28px 64px rgba(16, 32, 54, 0.12);
}

.services-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.services-hero__eyebrow,
.service-detail__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(0, 82, 218, 0.1);
    color: var(--primary-color);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.services-hero__content h1,
.service-detail__content h1 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.6rem, 4vw, 4.4rem);
    line-height: 1.04;
    color: #172538;
}

.services-hero__content p,
.service-detail__lead {
    max-width: 58ch;
    font-size: 1.04rem;
    line-height: 1.85;
    color: var(--muted-text);
}

.services-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.services-hero__cta,
.service-detail__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 700;
}

.services-hero__cta,
.service-detail__cta {
    background: linear-gradient(135deg, #0f67ff 0%, #0052da 100%);
    color: #ffffff;
    box-shadow: 0 16px 34px rgba(0, 82, 218, 0.28);
}

.services-hero__cta:hover,
.service-detail__cta:hover {
    transform: translateY(-2px);
}

.services-hero__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 700;
    background: rgba(37, 48, 65, 0.06);
    color: var(--text-color);
}

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

.services-hero__stat {
    padding: 20px 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, #1b2a3d 0%, #243449 100%);
    color: #ffffff;
    box-shadow: 0 20px 36px rgba(15, 25, 39, 0.18);
}

.services-hero__stat strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    line-height: 1;
}

.services-hero__stat span {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.74);
}

.service-directory {
    padding: 42px 20px 120px;
}

.service-directory__intro {
    max-width: 720px;
    margin-bottom: 34px;
}

.service-directory__intro h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.08;
    margin-bottom: 14px;
}

.service-directory__intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--muted-text);
}

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

.service-directory-card {
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 18px 44px rgba(24, 39, 59, 0.08);
    border: 1px solid rgba(0, 82, 218, 0.08);
}

.service-directory-card__icon {
    width: 74px;
    height: 74px;
    padding: 16px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(0, 82, 218, 0.12), rgba(0, 82, 218, 0.03));
    margin-bottom: 22px;
}

.service-directory-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #172538;
}

.service-directory-card p {
    color: var(--muted-text);
    font-size: 0.98rem;
    line-height: 1.75;
}

.service-directory-card span {
    display: inline-flex;
    margin-top: 22px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-directory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 56px rgba(24, 39, 59, 0.14);
}

.service-detail {
    padding: 110px 20px 120px;
    background:
        radial-gradient(circle at top left, rgba(0, 82, 218, 0.1), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.service-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 34px;
    align-items: start;
}

.service-detail__content,
.service-detail__sidebar {
    padding: 36px;
    border-radius: 32px;
    background: #ffffff;
    box-shadow: 0 22px 54px rgba(24, 39, 59, 0.1);
}

.service-detail__content {
    display: grid;
    gap: 26px;
}

.service-detail__media {
    overflow: hidden;
    border-radius: 26px;
    min-height: 360px;
}

.service-detail__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail__copy p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--muted-text);
    margin-bottom: 16px;
}

.service-detail__checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
}

.service-detail__checklist li {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(0, 82, 218, 0.06);
    color: #183455;
    font-weight: 600;
}

.service-detail__sidebar {
    display: grid;
    gap: 24px;
    position: sticky;
    top: 110px;
}

.service-detail__sidebar h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    color: #172538;
}

.service-detail__sidebar p {
    color: var(--muted-text);
    line-height: 1.8;
}

.service-detail__points {
    list-style: none;
    display: grid;
    gap: 12px;
}

.service-detail__points li {
    padding-left: 18px;
    position: relative;
    color: #183455;
    font-weight: 600;
}

.service-detail__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.service-detail__quick-links {
    list-style: none;
    display: grid;
    gap: 12px;
}

.service-detail__quick-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-color);
    background: #f4f8fc;
}

.service-detail__quick-links a:hover {
    background: rgba(0, 82, 218, 0.1);
    color: var(--primary-color);
}

/* Stats Section */
.stats-section {
    position: relative;
    padding: 100px 70px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(0, 82, 218, 0.94), rgba(17, 86, 221, 0.9)),
        url("../img/stats-banner.jpg") center/cover no-repeat;
    isolation: isolate;
}

.stats-section__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at left center, rgba(255, 255, 255, 0.12), transparent 34%),
        radial-gradient(circle at 56% 48%, rgba(255, 255, 255, 0.1), transparent 26%),
        radial-gradient(circle at right center, rgba(255, 255, 255, 0.1), transparent 30%);
    mix-blend-mode: screen;
    opacity: 0.6;
    z-index: -1;
}

.stats-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.stat-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary-color);
    background: #003899;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 48px rgba(4, 32, 92, 0.2);
}

.stat-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    margin-bottom: 5px;
    font-size: 4rem;
    line-height: 1;
}

.stat-card__value {
    font-size: clamp(3rem, 2vw, 3rem);
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.stat-card__label {
    font-size: clamp(1rem, 2vw, 2rem);
    line-height: 1.2;
}

.qudus-help__text{
    font-size: 2rem; 
    color: blue;  
}

/* Gallery Showcase */
.gallery-showcase {
    padding: 110px 20px 120px;
    background:
        radial-gradient(circle at top left, rgba(0, 82, 218, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.gallery-showcase__container {
    max-width: 1240px;
    margin: 0 auto;
}

.gallery-showcase__intro {
    max-width: 680px;
    margin: 0 auto 42px;
    text-align: center;
}

.gallery-showcase__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: rgba(0, 82, 218, 0.1);
    color: var(--primary-color);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-showcase__intro h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    line-height: 1.08;
    margin-bottom: 14px;
    color: #172538;
}

.gallery-showcase__intro p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--muted-text);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: 1.08fr 1.08fr 1fr;
    grid-auto-rows: 102px;
    gap: 8px;
    padding: 8px;
    background-color: #ffffff;
    box-shadow: 0 24px 60px rgba(18, 37, 56, 0.14);
}

.gallery-masonry__item {
    margin: 0;
    overflow: hidden;
    background-color: #dde6ef;
}

.gallery-masonry__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-masonry__item:hover .gallery-masonry__image {
    transform: scale(1.04);
}

.gallery-masonry__item--tall-left {
    grid-column: 1;
    grid-row: 1 / span 5;
}

.gallery-masonry__item--top-center {
    grid-column: 2;
    grid-row: 1;
}

.gallery-masonry__item--tall-right {
    grid-column: 3;
    grid-row: 1 / span 3;
}

.gallery-masonry__item--middle-center {
    grid-column: 2;
    grid-row: 2;
}

.gallery-masonry__item--middle-left {
    grid-column: 1;
    grid-row: 4;
}

.gallery-masonry__item--center-tall {
    grid-column: 2;
    grid-row: 3 / span 3;
}

.gallery-masonry__item--middle-right {
    grid-column: 3;
    grid-row: 4;
}

.gallery-masonry__item--bottom-left {
    grid-column: 1;
    grid-row: 5;
}

.gallery-masonry__item--bottom-right {
    grid-column: 3;
    grid-row: 5;
}

/* Gallery Page */
.gallery-page-intro {
    padding: 110px 20px 72px;
    background:
        radial-gradient(circle at top left, rgba(0, 82, 218, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

.gallery-page-intro__container,
.gallery-page-grid__container,
.gallery-instagram__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.gallery-page-intro__container {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
    gap: 36px;
    align-items: center;
}

.gallery-page-intro__content {
    max-width: 620px;
}

.gallery-page-intro__eyebrow,
.gallery-page-grid__eyebrow,
.gallery-instagram__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: rgba(0, 82, 218, 0.1);
    color: var(--primary-color);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-page-intro__content h2,
.gallery-page-grid__intro h2,
.gallery-instagram__content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    line-height: 1.08;
    color: #172538;
}

.gallery-page-intro__content h2 {
    margin-bottom: 18px;
}

.gallery-page-intro__content p,
.gallery-page-grid__intro p,
.gallery-instagram__content p {
    font-size: 1.04rem;
    line-height: 1.82;
    color: var(--muted-text);
}

.gallery-page-intro__feature {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 28px 64px rgba(17, 35, 58, 0.16);
    background-color: #dbe5f1;
}

.gallery-page-intro__feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-page-intro__feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 19, 33, 0.06) 0%, rgba(9, 19, 33, 0.48) 100%),
        linear-gradient(120deg, rgba(0, 82, 218, 0.12) 0%, transparent 52%);
}

.gallery-page-intro__feature-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 22px 24px;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 42px rgba(17, 35, 58, 0.18);
}

.gallery-page-intro__feature-card span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.gallery-page-intro__feature-card strong {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1.4;
    color: #172538;
}

.gallery-page-grid {
    padding: 24px 20px 110px;
    background:
        radial-gradient(circle at bottom right, rgba(0, 82, 218, 0.08), transparent 24%),
        linear-gradient(180deg, #f5f9fd 0%, #eef4fb 100%);
}

.gallery-page-grid__intro {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.gallery-page-grid__intro h2 {
    margin-bottom: 16px;
}

.gallery-page-grid__layout {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 260px;
    gap: 22px;
}

.gallery-page-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background-color: #dbe5f1;
    box-shadow: 0 18px 46px rgba(17, 35, 58, 0.11);
    isolation: isolate;
}

.gallery-page-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-page-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 23, 39, 0.02) 18%, rgba(12, 23, 39, 0.7) 100%),
        linear-gradient(120deg, rgba(0, 82, 218, 0.16) 0%, transparent 46%);
}

.gallery-page-card:hover img {
    transform: scale(1.06);
}

.gallery-page-card--wide {
    grid-column: span 2;
}

.gallery-page-card--tall {
    grid-row: span 2;
}

.gallery-page-card__overlay {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 1;
    display: grid;
    gap: 6px;
}

.gallery-page-card__overlay span {
    display: inline-flex;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.gallery-page-card__overlay h3 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.35;
    color: #ffffff;
    text-shadow: 0 8px 20px rgba(8, 14, 22, 0.22);
}

.gallery-instagram {
    padding: 0 20px 110px;
    background:
        radial-gradient(circle at top center, rgba(0, 82, 218, 0.1), transparent 28%),
        linear-gradient(180deg, #eef4fb 0%, #ffffff 100%);
}

.gallery-instagram__container {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
    gap: 28px;
    align-items: center;
    padding: 44px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 32%),
        linear-gradient(135deg, #253449 0%, #162537 100%);
    box-shadow: 0 30px 70px rgba(15, 28, 45, 0.18);
}

.gallery-instagram__content h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.gallery-instagram__content p {
    color: rgba(255, 255, 255, 0.74);
}

.gallery-instagram__eyebrow {
    background-color: rgba(255, 255, 255, 0.1);
    color: #8cb8ff;
}

.gallery-instagram__link {
    min-height: 220px;
    padding: 30px 34px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    color: #172538;
    background:
        radial-gradient(circle at top right, rgba(0, 82, 218, 0.14), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #edf4fb 100%);
    box-shadow: 0 22px 48px rgba(8, 18, 31, 0.18);
}

.gallery-instagram__link:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px rgba(8, 18, 31, 0.22);
}

.gallery-instagram__icon,
.gallery-instagram__arrow {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gallery-instagram__icon {
    background: linear-gradient(135deg, rgba(0, 82, 218, 0.12) 0%, rgba(0, 82, 218, 0.04) 100%);
    color: var(--primary-color);
    font-size: 2rem;
}

.gallery-instagram__text {
    flex: 1;
    display: grid;
    gap: 8px;
}

.gallery-instagram__text strong {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    line-height: 1.24;
}

.gallery-instagram__text small {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.gallery-instagram__arrow {
    background-color: #172538;
    color: #ffffff;
    font-size: 1.2rem;
    box-shadow: 0 16px 34px rgba(10, 20, 34, 0.16);
}

/* Team Section */
.team-section {
    padding: 110px 20px 120px;
    background:
        radial-gradient(circle at top right, rgba(0, 82, 218, 0.14), transparent 28%),
        linear-gradient(180deg, #eef4fb 0%, #f8fbff 50%, #ffffff 100%);
}

.team-container {
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
}

.expert-team {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    line-height: 1.08;
    color: #172538;
    margin-bottom: 14px;
}

.team-p {
    max-width: 680px;
    margin: 0 auto 50px;
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--muted-text);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 360px));
    justify-content: center;
    gap: 32px;
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
    box-shadow: 0 24px 60px rgba(17, 35, 58, 0.14);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 68px rgba(17, 35, 58, 0.18);
}

.team-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1.06;
    background: linear-gradient(180deg, #d9e7f7 0%, #adc6ea 100%);
}

.team-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 16, 29, 0) 20%, rgba(5, 16, 29, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.team-card:hover .team-card__media::after {
    opacity: 1;
}

.team-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.team-card:hover .team-card__image {
    transform: scale(1.06);
}

.team-card__socials {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translate(-50%, 20px);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.team-card:hover .team-card__socials {
    opacity: 1;
    transform: translate(-50%, 0);
}

.team-card__socials a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(5, 16, 29, 0.16);
}

.team-card__socials a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.team-card__content {
    padding: 28px 24px 30px;
}

.team-card__content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.35rem, 2.6vw, 1.7rem);
    line-height: 1.2;
    color: #172538;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.team-card__content p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Contact Booking Section */
.contact-booking {
    padding: 110px 20px 120px;
    background:
        radial-gradient(circle at top left, rgba(0, 82, 218, 0.1), transparent 26%),
        linear-gradient(180deg, #f5f9fd 0%, #edf3f9 100%);
}

.contact-booking__panel {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    min-height: 760px;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 28px 70px rgba(16, 32, 54, 0.16);
    background-color: #ffffff;
}

.contact-booking__content {
    position: relative;
    padding: 78px 64px 72px;
    background:
        radial-gradient(circle at left bottom, rgba(0, 82, 218, 0.22), transparent 22%),
        linear-gradient(180deg, #243247 0%, #1e2b3d 100%);
    color: var(--secondary-color);
}

.contact-booking__content::after {
    content: "";
    position: absolute;
    left: -52px;
    bottom: -52px;
    width: 180px;
    height: 180px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(0, 82, 218, 0.3), rgba(0, 82, 218, 0.1));
    transform: rotate(22deg);
    opacity: 0.55;
}

.contact-booking__intro,
.contact-booking__form {
    position: relative;
    z-index: 1;
}

.contact-booking__intro {
    max-width: 520px;
    margin-bottom: 42px;
}

.contact-booking__eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: #8cb8ff;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.contact-booking__intro h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.6rem, 4.2vw, 4.2rem);
    line-height: 1.06;
    margin-bottom: 18px;
    max-width: 11ch;
}

.contact-booking__intro p {
    max-width: 54ch;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.02rem;
    line-height: 1.8;
}

.contact-booking__form {
    max-width: 540px;
}

.contact-booking__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
}

.contact-booking__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-booking__field span {
    font-size: 0.98rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.96);
}

.contact-booking__field input,
.contact-booking__field select,
.contact-booking__field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    background-color: #3b4a62;
    color: var(--secondary-color);
    padding: 18px 18px;
    font-size: 1rem;
    outline: none;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-booking__field input::placeholder,
.contact-booking__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.contact-booking__field select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 2px),
        calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 0.72);
}

.contact-booking__field select:valid {
    color: var(--secondary-color);
}

.contact-booking__field input:focus,
.contact-booking__field select:focus,
.contact-booking__field textarea:focus {
    border-color: rgba(140, 184, 255, 0.8);
    background-color: #43536e;
    box-shadow: 0 0 0 4px rgba(0, 82, 218, 0.16);
}

.contact-booking__field--message {
    margin-top: 24px;
}

.contact-booking__field textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-booking__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    margin-top: 28px;
    padding: 0 30px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f67ff 0%, #0052da 100%);
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(0, 82, 218, 0.3);
}

.contact-booking__button:hover {
    background: linear-gradient(135deg, #2475ff 0%, #0a46af 100%);
    transform: translateY(-2px);
}

.contact-booking__media {
    position: relative;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(18, 37, 56, 0.04) 0%, rgba(18, 37, 56, 0.18) 100%),
        linear-gradient(160deg, #ecf5fb 0%, #dfeaf4 100%);
}

.contact-booking__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-booking__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(9, 23, 41, 0.12) 100%);
}

.contact-booking__badge {
    position: absolute;
    top: 34px;
    left: 32px;
    z-index: 1;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    border-radius: 18px;
    background-color: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 35px rgba(18, 37, 56, 0.12);
    color: #172538;
}

.contact-booking__badge span {
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.contact-booking__badge strong {
    font-family: "Montserrat", sans-serif;
    font-size: 1.05rem;
    line-height: 1.3;
}

.contact-booking__play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 166px;
    height: 166px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-booking__play-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.08);
}

.contact-booking__play-icon {
    position: relative;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.92);
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 18px 40px rgba(15, 25, 39, 0.18);
}

body.video-modal-open {
    overflow: hidden;
}

.contact-video-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.contact-video-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.contact-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 15, 27, 0.72);
    backdrop-filter: blur(10px);
}

.contact-video-modal__dialog {
    position: relative;
    width: min(100%, 540px);
    transform: translateY(28px) scale(0.96);
    transition: transform 0.35s ease;
}

.contact-video-modal.is-open .contact-video-modal__dialog {
    transform: translateY(0) scale(1);
}

.contact-video-modal__frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%),
        linear-gradient(145deg, #0d1726 0%, #1e2b3d 100%);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.contact-video-modal__title {
    margin-bottom: 16px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: #ffffff;
}

.contact-video-modal__video {
    width: min(100%, 460px);
    max-height: calc(100vh - 190px);
    margin: 0 auto;
    aspect-ratio: 9 / 16;
    display: block;
    border-radius: 18px;
    background-color: #000000;
    object-fit: contain;
}

.contact-video-modal__close {
    position: absolute;
    top: -18px;
    right: -18px;
    z-index: 1;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #dbe8f7 100%);
    color: #172538;
    box-shadow: 0 18px 36px rgba(5, 16, 29, 0.25);
}

.contact-video-modal__close:hover {
    background: linear-gradient(135deg, #0f67ff 0%, #0052da 100%);
    color: #ffffff;
    transform: rotate(90deg);
}

/* Contact Page */
.contact-page-hero {
    padding: 110px 20px 64px;
    background:
        radial-gradient(circle at top left, rgba(0, 82, 218, 0.09), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
}

.contact-page-hero__container,
.contact-page-cards__container,
.contact-page-connect__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.contact-page-hero__container {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 38px;
    align-items: center;
}

.contact-page-hero__content {
    max-width: 640px;
}

.contact-page-hero__eyebrow,
.contact-page-form__eyebrow,
.contact-page-map__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: rgba(0, 82, 218, 0.1);
    color: var(--primary-color);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-page-hero__content h2,
.contact-page-form__intro h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.9rem);
    line-height: 1.08;
    color: #172538;
}

.contact-page-hero__content h2 {
    margin-bottom: 18px;
}

.contact-page-hero__content p,
.contact-page-form__intro p,
.contact-page-map__intro p {
    font-size: 1.04rem;
    line-height: 1.8;
    color: var(--muted-text);
}

.contact-page-hero__highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.contact-page-hero__highlight {
    padding: 22px 24px;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(0, 82, 218, 0.12), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
    border: 1px solid rgba(0, 82, 218, 0.08);
    box-shadow: 0 18px 40px rgba(17, 35, 58, 0.08);
}

.contact-page-hero__highlight strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    color: #172538;
}

.contact-page-hero__highlight span {
    color: var(--muted-text);
    line-height: 1.7;
}

.contact-page-hero__media {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border-radius: 32px;
    background-color: #dbe5f1;
    box-shadow: 0 28px 64px rgba(17, 35, 58, 0.16);
}

.contact-page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-page-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 19, 33, 0.06) 0%, rgba(9, 19, 33, 0.52) 100%),
        linear-gradient(120deg, rgba(0, 82, 218, 0.12) 0%, transparent 52%);
}

.contact-page-hero__badge {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 22px 24px;
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(17, 35, 58, 0.16);
}

.contact-page-hero__badge span {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.contact-page-hero__badge strong {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    line-height: 1.35;
    color: #172538;
}

.contact-page-cards {
    padding: 0 20px 52px;
    background:
        radial-gradient(circle at bottom right, rgba(0, 82, 218, 0.08), transparent 22%),
        linear-gradient(180deg, #f4f8fd 0%, #eef4fb 100%);
}

.contact-page-cards__container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.contact-page-card {
    padding: 34px 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(0, 82, 218, 0.1), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
    border: 1px solid rgba(0, 82, 218, 0.08);
    box-shadow: 0 20px 46px rgba(17, 35, 58, 0.08);
}

.contact-page-card__icon {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 82, 218, 0.14), rgba(0, 82, 218, 0.04));
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-page-card h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.45rem;
    line-height: 1.2;
    color: #172538;
    margin-bottom: 12px;
}

.contact-page-card p {
    margin-bottom: 18px;
    color: var(--muted-text);
    line-height: 1.8;
}

.contact-page-card a,
.contact-page-card span:last-child {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.7;
}

.contact-page-card a {
    color: var(--primary-color);
    text-decoration: none;
    word-break: break-word;
}

.contact-page-card a:hover {
    color: #0a46af;
}

.contact-page-connect {
    padding: 28px 20px 110px;
    background:
        radial-gradient(circle at top center, rgba(0, 82, 218, 0.08), transparent 28%),
        linear-gradient(180deg, #eef4fb 0%, #ffffff 100%);
}

.contact-page-connect__container {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 30px;
    align-items: start;
}

.contact-page-form,
.contact-page-map__card {
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(16, 32, 54, 0.16);
}

.contact-page-form {
    padding: 56px 48px;
    background:
        radial-gradient(circle at left bottom, rgba(0, 82, 218, 0.22), transparent 22%),
        linear-gradient(180deg, #243247 0%, #1e2b3d 100%);
    color: #ffffff;
}

.contact-page-form__intro {
    max-width: 560px;
    margin-bottom: 34px;
}

.contact-page-form__eyebrow {
    color: #8cb8ff;
    background-color: rgba(255, 255, 255, 0.08);
}

.contact-page-form__intro h2 {
    margin-bottom: 16px;
    color: #ffffff;
}

.contact-page-form__intro p {
    color: rgba(255, 255, 255, 0.74);
}

.contact-page-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
}

.contact-page-form__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-page-form__field span {
    font-size: 0.98rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.contact-page-form__field input,
.contact-page-form__field select,
.contact-page-form__field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    background-color: #3b4a62;
    color: #ffffff;
    padding: 18px;
    font-size: 1rem;
    outline: none;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-page-form__field input::placeholder,
.contact-page-form__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.contact-page-form__field select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 2px),
        calc(100% - 12px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 0.72);
}

.contact-page-form__field select:valid {
    color: #ffffff;
}

.contact-page-form__field input:focus,
.contact-page-form__field select:focus,
.contact-page-form__field textarea:focus {
    border-color: rgba(140, 184, 255, 0.8);
    background-color: #43536e;
    box-shadow: 0 0 0 4px rgba(0, 82, 218, 0.16);
}

.contact-page-form__field--full {
    margin-top: 20px;
}

.contact-page-form__field textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-page-form__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin-top: 28px;
    padding: 0 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0f67ff 0%, #0052da 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(0, 82, 218, 0.3);
}

.contact-page-form__button:hover {
    background: linear-gradient(135deg, #2475ff 0%, #0a46af 100%);
    transform: translateY(-2px);
}

.contact-page-map__card {
    background:
        radial-gradient(circle at top right, rgba(0, 82, 218, 0.1), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #eef4fb 100%);
}

.contact-page-map__intro {
    padding: 34px 34px 24px;
}

.contact-page-map__eyebrow {
    margin-bottom: 14px;
}

.contact-page-map__intro h3 {
    margin-bottom: 14px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.7rem, 2.4vw, 2.3rem);
    line-height: 1.15;
    color: #172538;
}

.contact-page-map__frame {
    padding: 0 34px;
}

.contact-page-map__frame iframe {
    width: 100%;
    min-height: 460px;
    border: 0;
    border-radius: 24px;
    display: block;
    background-color: #dbe5f1;
}

.contact-page-map__details {
    display: grid;
    gap: 18px;
    padding: 28px 34px 34px;
}

.contact-page-map__details div {
    padding: 18px 20px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 30px rgba(17, 35, 58, 0.08);
}

.contact-page-map__details strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    color: #172538;
}

.contact-page-map__details span {
    color: var(--muted-text);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 110px 20px 120px;
    background:
        radial-gradient(circle at top center, rgba(0, 82, 218, 0.1), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
}

.testimonials-container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.testimonials-intro {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.testimonials-intro__eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: rgba(0, 82, 218, 0.1);
    color: var(--primary-color);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.testimonials-intro h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    line-height: 1.08;
    margin-bottom: 16px;
    color: #172538;
}

.testimonials-intro p {
    max-width: 56ch;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--muted-text);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.testimonial-card {
    position: relative;
}

.testimonial-card__quote-mark {
    position: absolute;
    top: 34px;
    right: 34px;
    z-index: 1;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 82, 218, 0.08) 0%, rgba(0, 82, 218, 0.02) 70%, transparent 72%);
    color: rgba(0, 82, 218, 0.14);
    font-size: 2.7rem;
}

.testimonial-card__bubble {
    position: relative;
    min-height: 250px;
    padding: 48px 42px;
    border: 1px solid rgba(0, 82, 218, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(241, 246, 252, 0.96) 100%);
    box-shadow: 0 24px 55px rgba(18, 37, 56, 0.08);
}

.testimonial-card__bubble::after {
    content: "";
    position: absolute;
    left: 44px;
    bottom: -18px;
    width: 38px;
    height: 38px;
    background: inherit;
    border-left: 1px solid rgba(0, 82, 218, 0.08);
    border-bottom: 1px solid rgba(0, 82, 218, 0.08);
    transform: rotate(-45deg);
}

.testimonial-card__bubble p {
    position: relative;
    z-index: 1;
    max-width: 29ch;
    font-size: 1.28rem;
    line-height: 1.9;
    color: #556274;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-left: 44px;
    margin-top: 34px;
}

.testimonial-card__avatar {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 36px rgba(18, 37, 56, 0.12);
    background-color: #dbe5f1;
}

.testimonial-card__meta h3 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.15;
    margin-bottom: 6px;
    color: #223247;
}

.testimonial-card__meta span {
    font-size: 1.1rem;
    color: var(--muted-text);
}

/* Footer */
.site-footer {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(0, 82, 218, 0.16), transparent 24%),
        linear-gradient(180deg, #253449 0%, #1d2838 100%);
    color: rgba(255, 255, 255, 0.78);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 32%),
        radial-gradient(circle at bottom right, rgba(0, 82, 218, 0.18), transparent 26%);
    pointer-events: none;
}

.site-footer__top,
.site-footer__bottom {
    position: relative;
    z-index: 1;
}

.site-footer__top {
    padding: 98px 20px 52px;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(11, 18, 28, 0.16);
}

.site-footer__container {
    max-width: var(--container-width);
    margin: 0 auto;
}

.site-footer__container:not(.site-footer__container--bottom) {
    display: grid;
    grid-template-columns: minmax(280px, 1.15fr) minmax(220px, 0.95fr) minmax(200px, 0.9fr) minmax(250px, 1fr);
    gap: 34px;
    align-items: start;
}

.site-footer__container--bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 92px;
    position: relative;
}

.site-footer__brand {
    max-width: 390px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 28px;
}



.site-footer__description {
    font-size: 1.07rem;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__heading {
    margin-bottom: 28px;
    font-family: "Montserrat", sans-serif;
    font-size: 1.65rem;
    line-height: 1.15;
    color: #ffffff;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.site-footer__socials a,
.back-to-top {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.site-footer__socials a {
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.site-footer__socials a:hover {
    background-color: var(--primary-color);
    transform: translateY(-4px);
}

.site-footer__contact-list,
.site-footer__links {
    list-style: none;
}

.site-footer__contact-list {
    display: grid;
    gap: 18px;
}

.site-footer__contact-list li,
.site-footer__contact-list a {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.site-footer__contact-list a,
.site-footer__links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer__contact-list a:hover,
.site-footer__links a:hover {
    color: #ffffff;
}

.site-footer__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(0, 82, 218, 0.24), rgba(0, 82, 218, 0.1));
    color: #8cb8ff;
    font-size: 1rem;
}

.site-footer__contact-list span:last-child {
    font-size: 1.04rem;
    line-height: 1.7;
}

.site-footer__links {
    display: grid;
    gap: 14px;
}

.site-footer__links a {
    position: relative;
    font-size: 1.05rem;
    line-height: 1.5;
    padding-left: 18px;
}

.site-footer__links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(0, 82, 218, 0.12);
}

.site-footer__gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.site-footer__gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 32px rgba(8, 14, 22, 0.18);
}

.site-footer__gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 82, 218, 0.22));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.site-footer__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.site-footer__gallery-item:hover img {
    transform: scale(1.08);
}

.site-footer__gallery-item:hover::after {
    opacity: 1;
}

.site-footer__copyright {
    font-size: 1.08rem;
    line-height: 1.6;
    text-align: center;
    color: rgba(255, 255, 255, 0.94);
}

.back-to-top {
    position: absolute;
    right: 0;
    top: 50%;
    background: linear-gradient(135deg, #0f67ff 0%, #0052da 100%);
    color: #ffffff;
    box-shadow: 0 18px 32px rgba(0, 82, 218, 0.28);
    transform: translateY(calc(-50% + 20px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #2b7dff 0%, #0a46af 100%);
    transform: translateY(calc(-50% - 4px));
}

/* About Page Styles */
.about {
    padding: 96px 20px;
}

.about-container{
    display: flex;
    gap: 48px;
}

.about-image {
    width: 100%;
    max-width: 480px;
    border-radius: 28px;
    object-fit: cover;
    background-color: #dbe5f1;
}


.about-content {
    max-width: 640px;
}

.about-content h2 {
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    line-height: 1.08;
    margin-bottom: 24px;
    color: #172538;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted-text);
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    margin-top: 32px;
    padding: 0 30px;
    border-radius: 12px;
    background: var(--primary-color);
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(0, 82, 218, 0.3);
    transition: background 0.35s ease, transform 0.35s ease;
}

.about-btn a {
    color: var(--secondary-color);
    text-decoration: none;
}

.about-btn:hover {
    background: #0a46af;
    transform: translateY(-2px);
}

/* Support Page Styles */
.support {
    padding: 96px 50px;
}

.support-container {
    display: flex;
    gap: 48px;
}

.support-content {
    max-width: 600px;
}

.support-content h2 {
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    line-height: 1.08;
    margin-bottom: 24px;
    color: #172538;
}

.support-content h2 span {
    color: var(--primary-color);
}

.support-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted-text);
}
