/* ==========================================================================
   PK CMS v1.0 — Global Styles
   Animations, Utilities, Components, Responsive
   ========================================================================== */

/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--bg-body);
    overflow-x: hidden;
    margin: 0;
}

script {
    display: none;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-normal) var(--ease-default);
}

ul,
ol {
    list-style: none;
}

/* ── Container ── */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ── Section Spacing ── */
.section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
}

@media (min-width: 768px) {
    .section {
        padding-top: var(--space-20);
        padding-bottom: var(--space-20);
    }
}

@media (min-width: 1024px) {
    .section {
        padding-top: var(--space-24);
        padding-bottom: var(--space-24);
    }
}

.section-sm {
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
}

.section-lg {
    padding-top: var(--space-24);
    padding-bottom: var(--space-24);
}

/* ── Background Variants ── */
.bg-white {
    background-color: var(--bg-body);
}

.bg-light {
    background-color: var(--bg-section-alt);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

.bg-primary {
    background-color: var(--color-primary);
    color: var(--text-white);
}

/* ── Text Color Variants ── */
.text-primary {
    color: var(--color-primary);
}

.text-secondary-color {
    color: var(--color-secondary);
}

.text-white {
    color: var(--text-white);
}

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

/* ── Grid System ── */
.grid {
    display: grid;
    gap: var(--space-6);
}

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

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

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

@media (min-width: 640px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ── Flex Utilities ── */
.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: var(--space-2);
}

.gap-4 {
    gap: var(--space-4);
}

.gap-6 {
    gap: var(--space-6);
}

.gap-8 {
    gap: var(--space-8);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.75rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-default);
    white-space: nowrap;
    line-height: 1;
}

.btn:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--text-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--gray-900);
    border-color: var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-light);
    border-color: var(--color-secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

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

.btn-outline-primary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

.btn-white {
    background-color: var(--text-white);
    color: var(--color-primary);
    border-color: var(--text-white);
}

.btn-white:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
}

/* ── Cards ── */
.card {
    background-color: var(--bg-body);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-default);
}

.card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.card-body {
    padding: var(--space-6);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--gray-200);
}

/* ── Section Heading ── */
.section-heading {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-heading .subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: var(--space-4);
}

.section-heading h2 {
    margin-bottom: var(--space-4);
}

.section-heading p {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted);
}

/* ── Page Heading ── */
.page-heading {
    background-color: var(--color-primary);
    padding: var(--space-20) 0 var(--space-16);
    text-align: center;
}

.page-heading h1 {
    color: var(--text-white);
    margin-bottom: var(--space-4);
}

.page-heading .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: var(--gray-300);
}

.page-heading .breadcrumb a {
    color: var(--color-secondary);
}

.page-heading .breadcrumb a:hover {
    color: var(--color-secondary-light);
}

.page-heading .breadcrumb .separator {
    color: var(--gray-500);
}

/* ── Breadcrumb ── */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--color-primary);
}

.breadcrumb a:hover {
    color: var(--color-primary-light);
}

.breadcrumb .current {
    color: var(--text-muted);
}

/* ── CTA Section ── */
.cta-section {
    background-color: var(--color-primary);
    padding: var(--space-16) 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--text-white);
    margin-bottom: var(--space-4);
}

.cta-section p {
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto var(--space-8);
}

/* ── Empty State ── */
.empty-state {
    text-align: center;
    padding: var(--space-16) var(--space-4);
}

.empty-state i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: var(--space-4);
}

.empty-state h3 {
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
}

.empty-state p {
    color: var(--text-muted);
}

/* ── Loading Spinner ── */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--gray-200);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner-sm {
    width: 24px;
    height: 24px;
    border-width: 3px;
}

/* ── Badge ── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    line-height: 1;
}

.badge-primary {
    background-color: var(--color-primary);
    color: var(--text-white);
}

.badge-secondary {
    background-color: var(--color-secondary);
    color: var(--gray-900);
}

/* ── Divider ── */
.divider {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: var(--space-8) 0;
}

/* ── Image Placeholder ── */
.img-placeholder {
    background-color: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 2rem;
}

/* ── Focus States ── */
:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 2px;
}

/* ── Skip Link ── */
.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-4);
    background-color: var(--color-primary);
    color: var(--text-white);
    padding: var(--space-2) var(--space-4);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: var(--z-toast);
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* ── Screen Reader Only ── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ==========================================================================
   Animations
   ========================================================================== */

/* ── Keyframes ── */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-5%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* ── Animation Classes ── */
.animate-fade-in {
    animation: fadeIn var(--duration-slow) var(--ease-out) forwards;
}

.animate-fade-in-up {
    animation: fadeInUp var(--duration-slow) var(--ease-out) forwards;
}

.animate-fade-in-down {
    animation: fadeInDown var(--duration-slow) var(--ease-out) forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft var(--duration-slow) var(--ease-out) forwards;
}

.animate-fade-in-right {
    animation: fadeInRight var(--duration-slow) var(--ease-out) forwards;
}

.animate-zoom-in {
    animation: zoomIn var(--duration-slow) var(--ease-out) forwards;
}

/* ── Scroll Animation (hidden by default) ── */
[data-animate] {
    opacity: 0;
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-down"] {
    transform: translateY(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(-30px);
}

[data-animate="fade-right"] {
    transform: translateX(30px);
}

[data-animate="zoom"] {
    transform: scale(0.9);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ── Transition Utilities ── */
.transition {
    transition: all var(--duration-normal) var(--ease-default);
}

.transition-fast {
    transition: all var(--duration-fast) var(--ease-default);
}

.transition-slow {
    transition: all var(--duration-slow) var(--ease-default);
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-default);
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-lg);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ── Overlay ── */
.overlay {
    position: fixed;
    inset: 0;
    background-color: var(--bg-overlay);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-default);
}

.overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */

@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .show-mobile-only {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .hide-tablet {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .show-tablet-only {
        display: none !important;
    }
}

/* ── Newsletter Block ── */
.newsletter-block {
    background-color: var(--bg-section-alt);
    padding: var(--space-16) 0;
}

.newsletter-block .newsletter-form {
    display: flex;
    gap: var(--space-2);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-block .newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color var(--duration-normal) var(--ease-default);
}

.newsletter-block .newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
}

@media (max-width: 639px) {
    .newsletter-block .newsletter-form {
        flex-direction: column;
    }
}

/* ── Stat Counter ── */
.stat-card {
    text-align: center;
    padding: var(--space-8);
}

.stat-card .stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-card .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ── Testimonial ── */
.testimonial-card {
    background-color: var(--bg-body);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 2rem;
    color: var(--color-secondary);
    opacity: 0.3;
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
}

.testimonial-card .testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.8;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-card .testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background-color: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.testimonial-card .testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.testimonial-card .testimonial-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ── Feature Card ── */
.feature-card {
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    background-color: var(--bg-body);
    border: 1px solid var(--gray-200);
    transition: all var(--duration-normal) var(--ease-default);
}

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

.feature-card .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background-color: var(--color-primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-6);
}

.feature-card h4 {
    margin-bottom: var(--space-3);
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ==========================================================================
   Video Section
   ========================================================================== */

.video-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

.video-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-default);
}

.video-card:hover .video-card-img {
    transform: scale(1.05);
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 95, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--duration-normal) var(--ease-default);
}

.video-card:hover .video-card-overlay {
    background: rgba(30, 58, 95, 0.65);
}

.video-card-play {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background-color: var(--color-secondary);
    color: var(--gray-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--duration-normal) var(--ease-default);
    box-shadow: 0 0 0 8px rgba(200, 169, 81, 0.3);
}

.video-card:hover .video-card-play {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(200, 169, 81, 0.4);
}

.video-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: var(--gradient-overlay);
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 600;
}

/* ── Video Modal ── */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-default);
}

.video-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    z-index: 1;
}

.video-modal-content iframe,
.video-modal-content video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--duration-normal) var(--ease-default);
    z-index: 1;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Process Timeline
   ========================================================================== */

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-timeline {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
}

.process-step-number {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    position: relative;
    z-index: 1;
}

.process-step-icon {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.process-step h4 {
    margin-bottom: 0.75rem;
    color: var(--text-heading);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.process-step-arrow {
    display: none;
}

@media (min-width: 768px) {
    .process-step-arrow {
        display: flex;
        position: absolute;
        right: -16px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--color-secondary);
        font-size: 1.5rem;
        z-index: 2;
    }

    .process-step:last-child .process-step-arrow {
        display: none;
    }
}

/* ==========================================================================
   Clients Logo Carousel
   ========================================================================== */

.clients-carousel {
    overflow: hidden;
    padding: var(--space-8) 0;
}

.clients-track {
    display: flex;
    gap: 3rem;
    animation: scrollClients 30s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.clients-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    min-width: 140px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all var(--duration-normal) var(--ease-default);
}

.clients-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.clients-logo img {
    max-height: 100%;
    max-width: 140px;
    object-fit: contain;
}

.clients-logo-placeholder {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-400);
    white-space: nowrap;
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Map Placeholder
   ========================================================================== */

.map-placeholder {
    width: 100%;
    min-height: 400px;
    background-color: var(--gray-100);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--gray-400);
    border: 2px dashed var(--gray-300);
}

.map-placeholder i {
    font-size: 3rem;
}

.map-placeholder p {
    margin-bottom: 0;
    color: var(--text-muted);
}

/* ==========================================================================
   Footer CTA
   ========================================================================== */

.footer-cta-section {
    background: var(--gradient-hero);
    padding: var(--space-24) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(200, 169, 81, 0.05);
}

.footer-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(200, 169, 81, 0.05);
}

.footer-cta-content {
    position: relative;
    z-index: 1;
}

.footer-cta-content h2 {
    color: var(--text-white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
}

.footer-cta-content p {
    color: var(--gray-300);
    font-size: 1.125rem;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.footer-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ── Gallery Popup ── */
.gallery-popup {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-normal) var(--ease-default);
}

.gallery-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.gallery-popup-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
}

.gallery-popup-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-popup-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.gallery-popup-close,
.gallery-popup-prev,
.gallery-popup-next {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--duration-normal) var(--ease-default);
}

.gallery-popup-close:hover,
.gallery-popup-prev:hover,
.gallery-popup-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.gallery-popup-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
}

.gallery-popup-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
}

.gallery-popup-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
}
