/* ============================================
   CSS VARIABLES - Edit colors here for global changes
   ============================================ */
:root {
    /* Primary Colors */
    --color-primary: #008cff;           /* Tropical Blue - Main accent color */
    --color-primary-hover: #008cff;     /* Lighter blue for hover states */
    --color-primary-dark: #2D2D2D;       /* Dark gray for backgrounds */
    --color-primary-darker: #1A1A1A;    /* Darker gray for footer */
    
    /* Text Colors */
    --color-text-primary: #111827;       /* Main text color */
    --color-text-secondary: #4B5563;    /* Secondary text */
    --color-text-light: #6B7280;        /* Light text */
    --color-text-muted: #9CA3AF;         /* Muted text */
    --color-text-white: #ffffff;         /* White text */
    --color-text-gray-light: #D1D5DB;   /* Light gray text */
    
    /* Background Colors */
    --color-bg-white: #ffffff;           /* White background */
    --color-bg-gray-light: #F9FAFB;      /* Light gray background */
    --color-bg-gray-lighter: #F3F4F6;   /* Lighter gray for borders */
    
    /* Overlay Colors */
    --color-overlay-dark: rgba(45, 45, 45, 0.8);  /* Dark overlay */
    --color-overlay-light: rgba(255, 255, 255, 0.1); /* Light overlay */
    --color-overlay-border: rgba(255, 255, 255, 0.5); /* Overlay border */
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg-white);
    color: var(--color-text-primary);
    overflow-x: hidden;
}

@media (max-width: 767px) {
    html {
        background-color: var(--color-primary-dark);
    }
    body {
        background-color: var(--color-primary-dark);
        max-width: 100vw;
        overflow-x: hidden;
    }
    .hero-about-section,
    .hero-services-section,
    .hero-contact-section {
        background-color: #2D2D2D;
    }
    .hero,
    .stats,
    .section,
    .operations,
    .site-work-image-section,
    .footer {
        max-width: 100%;
        overflow-x: hidden;
    }
    .hero .hero-background {
        position: absolute !important;
        inset: 0 !important;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
}

/* Smooth Scroll - prevent horizontal scroll on mobile */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    max-width: 100%;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Mobile padding - 5% on left and right */
@media (max-width: 767px) {
    .container {
        padding-left: 5%;
        padding-right: 5%;
    }
}

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

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

/* ============================================
   NAVBAR STYLES
   ============================================ */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 50;
    background-color: transparent;
    color: var(--color-text-white);
    border-bottom: none;
    transition: all 0.3s ease-in-out;
}

.navbar.scrolled {
    background-color: rgba(45, 45, 45, 0.95);
    border-bottom: 4px solid var(--color-primary);
}

@media (max-width: 767px) {
    .navbar.menu-open {
        background-color: rgba(45, 45, 45, 0.95);
        border-bottom: 4px solid var(--color-primary);
    }
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 96px;
    transition: height 0.3s ease-in-out;
}

.navbar.shrink .navbar-content {
    height: 80px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 767px) {
    .navbar-brand {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    
    .navbar.scrolled .navbar-brand {
        filter: none;
    }
}

.navbar-logo-img {
    height: 4rem;
    width: auto;
    object-fit: contain;
    display: block;
    transition: height 0.3s ease-in-out;
}

.navbar.shrink .navbar-logo-img {
    height: 3.33rem;
}

.navbar-title {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    font-style: italic;
}

@media (max-width: 767px) {
    .navbar-title {
        display: none;
    }
}

.navbar-title-accent {
    color: var(--color-primary);
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .navbar-links {
        display: flex;
    }
}

.navbar-link {
    color: var(--color-text-white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.navbar-link:hover {
    color: var(--color-primary);
}

.navbar-link.active {
    color: var(--color-primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.navbar-cta {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 0.125rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.navbar-cta:hover {
    background-color: var(--color-primary-hover);
}

.navbar-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--color-text-white);
    padding: 0.5rem;
    cursor: pointer;
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    top: 96px;
    right: -100%;
    width: 100%;
    height: 60vh;
    overflow-y: auto;
    background-color: transparent;
    border-bottom: none;
    padding: 0;
    transition: right 0.3s ease-in-out, background-color 0.3s ease-in-out, top 0.3s ease-in-out;
    z-index: 49;
}

.navbar.shrink .navbar-mobile {
    top: 80px;
}

.navbar-mobile.open {
    right: 0;
}

@media (max-width: 767px) {
    .navbar-mobile.open {
        background-color: rgba(45, 45, 45, 0.95);
        border-bottom: 4px solid var(--color-primary);
    }
}

.navbar-mobile-content {
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    justify-content: flex-start;
}

@media (max-width: 767px) {
    .navbar-mobile-content {
        padding-left: 5%;
        padding-right: 5%;
    }
}

.navbar-mobile-link {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--color-text-white);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.75rem 0;
}

.navbar-mobile-link:hover,
.navbar-mobile-link.accent {
    color: var(--color-primary);
}

.navbar-mobile-phone {
    margin-top: auto;
    padding-top: 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-white) !important;
    text-align: center;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: transparent;
}

.navbar-mobile-phone:hover,
.navbar-mobile-phone:focus,
.navbar-mobile-phone:active,
.navbar-mobile-phone:visited {
    color: var(--color-text-white) !important;
    text-decoration: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    max-width: 100%;
    overflow: hidden;
}

.hero-background video,
.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) brightness(40%);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-overlay-dark), transparent);
}

@media (max-width: 767px) {
    .hero-overlay {
        background: linear-gradient(to right, rgba(45, 45, 45, 0.7), transparent);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .hero-content {
        padding-left: 5%;
        padding-right: 5%;
        box-sizing: border-box;
    }
    .hero-inner {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
}

.hero-inner {
    max-width: 48rem;
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    padding: 0.25rem 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.hero-title {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--color-text-white);
    text-transform: uppercase;
    font-style: italic;
    line-height: 1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 767px) {
    .hero-title {
        font-size: clamp(1.54rem, 6.16vw, 2.31rem);
        overflow-wrap: break-word;
        word-wrap: break-word;
        word-break: break-word;
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.2rem;
    }
}

.hero-title-accent {
    color: var(--color-primary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-gray-light);
    margin-bottom: 2.5rem;
    max-width: 36rem;
    font-weight: 500;
    line-height: 1.75;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    opacity: 0;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-button-primary {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-text-white);
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-button-primary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-white);
}

.hero-button-secondary {
    background-color: var(--color-overlay-light);
    backdrop-filter: blur(12px);
    color: var(--color-text-white);
    border: 2px solid var(--color-overlay-border);
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.hero-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 33.333333%;
    height: 6rem;
    background-color: var(--color-primary);
    display: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    opacity: 0;
    transform: translateX(48px) translateY(48px) skewX(-45deg);
}

@media (min-width: 1024px) {
    .hero-decoration {
        display: block;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background-color: var(--color-primary-dark);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

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

.stats-item {
    padding: 1.5rem;
    border-left: 4px solid var(--color-primary);
}

.stats-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.stats-number[data-is-text="true"] {
    opacity: 0;
}

.stats-label {
    color: var(--color-primary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

@media (max-width: 418px) {
    .stats-number {
        font-size: 2rem;
    }
    
    .stats-label {
        font-size: 0.75rem;
    }
    
    .stats-item {
        padding: 1rem;
    }
    
    .stats-grid {
        gap: 1rem;
    }
}

.stats-background {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.05;
    pointer-events: none;
}

.stats-background-text {
    font-size: 200px;
    font-weight: 900;
    color: var(--color-text-white);
    line-height: 1;
}

@media (max-width: 767px) {
    .stats-background-text {
        font-size: 80px;
        white-space: nowrap;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .stats-background {
        right: 0;
        left: auto;
        transform: translateX(0);
        max-width: 100%;
        overflow: hidden;
    }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 2.5rem 0;
    background-color: var(--color-bg-white);
    position: relative;
    z-index: 1;
}

.section.section--height-660 {
    height: 660px;
}

@media (max-width: 767px) {
    .section.section--height-660 {
        height: auto;
        min-height: 0;
    }
}

.section-title-small {
    color: var(--color-primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    line-height: 1.25;
    font-style: italic;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-title-accent {
    color: var(--color-primary);
}

.projects-title-icon {
    color: var(--color-primary);
    height: 4.5rem;
    width: auto;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.projects-title-icon-img {
    width: 4.5rem;
    height: 4.5rem;
    object-fit: contain;
}

@media (min-width: 768px) {
    .projects-title-icon {
        height: 5.5rem;
    }
    .projects-title-icon-img {
        width: 5.5rem;
        height: 5.5rem;
    }
}

@media (max-width: 767px) {
    #projects-map .container > div {
        min-width: 0;
    }
    #projects-map .projects-map-header,
    #projects-map .container > div > div:first-child {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        gap: 0.5rem;
        justify-content: flex-start;
        align-items: center;
    }
    #projects-map .projects-map-header > div:first-child,
    #projects-map .container > div > div:first-child > div:first-child {
        flex: none;
    }
    #projects-map .projects-title-icon {
        width: 72px;
        height: 72px;
        flex-shrink: 0;
        margin-top: 1rem;
    }
    #projects-map .projects-title-icon-img {
        width: 72px;
        height: 72px;
        min-width: 72px;
        min-height: 72px;
        max-width: 72px;
        max-height: 72px;
        object-fit: contain;
    }
    #projects-map .section-title {
        overflow-wrap: break-word;
        word-break: break-word;
        font-size: 2.25rem;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 767px) {
    .about-grid {
        gap: 2rem;
    }
}

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

.about-image-wrapper {
    position: relative;
    margin-bottom: 0;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1000ms ease-out, transform 1000ms ease-out;
}

.about-image-wrapper.animate-in {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 767px) {
    .about-image-wrapper {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .about-image-wrapper {
        margin-bottom: 0;
    }
}

.about-accent {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 200px;
    height: 200px;
    background-color: var(--color-primary);
    z-index: -10;
}

@media (min-width: 768px) {
    .about-accent {
        width: 200px;
        height: 200px;
    }
}

.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.308);
}

.about-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: var(--color-primary-dark);
    padding: 1.5rem;
    color: var(--color-text-white);
    max-width: 180px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-left: 4px solid var(--color-primary);
}

@media (max-width: 767px) {
    .about-badge {
        display: none;
    }
}

@media (min-width: 768px) {
    .about-badge {
        max-width: 20rem;
        padding: 2rem;
        bottom: 2rem;
        left: 2rem;
        display: block;
    }
}

.about-badge-number {
    font-size: 1.875rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .about-badge-number {
        font-size: 2.25rem;
        margin-bottom: 0.5rem;
    }
}

.about-badge-text {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: 0.625rem;
    color: var(--color-primary);
    line-height: 1.25;
}

@media (min-width: 768px) {
    .about-badge-text {
        font-size: 0.75rem;
    }
}

.about-content {
    margin-top: 2rem;
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 1000ms ease-out, transform 1000ms ease-out;
}

.about-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

@media (min-width: 768px) {
    .about-content {
        margin-top: 0;
    }
}

.about-subtitle {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    line-height: 1.25;
    font-style: italic;
    margin-bottom: 2rem;
}

.about-text {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-button {
    border: 4px solid currentColor;
    color: var(--color-primary);
    padding: 0.75rem 2rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.about-button:hover {
    background: var(--color-primary);
    color: var(--color-text-white);
    border-color: var(--color-primary);
}

.about-divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-bg-gray-lighter);
    margin: 2rem 0;
}

.about-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 2rem;
}

.about-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.about-feature-icon {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.about-feature-tagline {
    color: var(--color-text-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services.section {
    background-color: #ececec;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

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

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

.service-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    border: 1px solid var(--color-bg-gray-lighter);
    background-color: var(--color-bg-white);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 4;
    transition: background 0.5s ease, height 0.5s ease;
    pointer-events: none;
}

.service-card:hover::before {
    background: var(--color-primary);
    height: 100%;
}

.service-card::after {
    content: 'WILLIAMS';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    font-size: clamp(50px, 20vw, 120px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
    z-index: 6;
    overflow: hidden;
    transition: height 0.5s ease;
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.service-card:hover::before {
    height: 100%;
    background: var(--color-primary);
}

@media (min-width: 768px) {
    .service-card::before {
        background: rgba(0, 0, 0, 0.5);
        height: 100%;
        transition: background 0.5s ease;
    }
    
    .service-card:hover::before {
        height: 100%;
        background: var(--color-primary);
    }
    
    .service-card::after {
        font-size: clamp(70px, 10vw, 120px);
        transition: height 0.5s ease;
    }
    
    .service-card:hover::after {
        height: 100%;
    }
}

@media (min-width: 1024px) {
    .service-card::after {
        font-size: clamp(90px, 8vw, 140px);
    }
}

.service-card:nth-child(even) {
    background-color: var(--color-bg-gray-light);
}

.service-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.service-card:hover .service-card-image {
    opacity: 0.5;
}

@media (min-width: 768px) {
    .service-card:hover .service-card-image {
        opacity: 0.3;
    }
}

.service-card-content {
    position: relative;
    z-index: 10;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (max-width: 767px) {
    .service-card-content {
        justify-content: flex-start;
        padding-top: 35%;
    }
}

@media (min-width: 768px) {
    .service-card-content {
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
    }
    
    .service-card:hover .service-card-content {
        justify-content: center;
        align-items: flex-start;
        text-align: left;
    }
}

.service-card-icon {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--color-text-white);
}

@media (min-width: 768px) {
    .service-card-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        color: var(--color-text-white);
        transition: all 0.3s ease;
        width: auto;
        text-align: center;
    }
    
    .service-card:hover .service-card-title {
        position: absolute;
        top: calc(50% - 6rem);
        left: 2.5rem;
        transform: translate(0, 0);
        margin: 0;
        color: var(--color-text-white);
        text-align: left;
    }
}

.service-card-description {
    color: var(--color-text-white);
    font-weight: bold;
    line-height: 1.75;
    margin-bottom: auto;
}

@media (min-width: 768px) {
    .service-card-description {
        position: absolute;
        top: 50%;
        left: 2.5rem;
        right: 2.5rem;
        transform: translateY(-50%);
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        margin: 0;
        padding: 0;
        transition: opacity 0.3s ease 0.2s, max-height 0.3s ease 0.2s, color 0.3s ease, transform 0.3s ease 0.2s;
    }
    
    .service-card:hover .service-card-description {
        opacity: 1;
        max-height: 150px;
        color: var(--color-text-white);
        transform: translateY(-50%);
    }
}

.service-card-link {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    outline: none;
    color: var(--color-primary);
    padding: 0.75rem 2rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    font-size: 1rem;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .service-card-link {
        position: absolute;
        top: calc(50% + 4rem);
        left: 2.5rem;
        opacity: 0;
        transform: translateY(1rem);
        transition: all 0.3s ease 0.2s;
        margin-top: 0;
    }
    
    .service-card:hover .service-card-link {
        transform: translateY(0);
    }
}

.service-card-link svg {
    transition: all 0.3s ease;
}

.service-card:hover .service-card-link {
    opacity: 1;
    transform: translateY(0);
    background: transparent;
    color: var(--color-text-white);
}

.service-card:hover .service-card-link svg {
    stroke: var(--color-text-white);
}

@media (max-width: 767px) {
    .service-card-link {
        opacity: 1;
        transform: translateY(0);
        color: var(--color-text-white);
    }
    
    .service-card-link svg {
        stroke: var(--color-text-white);
    }
    
    .service-card-link:hover {
        background: transparent;
        color: var(--color-text-white);
    }
    
    .service-card-link:hover svg {
        stroke: var(--color-text-white);
    }
}

.service-card-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--color-primary);
    transition: width 0.5s ease;
}

.service-card:hover .service-card-bar {
    width: 100%;
}

/* ============================================
   SERVICES INTRO SECTION
   ============================================ */
.services-intro-section {
    background: linear-gradient(to bottom, var(--color-bg-white) 0%, var(--color-bg-white) 60%, #ececec 100%);
}

.services-intro-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .services-intro-images {
        grid-template-columns: 1fr;
    }
}

.services-intro-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.308);
}

.services-intro-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    min-height: 300px;
}

@media (min-width: 768px) {
    .services-intro-image {
        min-height: 400px;
    }
}

.services-intro-badge {
    position: absolute;
    background-color: var(--color-primary-dark);
    padding: 2rem;
    color: var(--color-text-white);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-left: 4px solid var(--color-primary);
    z-index: 10;
    text-align: center;
    min-width: 200px;
    /* Position to overlap the gap between the two images - responsive percentage-based */
    left: calc(50% + 0.75rem);
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
    .services-intro-badge {
        padding: 1.5rem;
        min-width: 160px;
        /* On mobile, stack images vertically; badge overlaps the middle (gap between them) */
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (min-width: 768px) {
    .services-intro-badge {
        /* Fine-tune position for tablet and desktop */
        left: calc(50% + 0.75rem);
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

.services-intro-badge-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 0.5rem;
    line-height: 1;
}

@media (min-width: 768px) {
    .services-intro-badge-number {
        font-size: 3rem;
    }
}

.services-intro-badge-text {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: var(--color-primary);
    line-height: 1.25;
    margin: 0;
}

@media (min-width: 768px) {
    .services-intro-badge-text {
        font-size: 0.875rem;
    }
}

/* ============================================
   SERVICES LIST PAGE
   ============================================ */
.services-list-container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-list-item {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-bg-gray-lighter);
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.service-list-item:hover {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15);
}

.service-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-list-header:hover {
    background-color: var(--color-bg-gray-light);
}

.service-list-header.active {
    background-color: var(--color-bg-gray-light);
}

.service-list-header-content {
    flex: 1;
}

.service-list-title {
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    color: var(--color-primary-dark);
    margin-bottom: 0.75rem;
}

.service-list-description {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.75;
    margin: 0;
}

.service-list-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.3s ease, color 0.3s ease;
    margin-left: 2rem;
}

.service-list-header.active .service-list-toggle {
    transform: rotate(180deg);
}

.service-list-toggle:hover {
    color: var(--color-primary-dark);
}

.service-list-toggle-icon {
    width: 24px;
    height: 24px;
}

.service-list-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    background-color: var(--color-bg-gray-light);
}

.service-list-details.expanded {
    max-height: 2000px;
}

.service-list-details-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
}

@media (min-width: 768px) {
    .service-list-details-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.service-list-details-image {
    width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
}

.service-list-details-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.service-list-details-text {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.75;
}

.service-list-details-text p {
    margin-bottom: 1.5rem;
}

.service-list-details-text p:last-child {
    margin-bottom: 0;
}

/* ============================================
   PROJECTS MAP SECTION
   ============================================ */
.projects-map-section {
    background-color: var(--color-bg-gray-light);
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--color-bg-white);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.map-hotspot {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary);
    border: 3px solid var(--color-text-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    opacity: 0;
}

.map-hotspot.animate-in {
    animation: hotspotPopIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.map-hotspot:hover {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: var(--color-primary-hover);
    box-shadow: 0 8px 12px -2px rgba(0, 0, 0, 0.4);
}

.map-hotspot.active {
    background-color: var(--color-primary-hover);
    transform: translate(-50%, -50%) scale(1.2);
}

.map-hotspot.animate-in:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.map-hotspot.animate-in.active {
    transform: translate(-50%, -50%) scale(1.2);
}

.hotspot-icon {
    color: var(--color-text-white);
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) and (max-width: 1078px) {
    .map-hotspot {
        width: 44px;
        height: 44px;
    }
    
    .hotspot-icon {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .map-hotspot {
        width: 36px;
        height: 36px;
    }
    
    .hotspot-icon {
        font-size: 18px;
    }
}

/* Map Popup Overlay - Independent of map section, always visible on viewport */
.map-popup-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.map-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.map-popup {
    background-color: var(--color-bg-white);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    margin: auto;
}

.map-popup-overlay.active .map-popup {
    transform: scale(1);
}

.map-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary-dark);
    color: var(--color-text-white);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-weight: bold;
}

.map-popup-close:hover {
    background-color: var(--color-primary);
    transform: rotate(90deg);
}

.map-popup-content {
    display: flex;
    flex-direction: column;
}

.map-popup-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--color-bg-gray-light);
}

.map-popup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-popup-text {
    padding: 2rem;
}

.map-popup-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 1rem;
}

.map-popup-description {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.map-popup-location {
    color: var(--color-primary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--color-bg-gray-lighter);
}

@media (min-width: 768px) and (max-width: 1078px) {
    .map-popup {
        max-width: 90%;
    }
    
    .map-popup-image-wrapper {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .map-popup-overlay {
        padding: 1rem;
    }
    
    .map-popup {
        max-width: 90%;
        width: 100%;
    }
    
    .map-popup-image-wrapper {
        height: 250px;
    }
    
    .map-popup-text {
        padding: 1.5rem;
    }
    
    .map-popup-title {
        font-size: 1.5rem;
    }
    
    .map-popup-description {
        font-size: 1rem;
    }
}

/* ============================================
   OPERATIONS SECTION
   ============================================ */
.operations {
    background-color: var(--color-bg-white);
    padding-bottom: 6rem;
    position: relative;
    z-index: 1;
}

.operations-card {
    background-color: var(--color-primary-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .operations-card {
        flex-direction: row;
    }
}

.operations-content {
    width: 100%;
    padding: 3rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .operations-content {
        padding: 5rem;
    }
}

@media (min-width: 1024px) {
    .operations-content {
        width: 50%;
    }
}

.operations-bg-text {
    color: var(--color-primary);
    font-weight: 900;
    font-size: 3.75rem;
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    left: 1rem;
    pointer-events: none;
    text-transform: uppercase;
}

.operations-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--color-text-white);
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.operations-title-accent {
    color: var(--color-primary);
}

.operations-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.operations-item {
    display: flex;
    gap: 1rem;
}

.operations-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--color-primary-dark);
    font-size: 1.25rem;
}

.operations-item-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-text-white);
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.operations-item-text {
    color: var(--color-text-muted);
    font-weight: 500;
    line-height: 1.75;
}

.operations-link {
    margin-top: 3rem;
    color: var(--color-primary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    padding: 1rem 2rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.operations-link .operations-link-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.operations-link:hover {
    transform: translateX(0.5rem);
}

@media (max-width: 767px) {
    .operations-link {
        gap: 0.4rem;
        padding: 1rem 1.5rem;
        border: 2px solid var(--color-primary);
        border-radius: 4px;
        background-color: transparent;
    }
    .operations-link .operations-link-arrow {
        width: 32px;
        height: 32px;
    }
}

.operations-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .operations-image {
        width: 50%;
        height: auto;
    }
}

@media (max-width: 767px) {
    .operations-image {
        display: none;
    }
}

.operations-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.operations-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   SITE WORK IMAGE SECTION
   ============================================ */
.site-work-image-section {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.site-work-image-section-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
    object-fit: cover;
    object-position: center;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.testimonial-card {
    background-color: var(--color-bg-gray-light);
    padding: 2.5rem;
    position: relative;
}

.testimonial-quote {
    font-size: 3.75rem;
    color: var(--color-primary);
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: serif;
}

.testimonial-text {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-style: italic;
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

.testimonial-name {
    font-weight: 900;
    color: var(--color-primary-dark);
    text-transform: uppercase;
    font-style: italic;
}

.testimonial-role {
    color: var(--color-primary);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider-track {
    position: relative;
}

.testimonials-slider .testimonial-card {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    pointer-events: none;
}

.testimonials-slider .testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    pointer-events: auto;
}

.testimonials-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonials-slider-arrow {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonials-slider-arrow:hover {
    background-color: var(--color-primary-dark);
    transform: scale(1.1);
}

.testimonials-slider-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

.testimonials-slider-arrow:disabled:hover {
    background-color: var(--color-primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--color-primary-darker);
    color: var(--color-text-white);
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

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

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

.footer-brand {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 2;
    }
}

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

.footer-logo-img {
    height: 4rem;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.footer-logo-text {
    font-size: 1.875rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
}

.footer-logo-accent {
    color: var(--color-primary);
}

.footer-description {
    color: var(--color-text-muted);
    max-width: 24rem;
    margin-bottom: 2rem;
    line-height: 1.75;
}

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

.footer-social-item {
    width: 2.5rem;
    height: 2.5rem;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.footer-social-item:hover {
    background-color: transparent;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.footer-social-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.footer-social-item:hover img {
    filter: brightness(0) invert(1);
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.footer-link {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact-item {
    color: var(--color-text-muted);
    font-weight: 500;
}

.footer-contact-item.bold {
    color: var(--color-text-white);
    font-weight: bold;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: transparent;
}

a.footer-contact-item.bold,
a.footer-contact-item.bold:hover,
a.footer-contact-item.bold:focus,
a.footer-contact-item.bold:active,
a.footer-contact-item.bold:visited {
    color: var(--color-text-white) !important;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: transparent;
}

.footer-contact-item.accent {
    color: var(--color-primary);
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 767px) {
    .footer-contact-item.bold,
    .footer-contact-item.accent {
        color: var(--color-text-white) !important;
        -webkit-tap-highlight-color: transparent;
        tap-highlight-color: transparent;
    }
    .footer-contact-item.accent {
        text-decoration: none;
    }
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

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

.footer-bottom-link {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--color-text-white);
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px) translateY(48px) skewX(-45deg);
    }
    to {
        opacity: 1;
        transform: translateX(48px) translateY(48px) skewX(-45deg);
    }
}

@keyframes hotspotPopIn {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Hotspot positions are now handled dynamically by JavaScript for all breakpoints */

