@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
    overflow-x: hidden;
    background-color: #ffffff;
}

h1 {
    font-size: clamp(2rem, 1.4rem + 2.4vw, 3.75rem) !important;
}

h2 {
    font-size: clamp(1.625rem, 1.25rem + 1.5vw, 3rem) !important;
}

h3 {
    font-size: clamp(1.375rem, 1.15rem + 0.9vw, 2rem) !important;
}

h4 {
    font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem) !important;
}

h5 {
    font-size: clamp(1.125rem, 1.02rem + 0.4vw, 1.25rem) !important;
}

h6 {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem) !important;
}

button {
    font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.125rem) !important;
}

.hero-start-below-header {
    margin-top: 0;
}

.nav-logo-link {
    max-width: 100%;
}

.nav-logo-image,
.footer-logo-image {
    --logo-height: clamp(2.125rem, 1.75rem + 1.8vw, 4.0625rem);
    display: block;
    width: auto;
    height: var(--logo-height);
    max-width: 100%;
    object-fit: contain;
}

.hero-dark-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.hero-gradient {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-bg-image {
    object-position: 58% 16%;
}

.home-hero-bg-image {
    object-position: center center;
}

.home-hero-background {
    background-image: url('../images/big-ben-westminster-bridge-sunset-london-uk.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.services-hero {
    min-height: 100dvh;
}

#about-hero .about-hero-bg-image {
    object-position: center 12%;
}

@media (max-width: 767px) {
    .hero-bg-image {
        object-position: 42% 10%;
    }

    .home-hero-bg-image {
        object-position: center center;
    }

    #about-hero {
        min-height: 820px;
    }

    #about-hero .about-hero-bg-image {
        object-position: center 10%;
    }

    #hero-content {
        padding-top: 2.5rem;
        padding-bottom: 2rem;
    }
}

.transition-soft {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#nav-links a.selected {
    color: #0f172a;
    position: relative;
}

#nav-links a.selected::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: #0f172a;
    border-radius: 999px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}

.service-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.accordion-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.accordion-content.is-open {
    opacity: 1;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

#enquiry-form input,
#enquiry-form select,
#enquiry-form textarea {
    transition: border-color 0.2s ease, outline-color 0.2s ease, outline-offset 0.2s ease, box-shadow 0.2s ease;
}

#enquiry-form input:focus,
#enquiry-form select:focus,
#enquiry-form textarea:focus {
    border-color: transparent;
    outline: 2px solid #000000;
    outline-offset: 1px;
    box-shadow: none !important;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #20c05c;
    border: 1px solid #ffffff;
    color: #ffffff !important;
}

.whatsapp-btn:hover {
    background-color: #1ba24e;
}

.whatsapp-btn .whatsapp-icon {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}
