@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap');

:root {
    /* Brand Colors */
    --navy: #0d2438;
    --lime: #d6fd51;
    --vanilla: #eefeb8;
}

/* Global Font */
body {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.gabarito-regular {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.gabarito-medium {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.gabarito-semibold {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.gabarito-bold {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.gabarito-extrabold {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.gabarito-black {
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

/* Header Styles */
.header-main {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-height: 80px;
    height: 80px;
    width: auto;
    display: block;
}

@media (max-width: 767px) {
    .logo {
        max-height: 50px;
        height: 50px;
    }
}

.logo-link {
    display: inline-block;
    line-height: 0;
}

.opening-hours small {
    line-height: 1.3;
}

.live-chat-btn {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.live-chat-btn:hover {
    transform: scale(1.05);
}

.live-chat-icon {
    width: 60px;
    height: 60px;
}

.feefo-award-img {
    width: 80px;
    height: auto;
}

.navbar-toggler-icon {
    background-image: none;
    width: 1.5em;
    height: 1.5em;
    position: relative;
    display: inline-block;
}

.navbar-toggler-icon::before {
    content: "☰";
    font-size: 1.5rem;
    color: var(--lime);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Navigation Styles */
.navbar {
    padding: 0;
}

.navbar-nav {
    width: 100%;
}

.navbar-nav .nav-item {
    flex: 1;
    text-align: center;
}

.navbar-nav .nav-link {
    padding: 1rem 0.5rem;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    text-align: center;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(13, 36, 56, 0.1);
    border-radius: 4px;
}

.navbar-nav .nav-link.active {
    background-color: var(--lime) !important;
    border-radius: 4px;
}

/* Hero Section */
.hero-wrapper {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--navy) 20%, transparent 100%);
}

.hero-wrapper .container-fluid,
.hero-wrapper .container {
    position: relative;
    z-index: 1;
    height: 100%;
}

.hero-content {
    color: white;
    padding: 3rem 2rem;
}

.hero-content-inner {
    max-width: 600px;
}

.hero-content h1 {
    color: white;
}

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

.hero-image {
    min-height: 400px;
}

/* Hide hero-image background on desktop - it shows on wrapper instead */
@media (min-width: 768px) {
    .hero-image {
        background-image: none !important;
    }
}

.min-vh-75 {
    min-height: 75vh;
}

.feefo-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.feefo-rating .stars {
    color: #FFD700;
}

.btn-lime {
    background-color: var(--lime);
    color: var(--navy);
    border: none;
    font-weight: bold;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-lime:hover {
    background-color: var(--lime);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 253, 81, 0.4);
}

.price {
    color: var(--lime);
    font-size: 1.2rem;
}

/* Steps Section */
.steps-section {
    background-color: white;
    padding: 3rem 0;
}

.step-item {
    height: 100%;
}

.step-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 100%;
    gap: 1.5rem;
}

.step-image-box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 180px;
    max-width: 180px;
    flex-shrink: 0;
}

.step-number-label {
    display: none;
}

.step-img {
    width: 100%;
    max-width: 150px;
    height: auto;
}

.step-text {
    text-align: left;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.step-heading {
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.step-desc {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Contact Info Section */
.contact-info-section {
    background-color: var(--navy);
}

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--lime);
}

.contact-info-card h4 {
    color: var(--lime);
}

.contact-info-card a {
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--lime) !important;
}

/* Contact Section */
.contact-wrapper {
    position: relative;
    background-image: url('../images/photos/house_garage.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--vanilla) 0%, transparent 100%);
}

.contact-wrapper .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    padding: 3rem 2rem;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 0.2rem rgba(214, 253, 81, 0.25);
}

.contact-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Footer Styles */
.footer-main {
    background-color: var(--navy);
    color: white;
    padding: 2rem 0 1.5rem 0;
}

.footer-logo {
    max-height: 60px;
    height: 60px;
    width: auto;
    display: block;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: white !important;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 0 0.25rem;
}

.footer-link:hover {
    color: var(--lime) !important;
}

.footer-divider {
    color: var(--lime);
    opacity: 1;
}

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

.feefo-score-img {
    height: 40px;
    width: auto;
}

.footer-company-info {
    color: white;
    opacity: 0.9;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .logo {
        max-height: 50px;
    }
    
    .navbar-collapse {
        background-color: white;
        margin-top: 0.5rem;
        padding: 1rem;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Mobile Hero Adjustments */
    .hero-wrapper {
        min-height: auto;
        background-image: none !important;
    }
    
    .hero-wrapper::before {
        display: none;
    }
    
    .hero-content {
        background-color: var(--navy);
        padding: 2rem 1rem;
    }
    
    .hero-image {
        min-height: 350px;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        border-radius: 0;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
    }
    
    /* Mobile Steps Adjustments */
    .step-content-wrapper {
        gap: 1rem;
    }
    
    .step-image-box {
        min-width: 100px;
        max-width: 100px;
    }
    
    .step-img {
        max-width: 80px;
    }
    
    /* Mobile Contact Info Section Adjustments */
    .contact-info-section .display-5 {
        font-size: 2rem !important;
    }
    
    .contact-info-card {
        margin-bottom: 1rem;
    }
    
    .contact-info-card i {
        font-size: 2rem !important;
    }
    
    .contact-info-card h4 {
        font-size: 1.25rem !important;
    }
    
    /* Mobile Contact Section Adjustments */
    .contact-wrapper {
        min-height: auto;
        background-position: center right;
    }
    
    .contact-wrapper::before {
        background: linear-gradient(to bottom, var(--vanilla) 0%, var(--vanilla) 60%, transparent 100%);
    }
    
    .contact-wrapper .min-vh-75 {
        min-height: auto;
    }
    
    .contact-content {
        padding: 1rem 0;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .contact-form h2 {
        font-size: 2rem !important;
    }
    
    .contact-form h4 {
        font-size: 1.25rem !important;
    }
    
    /* Mobile Footer Adjustments */
    .footer-nav {
        font-size: 0.85rem;
        gap: 0.25rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
        padding: 0.25rem;
    }
    
    .feefo-footer-widget {
        flex-wrap: wrap;
        justify-content: center;
    }
}

