/* RESET / BASE */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f4f5f7;
    color: #1e293b;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-mark {
    background: linear-gradient(135deg, #005F85, #3EB489);
    color: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 700;
    font-size: 14px;
}

.logo-text {
    font-weight: 600;
    letter-spacing: 0.03em;
    font-size: 15px;
    text-transform: uppercase;
    color: #0f172a;
}

.main-nav {
    display: flex;
    gap: 16px;
    font-size: 14px;
}

.main-nav a {
    padding: 6px 10px;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}

.main-nav a:hover {
    background: #e5e7eb;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
}

/* HERO */

.hero {
    padding: 80px 0 60px;
    background: radial-gradient(circle at top left, #e0f2fe 0, transparent 55%),
                radial-gradient(circle at bottom right, #dcfce7 0, transparent 55%),
                #f8fafc;
}

.hero-inner {
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin: 0 0 12px;
    color: #0f172a;
}

.hero-subtitle {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #64748b;
    margin-bottom: 10px;
}

.hero-lead {
    font-size: 18px;
    color: #475569;
    max-width: 550px;
    margin: 0 auto 24px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.1s, box-shadow 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, #005F85, #3EB489);
    color: #fff;
    box-shadow: 0 10px 20px rgba(15, 118, 110, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 14px 30px rgba(15, 118, 110, 0.3);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border-color: #cbd5f5;
    color: #0f172a;
}

.btn-outline:hover {
    background: #e5e7eb;
}

.btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
}

.btn-light:hover {
    background: #ffffff;
}

.btn-dark {
    background: #0f172a;
    color: #f9fafb;
}

.btn-dark:hover {
    background: #020617;
}

/* SECTIONS */

.section-title {
    text-align: center;
    font-size: 26px;
    margin: 0 0 30px;
    color: #0f172a;
}

/* BEREICHE / CARDS */

.bereiche {
    padding: 60px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.card {
    position: relative;
    border-radius: 18px;
    padding: 24px 20px 22px;
    color: #f9fafb;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    gap: 12px;
}a hre

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.25;
    background: radial-gradient(circle at top left, #ffffff 0, transparent 55%);
    pointer-events: none;
}

.card > * {
    position: relative;
    z-index: 1;
}

.card-blue {
    background: #005F85;
}

.card-yellow {
    background: #FFD700;
    color: #1f2933;
}

.card-yellow .btn-dark {
    background: #111827;
}

.card-green {
    background: #3EB489;
}

.card-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.18);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.card-icon {
    font-size: 32px;
    margin-top: 6px;
}

.card h3 {
    margin: 4px 0;
    font-size: 20px;
}

.card-area {
    font-size: 13px;
    opacity: 0.9;
}

.card-text {
    font-size: 14px;
    margin-top: 4px;
}

.card-sublink {
    font-size: 13px;
    margin-top: 8px;
}

.card-sublink a {
    text-decoration: underline;
}

.card-links {
    margin-top: 10px;
    font-size: 13px;
}

.card-links h4 {
    margin: 10px 0 4px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.9;
}

.card-links ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.card-links li {
    margin-bottom: 4px;
}

.card-links a {
    text-decoration: underline;
}

/* KONTAKT */

.contact {
    padding: 60px 0 70px;
    background: #0f172a;
    color: #e5e7eb;
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.contact h2 {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 10px;
}

.contact p {
    margin-top: 0;
}

.contact-hints {
    margin: 16px 0 0;
    padding-left: 20px;
}

.contact-hints li {
    margin-bottom: 6px;
}

/* Form */

.contact-form-wrapper {
    background: #020617;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.8);
}

.contact-form .form-row {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-form label {
    font-size: 13px;
    color: #cbd5f5;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border-radius: 10px;
    border: 1px solid #1f2937;
    padding: 8px 10px;
    font-size: 14px;
    background: #020617;
    color: #e5e7eb;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.4);
    background: #020617;
}

.contact-form button {
    width: 100%;
}

.form-note {
    font-size: 11px;
    color: #9ca3af;
}

/* Alerts */

.alert {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 12px;
}

.alert.success {
    background: rgba(34, 197, 94, 0.12);
    color: #bbf7d0;
    border: 1px solid rgba(34, 197, 94, 0.5);
}

.alert.error {
    background: rgba(239, 68, 68, 0.12);
    color: #fecaca;
    border: 1px solid rgba(239, 68, 68, 0.5);
}

/* FOOTER */

.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    background: #020617;
    color: #9ca3af;
    padding: 14px 0;
    font-size: 13px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-small {
    font-size: 12px;
    opacity: 0.8;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .main-nav {
        position: absolute;
        top: 56px;
        right: 16px;
        background: rgba(15, 23, 42, 0.98);
        padding: 10px;
        border-radius: 12px;
        flex-direction: column;
        align-items: flex-start;
        min-width: 160px;
        display: none;
    }

    .main-nav a {
        color: #e5e7eb;
        width: 100%;
    }

    .main-nav.show {
        display: flex;
    }

    .nav-toggle {
        display: block;
        color: #0f172a;
    }
}

@media (max-width: 600px) {
    .hero-lead {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 16px;
    }
}

/* ===========================
   MODERNI EFEKTI & ANIMACIJE
   (dodato na kraj fajla)
   =========================== */

/* 1) Animirani hero gradient */
.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, #0ea5e9 0, transparent 55%),
                radial-gradient(circle at bottom right, #22c55e 0, transparent 55%),
                #020617;
    background-size: 140% 140%;
    animation: heroGradient 22s ease-in-out infinite;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 0, transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

@keyframes heroGradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

/* 2) Cardovi – 3D hover, glow i animirani gradient */

.card {
    transform: translateY(0) translateZ(0);
    background-size: 180% 180%;
    transition:
        transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
        background-position 6s ease;
}

.card::before {
    /* postojeći ::before ostaje, ovaj stil se nadograđuje */
    mix-blend-mode: soft-light;
}

.card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.85), transparent 60%);
    top: -40%;
    right: -40%;
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.9);
    filter: blur(4px);
    transition:
        opacity 0.45s ease-out,
        transform 0.45s ease-out;
    pointer-events: none;
}

.card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.45);
    background-position: 100% 0%;
}

.card:hover::after {
    opacity: 0.85;
    transform: translate3d(-22%, -15%, 0) scale(1.2);
}

/* Individualni gradijenti po kartici */

.card-blue {
    background: linear-gradient(135deg, #005F85, #1d9ad6);
}

.card-yellow {
    background: linear-gradient(135deg, #FFD700, #f97316);
    color: #111827;
}

.card-green {
    background: linear-gradient(135deg, #3EB489, #16a34a);
}

/* Malo “glass” efekta na sadržaj */

.card {
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

/* Sitni hover efekti na linkove unutar kartica */
.card-links a,
.card-sublink a {
    position: relative;
}

.card-links a::after,
.card-sublink a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.25s ease;
}

.card-links a:hover::after,
.card-sublink a:hover::after {
    width: 100%;
}

/* 3) Dugmad – highlight “wave” efekat + glow na primary */

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
                rgba(255, 255, 255, 0.2),
                rgba(255, 255, 255, 0),
                rgba(255, 255, 255, 0.2));
    transform: translateX(-120%);
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    pointer-events: none;
}

.btn:hover::before {
    transform: translateX(120%);
}

.btn-primary {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.0);
}

.btn-primary:hover {
    box-shadow:
        0 0 25px rgba(56, 189, 248, 0.4),
        0 18px 35px rgba(15, 23, 42, 0.4);
}

.btn:active {
    transform: translateY(1px) scale(0.99);
    box-shadow: none;
}

/* 4) Scroll reveal – ulazak kartica i sekcija */

.reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition:
        opacity 0.65s ease-out,
        transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Lagani delay po karticama zbog lepšeg efekta */
.cards-grid .card:nth-child(1) {
    transition-delay: 0.05s;
}
.cards-grid .card:nth-child(2) {
    transition-delay: 0.12s;
}
.cards-grid .card:nth-child(3) {
    transition-delay: 0.19s;
}

/* 5) Malo poboljšanje kontaktnog boksa */

.contact-form-wrapper {
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.45), transparent 65%);
    top: -110px;
    left: -80px;
    opacity: 0.35;
    pointer-events: none;
    filter: blur(6px);
}
/* HERO – bolji kontrast teksta na tamnoj pozadini */
.hero h1 {
    color: #f9fafb; /* skoro bijelo */
    text-shadow: 0 8px 24px rgba(15, 23, 42, 0.65);
}

.hero-subtitle {
    color: rgba(241, 245, 249, 0.9);
    letter-spacing: 0.18em;
}

.hero-lead {
    color: #cbd5f5;
}

/* Dugmad u hero sekciji – da se bolje vide na tamnoj pozadini */
.hero .btn-primary {
    color: #f9fafb;
}

.hero .btn-outline {
    color: #e5e7eb;
    border-color: rgba(226, 232, 240, 0.85);
    background: transparent;
}

.hero .btn-outline:hover {
    background: rgba(15, 23, 42, 0.45);
    border-color: rgba(226, 232, 240, 1);
}
/* ===========================
   Moderni "Kontakt & Buchung" card
   =========================== */

.contact {
    padding: 80px 0 90px;
    background: #020617;
    color: #e5e7eb;
}

.contact-card {
    position: relative;
    border-radius: 26px;
    padding: 28px 26px;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 60%),
        radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.2), transparent 60%),
        #020617;
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.9);
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.14), transparent 50%);
    opacity: 0.4;
    pointer-events: none;
}

.contact-card > * {
    position: relative;
    z-index: 1;
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: flex-start;
}

/* Header / kicker */

.contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
    margin-bottom: 10px;
}

.contact-kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
}

/* Naslov i tekst */

.contact-text h2 {
    font-size: 26px;
    margin: 0 0 10px;
    color: #f9fafb;
}

.contact-intro {
    margin-top: 0;
    margin-bottom: 22px;
    color: #cbd5f5;
    max-width: 36rem;
    font-size: 15px;
}

/* Tri “pointa” sa ikonama */

.contact-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 6px;
}

.contact-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 12px;
    border-radius: 16px;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9));
    border: 1px solid rgba(51, 65, 85, 0.8);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.7);
    transform: translateY(0);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.contact-point:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.85);
    background: radial-gradient(circle at top left, rgba(30, 64, 175, 0.9), rgba(15, 23, 42, 0.95));
}

.cp-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: radial-gradient(circle, rgba(248, 250, 252, 0.95), rgba(148, 163, 184, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.6);
}

.cp-text h3 {
    margin: 0 0 4px;
    font-size: 15px;
    color: #f9fafb;
}

.cp-text p {
    margin: 0;
    font-size: 14px;
    color: #e5e7eb;
}

/* Forma malo zbijenija i modernija */

.contact-form-wrapper {
    background: rgba(15, 23, 42, 0.96);
    border-radius: 20px;
    padding: 22px 20px 18px;
    border: 1px solid rgba(51, 65, 85, 0.9);
}

/* Responsive prilagodba */

@media (max-width: 900px) {
    .contact-card {
        padding: 22px 18px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .contact-text h2 {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .contact {
        padding-top: 60px;
        padding-bottom: 70px;
    }

    .contact-card {
        border-radius: 20px;
    }
}
/* ===========================
   Scroll To Top Button
   =========================== */

.scroll-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3EB489, #005F85);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 999;
}

.scroll-to-top:hover {
    box-shadow: 0 14px 35px rgba(0,0,0,0.45);
    transform: translateY(0) scale(1.07);
}

/* Kada je vidljivo */
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Footer credit link styling */
.footer-credit {
    font-weight: 600;
    color: #3EB489;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

.footer-credit::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #3EB489;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.footer-credit:hover {
    color: #55d0a7;
}

.footer-credit:hover::after {
    width: 100%;
}

/* ===========================
   PAGE LOADER
   =========================== */

.page-loader {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #0f172a 0, #020617 45%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.loader-logo {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: linear-gradient(135deg, #3EB489, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    color: #f9fafb;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.loader-spinner {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 3px solid rgba(148, 163, 184, 0.4);
    border-top-color: #e5e7eb;
    animation: loaderSpin 1s linear infinite;
}

.loader-text {
    font-size: 13px;
    color: #e5e7eb;
    opacity: 0.8;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ===========================
   Scroll To Top Button
   =========================== */

.scroll-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3EB489, #005F85);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 998;
}

.scroll-to-top:hover {
    box-shadow: 0 14px 35px rgba(0,0,0,0.45);
    transform: translateY(0) scale(1.07);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===========================
   WhatsApp floating button
   =========================== */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 82px; /* iznad scroll-to-top dugmeta */
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 25px rgba(34, 197, 94, 0.7);
    z-index: 998;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 40px rgba(34, 197, 94, 0.9);
    background: #16a34a;
}

.wa-icon {
    font-size: 22px;
    color: #f9fafb;
}

/* Na manjim ekranima malo bliže ivici */
@media (max-width: 600px) {
    .whatsapp-float,
    .scroll-to-top {
        right: 16px;
        bottom: 18px;
    }

    .whatsapp-float {
        bottom: 72px;
    }
}

/* Footer credit link styling */
.footer-credit {
    font-weight: 600;
    color: #3EB489;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

.footer-credit::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background: #3EB489;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.footer-credit:hover {
    color: #55d0a7;
}

.footer-credit:hover::after {
    width: 100%;
}
.main-nav a.nav-primary {
    background: linear-gradient(135deg, #3EB489, #0ea5e9);
    color: #f9fafb;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.3);
}

.main-nav a.nav-primary:hover {
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.45);
}
.hero-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
}

.hero-photo img {
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.6);
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 900px) {
    .hero-two-col {
        grid-template-columns: 1fr;
    }
}
