/* ============================
Theme Name: London Damp Specialists
Version: 1.0
Description: London Damp Specialists
Author: Edwin
First Update: 25/02/2026
Last Update: 25/02/2026
License: GNU General Public License v2 or later
============================*/

/* ============================
# VARIABLES
============================*/
:root {
    --font-base: "Google Sans", sans-serif;
    --font-heading: "Inter", sans-serif;
    --color-base: #212529;
    --color-primary: #0655a2;
    --color-dark: #111827;
}

/* ============================
# RESET STYLES & OVERRIDES
============================*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: 16px;
    color: var(--color-base);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

p,
ul li,
ol li {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-base);
    line-height: 1.6;
}

p,
ul,
ol {
    margin-bottom: 1rem;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

/* Bootstrap Overrides */
.text-primary {
    color: var(--color-primary) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.border-primary {
    border-color: var(--color-primary) !important;
}

.btn-primary {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #044280 !important;
    border-color: #044280 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 85, 162, 0.3) !important;
}

.btn-outline-primary {
    color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--color-primary) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Helper Classes */
.hover-primary {
    transition: color 0.2s ease;
}

.hover-primary:hover {
    color: var(--color-primary) !important;
}

.hover-white {
    transition: color 0.2s ease;
}

.hover-white:hover {
    color: #ffffff !important;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .15) !important;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

.section {
    padding: 100px 0;
}


/* ============================
# HEADER
============================*/
.site-header {
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary) !important;
}


/* ============================
# HOME PAGE
============================*/

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content-v2 {
    position: relative;
    z-index: 2;
    padding: 160px 0 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 4px;
    padding: 6px 15px;
    margin-bottom: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.hero-badge .accent-tag {
    background: var(--color-primary);
    color: white;
    padding: 2px 8px;
    margin-right: 12px;
    border-radius: 2px;
}

.hero-title-v2 {
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.hero-card-floating {
    background: #ffffff;
    border-radius: 15px 120px 15px 15px;
    padding: 60px 50px;
    color: var(--color-dark);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    max-width: 480px;
    margin-left: auto;
}

.hero-card-floating p {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #4b5563;
}

.btn-hero-cta {
    background: var(--color-primary);
    color: white !important;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 25px 16px 35px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(6, 85, 162, 0.4);
}

.btn-hero-cta .arrow-circle {
    background: white;
    color: var(--color-primary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

@media (max-width: 991px) {
    .hero-title-v2 {
        font-size: 3.5rem;
        text-align: center;
    }
    .hero-card-floating {
        margin: 0 auto;
        padding: 40px 30px;
    }
    .hero-badge {
        display: flex;
        justify-content: center;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-bg {
    background-image: url('https://picsum.photos/1920/1080?random=1');
    background-size: cover;
    background-position: center;
}

/* Services */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .15) !important;
}

.service-card .hover-arrow span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.service-card:hover .hover-arrow span {
    transform: translateX(5px);
}

/* Process */
.process-item {
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateX(10px);
}

/* Costs */
.cost-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cost-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .15) !important;
}

.testimonial-swiper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-swiper .swiper-slide {
    padding: 1rem 0.5rem 3rem;
}

.swiper-pagination-bullet {
    background: var(--color-primary);
    opacity: 0.3;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary) !important;
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-primary);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--color-primary);
    color: white;
}

.swiper-button-next {
    right: -20px;
}

.swiper-button-prev {
    left: -20px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
}


@media (max-width: 991px) {
    .swiper-button-next {
        right: 0;
    }

    .swiper-button-prev {
        left: 0;
    }
}

@media (max-width: 767px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}



/* Contact Section Redesign */
#contact {
    background-color: var(--color-primary);
}

.contact-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: none;
}

.contact-card-left {
    background-color: #11417c; /* Specific deep blue from design */
    color: #ffffff;
    padding: 2.5rem;
}

.contact-card-right {
    background-color: #ffffff;
    color: #212529;
    padding: 2.5rem;
}

.contact-card-right a {
    display: block;
}

.contact-card-right img {
    width: 100%;
    display: block;
}

.contact-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-card p.subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-card .form-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-card .form-label .required {
    color: #ff4d4d;
    margin-left: 3px;
}

.contact-card .form-control,
.contact-card .form-select {
    border-radius: 5px;
    padding: 0.75rem 1rem;
    border: none;
    margin-bottom: 1.5rem;
}

.btn-cyan {
    background-color: #0099cc;
    color: #ffffff;
    border: none;
    padding: 0.6rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cyan:hover {
    background-color: #0077a3;
    color: #ffffff;
    transform: translateY(-2px);
}

.phone-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-wrapper img.flag {
    width: 20px;
    margin-right: 10px;
    position: absolute;
    left: 15px;
}

.phone-wrapper input {
    padding-left: 45px !important;
}

@media (max-width: 991px) {
    .contact-card-left, .contact-card-right {
        padding: 2rem 1.5rem;
    }
}


/* ============================
# FOOTER
============================*/
.site-footer {
    border-top: 5px solid var(--color-primary);
}


/* ============================
# INNER PAGES
============================*/



/* ============================
# MEDIA QUERIES
============================*/
@media (max-width: 1399px) {}

@media (max-width: 1199px) {}

@media (max-width: 991px) {}

@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding-top: 100px !important;
    }

    .process-item:hover {
        transform: none;
    }
}

@media (min-width: 768px) {}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}

@media (min-width: 1400px) {}