/* ==========================================================================
   CSS Variables & Foundations
   ========================================================================== */
:root {
    /* Primary Colors */
    --primary: #79b5ac;
    /* Keep the teal as accent */
    --primary-light: #e8f3f1;
    /* Very subtle light teal for backgrounds */
    --primary-hover: #5d9a91;

    /* Secondary Colors */
    --secondary: #1e293b;
    /* Deeper professional slate/navy */
    --secondary-light: #334155;
    --accent: #E5A36A;
    /* Wood tone that matches the deck */

    /* Neutrals */
    --text-main: #1e293b;
    /* Crisp and deep slate for better, professional readability */
    --text-light: #475569;
    /* Neutral gray, not muddy */
    --bg-light: #F8FAFC;
    --bg-body: #F8FAFC;
    /* A completely neutral, very subtle gray background */
    --white: #FFFFFF;

    /* Backgrounds */
    --bg-card: #FFFFFF;

    /* Premium Shadows */
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.08), 0 8px 16px -6px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.15);

    /* Premium Glow */
    --glow-primary: 0 8px 30px rgba(121, 181, 172, 0.3);

    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utilities */
.text-center {
    text-align: center;
}



.subtitle {
    display: block;
    color: var(--secondary-light);
    /* Professional gray instead of primary for subtitles */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.justify-center {
    justify-content: center;
}

.text-gradient {
    background: linear-gradient(120deg, var(--primary) 0%, #a8d0c9 25%, var(--accent) 50%, #a8d0c9 75%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    animation: colorShift 4s linear infinite, glowPulse 2.5s ease-in-out infinite alternate;
    display: inline-block;
}

@keyframes colorShift {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 0 2px rgba(121, 181, 172, 0.3));
    }

    100% {
        filter: drop-shadow(0 0 10px rgba(121, 181, 172, 0.8)) drop-shadow(0 0 15px rgba(229, 163, 106, 0.4));
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    letter-spacing: 0.3px;
}

.btn:active {
    transform: scale(0.97) !important;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 10px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--glow-primary);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(121, 181, 172, 0.4);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    border: 1px solid #E2E8F0;
}

.btn-secondary:hover {
    background-color: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border: 1px solid #CBD5E1;
}

.btn-outline:hover {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background-color: var(--bg-body);
    color: var(--primary-hover);
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(248, 250, 252, 0.85);
    /* Matches --bg-body but translucent */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

.navbar.scrolled {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid #F1F5F9;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.logo .dot {
    color: var(--primary);
    /* Keep just the dot in teal */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: rgba(121, 181, 172, 0.1);
    border: 1px solid rgba(121, 181, 172, 0.2);
    font-size: 1.25rem;
    color: var(--secondary);
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.menu-toggle:hover {
    background: rgba(121, 181, 172, 0.2);
}

.menu-toggle.active i::before {
    content: "\f00d";
    /* FontAwesome X icon */
}

/* ==========================================================================
   Hero Section - Radical Redesign
   ========================================================================== */
.hero {
    position: relative;
    padding-top: 140px;
    /* Reduced top padding for more balanced look */
    padding-bottom: 0;
    /* Removing bottom padding to connect with services */
    background-color: var(--secondary);
    color: var(--white);
    min-height: 100vh;
    /* Full screen experience */
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Moving the background image into an absolute container for better control */
.hero-bg-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    /* Slightly wider for the contained image */
    height: 100%;
    z-index: 0;
    background-color: var(--secondary);
    /* Match bg for seamless contain */
    display: flex;
    align-items: center;
}

.hero-bg-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient to blend the image border into the background */
    background: linear-gradient(90deg, var(--secondary) 0%, rgba(30, 41, 59, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Shows the entire image without any cropping */
    filter: brightness(1.08) contrast(1.15) saturate(1.1);
    /* Slightly more aggressive for better pop */
    transition: var(--transition-slow);
}

.hero-bg-image:hover {
    transform: scale(1.05);
    /* Subtle zoom for interaction */
}

.hero-overlay {
    display: none;
    /* Removing the old full-screen overlay */
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
}

.hero-content {
    max-width: 600px;
    /* Narrower content area for the split look */
    padding: 2rem 0;
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: var(--primary-light);
    border: 1px solid rgba(121, 181, 172, 0.3);
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
    font-size: 4.5rem;
    /* Larger, more impactful typography */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    color: var(--white);
    font-weight: 800;
}

.hero-content p {
    font-size: 1.35rem;
    /* Slightly larger paragraph */
    color: #94a3b8;
    /* Softer slate for the paragraph */
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.stat-desc {
    color: #CBD5E1;
    font-size: 0.875rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: 100px 0;
    background-color: var(--white);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(121, 181, 172, 0.3);
    /* Subtle teal border glow on hover */
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: var(--bg-body);
    /* Neutral gray background for icons */
    color: var(--secondary);
    /* Darker icon color initially */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.service-card:hover .card-icon-wrapper {
    background-color: var(--primary);
    /* Teal only shows up on hover! */
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    /* Dark professional text instead of more green */
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 0.75rem;
    color: var(--primary);
    /* Teal only on hover for an elegant effect */
    /* Small animation to push arrow to the right */
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    padding: 80px 0;
    background-color: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary) 0%, #0f172a 100%);
    position: relative;
    border-radius: 32px;
    padding: 4.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    box-shadow: var(--shadow-xl), 0 20px 40px -10px rgba(15, 23, 42, 0.5);
    overflow: hidden;
}

/* Add a subtle glow inside the CTA box */
.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(121, 181, 172, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #cbd5e1;
    /* Neutral light slate, removing the purple-blue tint */
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Map Section
   ========================================================================== */
.map-section {
    padding-top: 80px;
    background-color: var(--white);
}

.map-container {
    width: 100%;
}

.map-container iframe {
    display: block;
    /* Removes bottom space */
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--bg-body);
    padding: 80px 0 30px 0;
    border-top: 1px solid #E2E8F0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-map iframe {
    transition: var(--transition-normal);
}

.footer-map iframe:hover {
    box-shadow: var(--shadow-md);
}

.footer-brand p {
    color: var(--text-light);
    margin: 1.5rem 0;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #E2E8F0;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 0.25rem;
}

.footer-contact ul li {
    color: var(--text-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact ul li i {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #E2E8F0;
    color: var(--text-light);
    font-size: 0.875rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: var(--primary);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid #E2E8F0;
    background-color: var(--white);
    color: var(--secondary-light);
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover {
    border-color: var(--secondary-light);
    color: var(--secondary);
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 14px 0 rgba(121, 181, 172, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    aspect-ratio: 1 / 1;
    /* Makes images square */
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   Modal/Lightbox
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* Changed from auto */
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    /* Center content vertically when flex */
    justify-content: center;
    /* Center content horizontally when flex */
}

.modal-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.modal-image-container {
    position: relative;
    width: 95%;
    /* Increase width to take more screen space */
    max-width: 1400px;
    /* Optional big max-width */
    height: 85vh;
    /* Reduced slightly to fit caption above */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-content {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
    /* Stronger shadow for the larger image */
    animation: zoom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 0.2s ease;
}

.modal-caption {
    margin-bottom: 15px;
    /* Margin changed to bottom since it's above the image */
    color: var(--white);
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-align: center;
    animation: zoom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2002;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

@keyframes zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2003;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.close-modal:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.gallery-item {
    cursor: pointer;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .main-img {
        max-height: 500px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-map {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: var(--transition-normal);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .nav-links.active {
        right: 0;
    }

    .d-none-mobile {
        display: none;
    }

    .menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-bg-container {
        width: 100%;
        height: 350px;
        position: relative;
    }

    .hero-container {
        margin-top: -50px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-content p {
        font-size: 1.15rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .cta-box {
        flex-direction: column;
        padding: 3rem 1.5rem;
        text-align: center;
        gap: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .modal-image-container {
        height: 70vh;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .card-float {
        left: 10px;
        right: 10px;
        bottom: -20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}