/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #10B981;
    --secondary: #0f2744;
    --light-bg: #f8fafb;
    --card-bg: rgba(255, 255, 255, 0.7);
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --brand-gradient: linear-gradient(135deg, #10b981 0%, #0ea5a8 45%, #0f2744 100%);
    --soft-gradient: linear-gradient(135deg, rgba(16, 185, 129, 0.14) 0%, rgba(14, 165, 168, 0.08) 48%, rgba(15, 39, 68, 0.12) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #059669;
}

button {
    cursor: pointer;
    transition: all 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==================== PAGE LOADER ==================== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background:
        radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.16), transparent 34%),
        radial-gradient(circle at 72% 78%, rgba(14, 165, 168, 0.14), transparent 30%),
        linear-gradient(135deg, #ffffff 0%, #f2fbf9 52%, #edf5fb 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--secondary);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

.pencil {
    display: block;
    width: 10em;
    height: 10em;
}

.pencil__body1,
.pencil__body2,
.pencil__body3,
.pencil__eraser,
.pencil__eraser-skew,
.pencil__point,
.pencil__rotate,
.pencil__stroke {
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.pencil__body1,
.pencil__body2,
.pencil__body3 {
    transform: rotate(-90deg);
}

.pencil__body1 {
    animation-name: pencilBody1;
}

.pencil__body2 {
    animation-name: pencilBody2;
}

.pencil__body3 {
    animation-name: pencilBody3;
}

.pencil__eraser {
    animation-name: pencilEraser;
    transform: rotate(-90deg) translate(49px, 0);
}

.pencil__eraser-skew {
    animation-name: pencilEraserSkew;
    animation-timing-function: ease-in-out;
}

.pencil__point {
    animation-name: pencilPoint;
    transform: rotate(-90deg) translate(49px, -30px);
}

.pencil__rotate {
    animation-name: pencilRotate;
}

.pencil__stroke {
    animation-name: pencilStroke;
    transform: translate(100px, 100px) rotate(-113deg);
}

@keyframes pencilBody1 {
    from,
    to {
        stroke-dashoffset: 351.86;
        transform: rotate(-90deg);
    }

    50% {
        stroke-dashoffset: 150.8;
        transform: rotate(-225deg);
    }
}

@keyframes pencilBody2 {
    from,
    to {
        stroke-dashoffset: 406.84;
        transform: rotate(-90deg);
    }

    50% {
        stroke-dashoffset: 174.36;
        transform: rotate(-225deg);
    }
}

@keyframes pencilBody3 {
    from,
    to {
        stroke-dashoffset: 296.88;
        transform: rotate(-90deg);
    }

    50% {
        stroke-dashoffset: 127.23;
        transform: rotate(-225deg);
    }
}

@keyframes pencilEraser {
    from,
    to {
        transform: rotate(-45deg) translate(49px, 0);
    }

    50% {
        transform: rotate(0deg) translate(49px, 0);
    }
}

@keyframes pencilEraserSkew {
    from,
    32.5%,
    67.5%,
    to {
        transform: skewX(0);
    }

    35%,
    65% {
        transform: skewX(-4deg);
    }

    37.5%,
    62.5% {
        transform: skewX(8deg);
    }

    40%,
    45%,
    50%,
    55%,
    60% {
        transform: skewX(-15deg);
    }

    42.5%,
    47.5%,
    52.5%,
    57.5% {
        transform: skewX(15deg);
    }
}

@keyframes pencilPoint {
    from,
    to {
        transform: rotate(-90deg) translate(49px, -30px);
    }

    50% {
        transform: rotate(-225deg) translate(49px, -30px);
    }
}

@keyframes pencilRotate {
    from {
        transform: translate(100px, 100px) rotate(0);
    }

    to {
        transform: translate(100px, 100px) rotate(720deg);
    }
}

@keyframes pencilStroke {
    from {
        stroke-dashoffset: 439.82;
        transform: translate(100px, 100px) rotate(-113deg);
    }

    50% {
        stroke-dashoffset: 164.93;
        transform: translate(100px, 100px) rotate(-113deg);
    }

    75%,
    to {
        stroke-dashoffset: 439.82;
        transform: translate(100px, 100px) rotate(112deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pencil__body1,
    .pencil__body2,
    .pencil__body3,
    .pencil__eraser,
    .pencil__eraser-skew,
    .pencil__point,
    .pencil__rotate,
    .pencil__stroke {
        animation: none;
    }
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 253, 250, 0.94) 52%, rgba(232, 241, 250, 0.96) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-logo {
    min-height: 40px;
    width: auto;
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.navbar-logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.navbar-center {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(232, 248, 247, 0.28));
    box-shadow:
        0 5px 18px rgba(15, 39, 68, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(15, 39, 68, 0.04);
}

.nav-item {
    position: relative;
    padding: 2px;
}

.nav-link {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22));
    box-shadow:
        0 3px 9px rgba(15, 39, 68, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        inset 0 -1px 0 rgba(15, 39, 68, 0.035);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    -webkit-tap-highlight-color: transparent;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.15s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 1px 7px auto;
    height: 44%;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.nav-link:hover {
    color: #087f63;
    border-color: rgba(16, 185, 129, 0.2);
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.78), rgba(209, 250, 239, 0.4));
    box-shadow:
        0 5px 13px rgba(15, 39, 68, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(15, 39, 68, 0.04);
    transform: translateY(-1px);
}

.nav-link-book {
    color: var(--text-dark);
    font-weight: 600;
}

.nav-link-book:hover {
    color: #087f63;
}

.nav-dropdown {
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
    min-width: 230px;
    margin-top: 0;
    overflow: visible;
    z-index: 1001;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-dropdown a {
    background: white;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.nav-dropdown a:last-child {
    border-bottom: none;
}

.nav-dropdown a:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.navbar-right {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    background: var(--light-bg);
    padding: 4px;
    border-radius: 6px;
}

.lang-btn {
    background: none;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    border-radius: 4px;
    transition: all 0.3s;
}

.lang-btn.active {
    background: white;
    color: var(--primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-btn {
    background: var(--brand-gradient);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.contact-btn:hover {
    box-shadow: 0 10px 24px rgba(15, 39, 68, 0.22);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
}

/* ==================== HERO ==================== */
.hero {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-bg) 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero--conference {
    background: #0f2744;
}

.hero.hero--conference::before {
    inset: -18px;
    width: auto;
    height: auto;
    border-radius: 0;
    background: url("assets/images/conference-hero.jpg") center / cover no-repeat;
    opacity: 0.86;
    filter: blur(7px);
    transform: scale(1.04);
    z-index: 0;
}

.hero--conference::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(15, 39, 68, 0.84) 0%, rgba(15, 39, 68, 0.58) 48%, rgba(16, 185, 129, 0.32) 100%),
        radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.16), transparent 36rem);
}

.hero-content {
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero--conference .hero-content {
    max-width: 780px;
}

.hero h1 {
    font-size: 56px;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero--conference h1 {
    color: white;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero--conference p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--brand-gradient);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.hero--conference .btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.hero--conference .btn-secondary:hover {
    background: white;
    color: var(--secondary);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-outline:hover {
    background: var(--secondary);
    color: white;
}

/* ==================== SECTIONS ==================== */
section {
    padding: 5rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== CARDS ==================== */
.card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ==================== SERVICES SHOWCASE ==================== */
.services-showcase {
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem;
    background:
        linear-gradient(135deg, rgba(248, 250, 252, 0.96) 0%, rgba(240, 253, 250, 0.96) 48%, rgba(237, 246, 255, 0.96) 100%);
}

.services-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 18%, rgba(16, 185, 129, 0.16), transparent 22rem),
        radial-gradient(circle at 85% 82%, rgba(15, 39, 68, 0.1), transparent 24rem);
}

.services-showcase .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.services-grid--detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    min-height: 270px;
    overflow: visible;
    perspective: 1000px;
    outline: none;
}

.service-card__content {
    position: relative;
    width: 100%;
    min-height: 270px;
    height: 100%;
    border-radius: 10px;
    transform-style: preserve-3d;
    transition: transform 420ms ease;
    box-shadow: 0 20px 46px rgba(15, 39, 68, 0.16);
}

.service-card:hover .service-card__content,
.service-card:focus-within .service-card__content {
    transform: rotateY(180deg);
}

.service-card__face {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    min-height: 270px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.service-card__front {
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.35rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.2), transparent 12rem),
        linear-gradient(145deg, #151515 0%, #0f2744 100%);
    color: white;
    text-align: center;
}

.service-card__front::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 160%;
    background: linear-gradient(90deg, transparent, #10b981, #0ea5a8, #0f2744, #10b981, transparent);
    animation: serviceCardRotation 5s linear infinite;
}

.service-card__front::after {
    content: "";
    position: absolute;
    inset: 3px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.18), transparent 13rem),
        linear-gradient(145deg, #151515 0%, #0f2744 100%);
}

.service-card__back {
    justify-content: space-between;
    padding: 1.35rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 253, 250, 0.84));
    border: 1px solid rgba(16, 185, 129, 0.18);
    transform: rotateY(180deg);
    backdrop-filter: blur(12px);
}

.service-card__icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(16, 185, 129, 0.28));
    color: white;
    font-size: 34px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(6px);
}

.service-card h3,
.service-card p,
.service-card__link,
.service-card__hint {
    position: relative;
    z-index: 2;
}

.service-card h3 {
    min-height: 0;
    margin: 0;
    color: inherit;
    font-size: 20px;
}

.service-card p {
    flex: 1;
    margin: 0 0 1.25rem;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.55;
}

.service-card__hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(4px);
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f2744 0%, #123a63 56%, #10b981 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 12px 26px rgba(15, 39, 68, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.service-card__link:hover,
.service-card__link:focus {
    color: white;
    transform: translateY(-2px);
    filter: saturate(1.08);
    box-shadow: 0 16px 32px rgba(15, 39, 68, 0.26);
}

@keyframes serviceCardRotation {
    from {
        transform: rotateZ(0deg);
    }

    to {
        transform: rotateZ(360deg);
    }
}

/* ==================== BOOKS ==================== */
.book-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 9rem 2rem 4rem;
    overflow: hidden;
    color: white;
    background: #0f2744 url("assets/images/books-hero.png") center / cover no-repeat;
}

.book-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 20, 36, 0.92) 0%, rgba(5, 20, 36, 0.76) 34%, rgba(5, 20, 36, 0.2) 70%, rgba(5, 20, 36, 0.08) 100%),
        radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.24), transparent 28rem);
}

.book-hero__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.book-hero .section-kicker {
    margin-bottom: 1rem;
    color: #7ff0c4;
}

.book-hero h1 {
    max-width: 680px;
    margin-bottom: 1.25rem;
    color: white;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 0.98;
}

.book-hero p {
    max-width: 620px;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 20px;
    line-height: 1.55;
}

.book-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.book-hero__actions .btn-secondary {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.book-hero__actions .btn-secondary:hover {
    color: var(--secondary);
    background: white;
}

.book-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 620px;
}

.book-hero__stats div {
    min-height: 92px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 1px 1px 1px rgba(255, 255, 255, 0.18),
        0 14px 32px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
}

.book-hero__stats strong {
    display: block;
    margin-bottom: 0.2rem;
    color: white;
    font-size: 28px;
    line-height: 1;
}

.book-hero__stats span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 700;
}

.books-section {
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(16, 185, 129, 0.12), transparent 22rem),
        radial-gradient(circle at 88% 16%, rgba(14, 165, 168, 0.1), transparent 22rem),
        linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.book-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    min-height: 100%;
    padding: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(15, 39, 68, 0.1);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.94) 100%);
    box-shadow:
        0 18px 46px rgba(15, 39, 68, 0.09),
        inset 1px 1px 1px rgba(255, 255, 255, 0.96);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.book-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--brand-gradient);
}

.book-card:hover {
    transform: translateY(-7px);
    border-color: rgba(16, 185, 129, 0.26);
    box-shadow:
        0 26px 58px rgba(15, 39, 68, 0.15),
        inset 1px 1px 1px rgba(255, 255, 255, 0.96);
}

.book-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.book-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 40%),
        linear-gradient(135deg, #0f2744 0%, #0e7490 58%, #10b981 100%);
    color: white;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 14px 28px rgba(15, 39, 68, 0.2);
}

.book-body {
    flex: 1;
}

.book-body h3 {
    margin-bottom: 0.65rem;
    color: var(--secondary);
    font-size: 22px;
}

.book-body p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.book-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(14, 165, 168, 0.06)),
        rgba(255, 255, 255, 0.74);
}

.book-price span {
    color: var(--text-light);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.book-price strong {
    color: var(--secondary);
    font-size: 20px;
    white-space: nowrap;
}

.book-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    font-size: 12px;
    font-weight: 700;
}

.book-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.book-open-btn,
.book-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.book-open-btn {
    background: linear-gradient(135deg, #0f2744 0%, #123a63 62%, #10b981 100%);
    color: white;
    box-shadow: 0 12px 24px rgba(15, 39, 68, 0.18);
}

.book-download-btn {
    border: 1px solid rgba(15, 39, 68, 0.12);
    background: rgba(255, 255, 255, 0.76);
    color: var(--secondary);
}

.book-open-btn:hover,
.book-download-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(15, 39, 68, 0.22);
}

.book-download-btn:hover {
    background: var(--secondary);
}

.book-note {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 34px rgba(15, 39, 68, 0.08);
}

.book-note strong {
    color: var(--secondary);
}

.book-note span {
    color: var(--text-light);
}

.book-note a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    font-weight: 800;
}

.book-note a:hover {
    background: var(--primary);
    color: white;
}

/* ==================== TEAM SECTION ==================== */
.team-section {
    padding: 5rem 2rem;
    background: var(--soft-gradient);
}

.team-grid {
    align-items: stretch;
}

.team-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    box-shadow: 0 16px 38px rgba(15, 39, 68, 0.08);
}

.team-card:hover {
    box-shadow: 0 24px 54px rgba(15, 39, 68, 0.16);
}

.team-card img {
    display: block;
    width: 108px;
    height: 108px;
    margin: 0 auto 1.25rem;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(16, 185, 129, 0.22);
}

.team-card h3 {
    font-size: 19px;
    margin-bottom: 0.5rem;
}

.team-card .team-role {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    margin-bottom: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.team-card p:last-child {
    margin-bottom: 0;
    font-size: 13px;
}

/* ==================== VERIFIED CONTENT ==================== */
.about-feature-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(15, 39, 68, 0.16);
}

.about-location-section,
.news-empty-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.about-location {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-location h2,
.news-empty h2 {
    color: var(--secondary);
    margin-bottom: 0.65rem;
}

.about-location p,
.news-empty p {
    color: var(--text-light);
}

.section-kicker {
    margin-bottom: 0.5rem;
    color: #087f63 !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.news-empty {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.news-empty .btn {
    margin-top: 1.5rem;
}

.service-detail-section {
    padding: 5rem 2rem;
    background: white;
}

.service-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-facts div {
    padding: 1.5rem;
    border-right: 1px solid var(--border);
}

.service-facts div:last-child {
    border-right: 0;
}

.service-facts dt {
    margin-bottom: 0.4rem;
    color: var(--secondary);
    font-weight: 700;
}

.service-facts dd {
    color: var(--text-light);
    font-size: 14px;
}

.price-list {
    margin: 3rem 0 2rem;
}

.price-list__header {
    margin-bottom: 2rem;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.price-card {
    padding: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
    box-shadow: 0 16px 36px rgba(15, 39, 68, 0.08);
}

.price-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary);
    font-size: 19px;
}

.price-card ul {
    display: grid;
    gap: 0.75rem;
    list-style: none;
}

.price-card li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: start;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(15, 39, 68, 0.08);
}

.price-card li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.price-card span {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.45;
}

.price-card strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    color: #087f63;
    font-size: 13px;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
}

/* ==================== GRID ==================== */
.grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--secondary);
    color: white;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 46px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-policy {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.75rem;
    text-decoration: none;
}

.footer-policy:hover {
    color: var(--primary);
}

.service-hero-card {
    background: white;
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 16px 38px rgba(15, 39, 68, 0.08);
}

.map-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 1rem;
    color: white;
}

.footer-link {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==================== REQUEST FORM ==================== */
.request-section {
    background: linear-gradient(135deg, rgba(15, 39, 68, 0.04), rgba(16, 185, 129, 0.08));
    padding: 5rem 2rem;
}

.request-card {
    display: grid;
    grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
    gap: 2rem;
    align-items: start;
    background: white;
    border: 1px solid rgba(15, 39, 68, 0.08);
    border-radius: 18px;
    padding: 2.5rem;
    box-shadow: 0 24px 60px rgba(15, 39, 68, 0.12);
}

.request-copy h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.request-copy p {
    color: var(--text-light);
}

.request-form {
    width: 100%;
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal.show {
    display: flex;
}

.modal[aria-hidden="false"] {
    display: flex;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: var(--shadow-lg);
}

.callback-modal {
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 28px;
    color: var(--secondary);
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
}

.close-btn:hover {
    color: var(--text-dark);
}

/* ==================== FORMS ==================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-upload input[type="file"] {
    padding: 0.8rem;
    border-style: dashed;
    background: rgba(248, 250, 252, 0.82);
}

.file-upload input[type="file"]::file-selector-button {
    margin-right: 0.8rem;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #0f2744 0%, #123a63 100%);
    color: white;
    padding: 0.65rem 0.9rem;
    font-family: inherit;
    font-weight: 700;
    cursor: pointer;
}

.file-hint {
    margin-top: 0.45rem;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.45;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin: 0 0 1.25rem;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.45;
}

.form-consent input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--primary);
}

.form-consent a {
    color: #087f63;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    width: 100%;
    background: var(--brand-gradient);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    box-shadow: 0 10px 24px rgba(15, 39, 68, 0.22);
    transform: translateY(-2px);
}

.submit-btn-navy {
    background: linear-gradient(135deg, #0f2744 0%, #123a63 100%);
}

.submit-btn-navy:hover {
    box-shadow: 0 12px 28px rgba(15, 39, 68, 0.28);
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: none;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
    display: block;
}

.submit-notice {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 3000;
    max-width: min(360px, calc(100vw - 32px));
    padding: 1rem 1.2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #0f2744 0%, #10b981 100%);
    color: white;
    font-weight: 700;
    box-shadow: 0 18px 42px rgba(15, 39, 68, 0.26);
}

/* ==================== FIXED SOCIAL LINKS ==================== */
.social-float {
    position: fixed;
    right: 24px;
    bottom: 92px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.social-float__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    pointer-events: none;
}

.social-float__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: white;
    opacity: 0;
    transform: translateY(18px) scale(0.78);
    pointer-events: none;
    box-shadow:
        0 16px 34px rgba(15, 39, 68, 0.24),
        inset 1px 1px 2px rgba(255, 255, 255, 0.28),
        inset -1px -1px 2px rgba(0, 0, 0, 0.16);
    transition:
        opacity 0.24s ease,
        transform 0.28s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.social-float.is-open .social-float__links {
    pointer-events: auto;
}

.social-float.is-open .social-float__link {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.social-float.is-open .social-float__link:nth-child(1) {
    transition-delay: 0.03s;
}

.social-float.is-open .social-float__link:nth-child(2) {
    transition-delay: 0.1s;
}

.social-float.is-open .social-float__link:nth-child(3) {
    transition-delay: 0.17s;
}

.social-float__link:hover {
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 22px 42px rgba(15, 39, 68, 0.32);
    filter: saturate(1.08);
}

.social-float__link--instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #515bd4 100%);
}

.social-float__link--threads {
    background: linear-gradient(135deg, #0f2744 0%, #10b981 100%);
}

.social-float__link--whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-float__toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 50%;
    background:
        radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.52), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(220, 252, 241, 0.72));
    color: var(--secondary);
    box-shadow:
        0 18px 42px rgba(15, 39, 68, 0.2),
        inset 1px 1px 2px rgba(255, 255, 255, 0.9),
        inset -2px -2px 6px rgba(15, 39, 68, 0.1);
    backdrop-filter: blur(12px);
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.social-float__toggle:hover,
.social-float__toggle:focus-visible {
    transform: translateY(-3px);
    color: white;
    background: linear-gradient(135deg, #0f2744 0%, #123a63 54%, #10b981 100%);
    box-shadow:
        0 24px 52px rgba(15, 39, 68, 0.3),
        inset 1px 1px 2px rgba(255, 255, 255, 0.25);
}

.social-float.is-open .social-float__toggle svg {
    transform: rotate(180deg);
}

.social-float__toggle svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.26s ease;
}

.social-float__link svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-float__link--whatsapp svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
    stroke: none;
}

.social-float__monogram {
    font-size: 25px;
    font-weight: 800;
    line-height: 1;
}

.social-float__label {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 10px;
    background: #ecfccb;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 12px 24px rgba(15, 39, 68, 0.18);
    transform: translate(12px, -50%) skewY(8deg);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-float__label::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #ecfccb;
    transform: translateY(-50%) rotate(45deg);
}

.social-float__link:hover .social-float__label,
.social-float__link:focus-visible .social-float__label {
    opacity: 1;
    transform: translate(0, -50%) skewY(0);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.nav-link.active {
    color: var(--secondary);
    font-weight: 700;
    border-radius: 999rem;
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(145deg, rgba(220, 252, 241, 0.94), rgba(168, 235, 220, 0.62));
    box-shadow:
        0 5px 14px rgba(15, 39, 68, 0.1),
        inset 1px 1px 2px rgba(255, 255, 255, 0.92),
        inset -1px -1px 2px rgba(15, 39, 68, 0.07);
    opacity: 1;
    visibility: visible;
}

.nav-link.active:hover,
.nav-link.active:focus,
.nav-link-book.active,
.nav-link-book.active:hover,
.nav-link-book.active:focus {
    color: var(--secondary) !important;
    background: linear-gradient(145deg, rgba(220, 252, 241, 0.98), rgba(154, 226, 210, 0.7));
    opacity: 1;
    visibility: visible;
}

.nav-link:focus-visible {
    outline: 2px solid rgba(16, 185, 129, 0.55);
    outline-offset: 2px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1100px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 42px;
    }

    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 700px) {
    .navbar {
        padding: 0 1rem;
    }

    .navbar-center {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .services-showcase {
        padding: 4rem 1rem;
    }

    .book-hero {
        min-height: 620px;
        padding: 7rem 1rem 3rem;
        background-position: 62% center;
    }

    .book-hero__overlay {
        background:
            linear-gradient(180deg, rgba(5, 20, 36, 0.92) 0%, rgba(5, 20, 36, 0.78) 48%, rgba(5, 20, 36, 0.54) 100%),
            radial-gradient(circle at 24% 22%, rgba(16, 185, 129, 0.24), transparent 24rem);
    }

    .book-hero__content {
        text-align: left;
    }

    .book-hero h1 {
        font-size: 42px;
    }

    .book-hero p {
        font-size: 16px;
    }

    .book-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .book-hero__stats {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .services-grid--detail {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card__content,
    .service-card__face {
        min-height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .navbar-right {
        gap: 0.75rem;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .request-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .book-grid {
        grid-template-columns: 1fr;
    }

    .book-actions {
        grid-template-columns: 1fr;
    }

    .book-note {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .about-location {
        align-items: flex-start;
        flex-direction: column;
    }

    .service-facts {
        grid-template-columns: 1fr;
    }

    .service-facts div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .service-facts div:last-child {
        border-bottom: 0;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .price-card {
        padding: 1.25rem;
    }

    .price-card li {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .price-card strong {
        justify-self: start;
        white-space: normal;
        text-align: left;
    }

    .social-float {
        right: 14px;
        bottom: 18px;
    }

    .social-float__links {
        gap: 10px;
        margin-bottom: 10px;
    }

    .social-float__link {
        width: 46px;
        height: 46px;
    }

    .social-float__toggle {
        width: 52px;
        height: 52px;
    }

    .social-float__label {
        display: none;
    }
}
