/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #021751;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY RESPONSIVE OVERRIDES ===== */
/* Desktop styles (your existing styles stay the same) */

/* Mobile Responsive Typography - Applied Globally */
@media (max-width: 768px) {
    /* All Headings */
    h1 {
        font-size: 2rem !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
        text-align: center !important;
        margin-bottom: 0.875rem !important;
        line-height: 1.3 !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
        text-align: center !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.3 !important;
    }
    
    h4 {
        font-size: 1.25rem !important;
        text-align: center !important;
        margin-bottom: 0.625rem !important;
        line-height: 1.4 !important;
    }
    
    h5, h6 {
        font-size: 1.125rem !important;
        text-align: center !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.4 !important;
    }
    
    /* All Paragraphs */
    p {
        font-size: 1rem !important;
        text-align: center !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
        padding: 0 10px !important;
    }
    
    /* All Text Elements */
    .service-text,
    .about-text,
    .contact-text,
    .hero-text,
    .description-text {
        font-size: 1rem !important;
        text-align: center !important;
        line-height: 1.6 !important;
        margin: 1rem 10px !important;
        width: 100% !important;
    }
}

/* Extra Small Mobile (Phones) */
@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem !important;
        padding: 0 15px !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
        padding: 0 15px !important;
    }
    
    h3 {
        font-size: 1.25rem !important;
        padding: 0 15px !important;
    }
    
    h4, h5, h6 {
        font-size: 1.125rem !important;
        padding: 0 15px !important;
    }
    
    p {
        font-size: 0.9rem !important;
        padding: 0 15px !important;
        margin-bottom: 0.875rem !important;
    }
    
    .service-text,
    .about-text,
    .contact-text,
    .hero-text,
    .description-text {
        font-size: 0.9rem !important;
        padding: 0 15px !important;
        width: 100% !important;
    }
}

/* Large Mobile/Small Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    h1 {
        font-size: 2.25rem !important;
        text-align: center !important;
    }
    
    h2 {
        font-size: 2rem !important;
        text-align: center !important;
    }
    
    p {
        font-size: 1.05rem !important;
        text-align: center !important;
        padding: 0 20px !important;
    }
}

/* ===== LAYOUT & CONTAINERS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-bespoke {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: #F7F7F7;
    color: #021751;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: 180px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #021751;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover {
    background: #E37040;
    transform: translateY(-2px);
}

/* Dropdown Navigation */
.nav-links .dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    background: #F7F7F7;
    padding: 0;
    margin: 0;
    border-radius: 8px;
}

.dropdown-menu li a {
    display: block;
    padding: 10px;
    color: #021751;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #E37040;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #021751;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/main.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #F7F7F7;
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    justify-content: flex-start;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: slideInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.3s both;
}

/* Services Hero Sections */
.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/static-caravan-main.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(2, 23, 81, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.motorhome-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.386)), url('images/motorhome-main1.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(2, 23, 81, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 600px;
}

.services-hero-content,
.motorhome-hero-content {
    padding-top: 20px;
}

.services-h1 {
    color: #F7F7F7;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle-services {
    font-size: 1.2rem;
    color: #F7F7F7;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.8;
}

/* ===== BUTTONS ===== */
.cta-button {
    background: linear-gradient(45deg, #E37040, #E37040);
    color: #F7F7F7;
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    animation: slideInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.form-submit-btn {
    background-color: #E37040;
    color: #F7F7F7;
    padding: 16px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(9, 59, 129, 0.4);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(9, 59, 129, 0.4);
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    background: transparent;
    padding: 40px 0;
}

.flex-container {
    display: flex;
    flex-direction: row;
    font-size: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.flex-item-left {
    background: url('images/static-repairs-2-main.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
    flex: 50%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.flex-item-left-bespoke {
    background: url('images/glamping-pod1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
    flex: 50%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.flex-item-right {
    padding: 20px;
    flex: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.flex-item-left-tourer {
    padding: 20px;
    flex: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.flex-item-right-tourer {
    background: url('images/motorhome-tourer1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
    flex: 50%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.service-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #021751;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    max-width: 100%;
}

/* ===== SERVICES GRIDS & CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
}

.services-grid .service-card:last-child:nth-child(7n) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(247, 247, 247, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(2, 23, 81, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(227, 112, 64, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #E37040;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(227, 112, 64, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #F7F7F7;
    box-shadow: 0 5px 15px rgba(227, 112, 64, 0.3);
}

.service-card h3 {
    font-size: 1.4rem;
    color: #021751;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #021751;
    line-height: 1.7;
    opacity: 0.8;
}

/* ===== ABOUT SECTION ===== */
#about {
    background-color: #021751;
    max-width: full;
    padding-top: 50px;
    padding-bottom: 50px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f7f7f7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: #f7f7f7;
    border: 5px #021751;
    border-radius: 15px;
    box-shadow: 0 10px 10px rgba(2, 23, 81, 0.6);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: 0.8s;
}

.stat-card:hover::before {
    left: 125%;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== TESTIMONIALS SECTION ===== */
#testimonials {
    background: linear-gradient(135deg, #F7F7F7 0%, #ffffff 100%);
    padding: 80px 0;
}

.testimonials-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    padding-top: 10px;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #021751;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #E37040, #E37040);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #021751;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #F7F7F7;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(2, 23, 81, 0.1);
    border: 1px solid rgba(227, 112, 64, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E37040, #f5945a);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(2, 23, 81, 0.2);
}

.stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.star {
    color: #E37040;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #021751;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(2, 23, 81, 0.1);
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: serif;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E37040, #f5945a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.customer-details h4 {
    font-weight: 600;
    color: #021751;
    margin-bottom: 0.2rem;
}

.customer-details p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: #021751;
    max-width: full;
    padding-top: 50px;
    padding-bottom: 50px;
}

.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #021751;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-side {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-side h2 {
    font-size: 2rem;
    color: #021751;
    margin-bottom: 15px;
}

.contact-form-side > p {
    color: #021751;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #021751;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-image-side {
    color: white;
}

.image-showcase {
    position: relative;
    height: 300px;
    margin-bottom: 30px;
}

.showcase-image {
    position: absolute;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.show-image {
    width: 80%;
    height: 80%;
    border-radius: 20px;
    object-fit: cover;
}

.main-image {
    width: 70%;
    height: 200px;
    top: 50px;
    left: 15%;
    z-index: 3;
}

.small-image {
    width: 120px;
    height: 120px;
}

.small-image.top {
    top: 0;
    right: 0;
    z-index: 2;
}

.small-image.bottom {
    bottom: 0;
    left: 0;
    z-index: 2;
}

.image-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.small-image .image-icon {
    font-size: 2rem;
    margin: 0;
}

.image-text {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    color: white;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.contact-info > p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-me {
    color: #F7F7F7;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-me:hover {
    color: #d65e32;
}

/* ===== CTA SECTIONS ===== */
.cta-section {
    background: rgba(247, 247, 247, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(2, 23, 81, 0.1);
    margin-top: 2rem;
}

.cta-section-accreditations {
    background: #fff;
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(2, 23, 81, 0.1);
    margin-top: 2rem;
}

.cta-section h2 {
    font-size: 2rem;
    color: #021751;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: #021751;
    margin-bottom: 2rem;
    opacity: 0.8;
}

/* ===== ACCREDITATIONS ===== */
.accreditations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
    margin: 20px 0;
    background-color: #fff;
}

.accreditations img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    padding: 5px;
    background: #fff;
    border-radius: 6px;
}

/* ===== GALLERY ===== */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-item {
    margin: 5px;
    border: 1px solid #ccc;
    width: 250px;
    height: 300px;
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item img {
    width: 250px;
    height: 300px;
}

.gallery-item div.desc {
    padding: 15px;
    text-align: center;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }

/* ===== BESPOKE WORK SECTION ===== */
.bespoke-wrapper {
    background: #f8f8f8;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 0;
}

.bespoke-wrapper h2 {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: bold;
}

.bespoke-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 15px;
    height: 500px;
}

.bespoke-item {
    border-radius: 12px;
    overflow: hidden;
}

.bespoke-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Layout placements */
.bespoke-item-1 { grid-column: 1 / span 2; grid-row: 1; }
.bespoke-item-2 { grid-column: 3 / span 2; grid-row: 1; }
.bespoke-item-3 { grid-column: 5 / span 2; grid-row: 1; }
.bespoke-item-4 { grid-column: 1 / span 1; grid-row: 2; }
.bespoke-item-5 { grid-column: 2 / span 4; grid-row: 2; }
.bespoke-item-7 { grid-column: 6 / span 1; grid-row: 2; }

.service-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    background: rgba(247, 247, 247, 0.2);
    padding: 1rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #E37040;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #F7F7F7;
}

.feature-text {
    color: #021751;
    font-weight: 500;
}

/* ===== FOOTER ===== */
footer {
    background: #021751;
    border-top: 1px solid #e9ecef;
    padding-top: 48px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 32px;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #F7F7F7;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.footer-section-areas h3 {
    font-size: 16px;
    font-weight: 600;
    color: #F7F7F7;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.footer-section-areas {
    font-size: 14px;
    font-weight: 600;
    color: #F7F7F7;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    text-align: center;
}

.footer-section ul,
.footer-section-areas ul {
    list-style: none;
}

.footer-section ul li,
.footer-section-areas ul li {
    margin-bottom: 12px;
    text-align: center;
}

.footer-section ul li a,
.footer-section-areas ul li a {
    color: #F7F7F7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease;
    text-align: center;
}

.footer-section ul li a:hover {
    color: #d65e32;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 4px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #F7F7F7;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #021751;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #e9ecef;
    color: #d65e32;
    transform: translateY(-1px);
}

.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 24px;
    text-align: center;
    color: #F7F7F7;
    font-size: 14px;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

/* ===== TABLET RESPONSIVE ===== */
@media (max-width: 1024px) and (min-width: 769px) {
    .about-text {
        text-align: center;
    }
    
    .accreditations img {
        width: 90px;
        height: 60px;
    }
}

/* ===== iPad Fixes (769px - 1024px) ===== */


.footer {
  background: #021751; 
  color: #f7f7f7;
  padding: 40px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section,
.footer-section-areas {
  flex: 1 1 250px;
  min-width: 200px;
  align-items: center;
}

.footer-section h3,
.footer-section-areas h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}
a {
    align-items: center;
    text-align: center;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #aaa;
}

/* ===== iPad Card Fixes (769px - 1024px) ===== */
@media (max-width: 1024px) and (min-width: 769px) {
  /* Adjust grid */
  .services-grid {
    grid-template-columns: 1fr 1fr; /* only 2 cards per row */
    gap: 20px;
  }

  /* Fix card styling */
  .service-card {
    padding: 15px;
    font-size: 0.9rem; /* scale text down slightly */
  }

  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word; /* prevent cut-off words */
  }
}
/* ===== iPad Footer Fixes (769px - 1024px) ===== */
@media (max-width: 1024px) and (min-width: 769px) {
  footer .footer-content {
    display: flex;
    flex-direction: column; /* stack sections vertically */
    align-items: center;    /* center everything */
    text-align: center;
    gap: 20px;
  }

  footer .footer-section,
  footer .footer-section-areas {
    flex: unset;
    width: 100%;
  }

  footer .social-links,
  footer .contact-item,
  footer .footer-section ul {
    display: flex;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }

  footer .social-links a,
  footer .contact-item a,
  footer .footer-section ul li a {
    text-decoration: none;
  }
  .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/mobile-4.jpg');
        
  }
}

/* ===== MOBILE RESPONSIVE (768px and below) ===== */
@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #F7F7F7;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-links li {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        text-align: center;
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(227, 112, 64, 0.1);
        border-radius: 8px;
        margin-top: 10px;
        width: 100%;
    }
    
    .dropdown-menu li a {
        padding: 12px 20px;
        background: transparent;
    }
    
    .dropdown-menu li a:hover {
        background: #E37040;
    }
    
    .logo {
        height: 30px;
        width: 140px;
    }
    
    .hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/mobile-4.jpg');
        min-height: 100vh;
        padding: 100px 0 40px;
        background-attachment: scroll;
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        align-items: flex-end;
    }

    .hero-content {
        position: relative;
        z-index: 10;
        padding: 0 1rem;
        max-width: 90%;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-top: 8rem;
        margin-bottom: 1rem;
        text-shadow: 3px 3px 8px rgba(0,0,0,0.8);
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
        line-height: 1.4;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
    
    .flex-container {
        flex-direction: column;
        font-size: 24px;
        margin: 0 20px;
        width: 100%;
        padding-top: 20px;
    }
    
    .flex-item-left,
    .flex-item-right,
    .flex-item-left-tourer,
    .flex-item-right-tourer,
    .flex-item-left-bespoke {
        flex: 100%;
        padding: 20px;
    }
    
    /* Section ordering for mobile */
    .flex-container:nth-of-type(1) .flex-item-right {
        order: 1;
    }
    .flex-container:nth-of-type(1) .flex-item-left {
        order: 2;
        min-height: 250px;
        width: 100%;
    }
    
    .flex-container:nth-of-type(2) .flex-item-left-tourer {
        order: 1;
    }
    .flex-container:nth-of-type(2) .flex-item-right-tourer {
        order: 2;
        min-height: 250px;
        width: 100%;
    }
    
    .flex-container:nth-of-type(3) .flex-item-right {
        order: 1;
    }
    .flex-container:nth-of-type(3) .flex-item-left-bespoke {
        order: 2;
        min-height: 250px;
        width: 100%;
    }
    
    .service-text {
        font-size: 1rem;
        margin-top: 20px;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
    }

    h3 {
        font-size: 1.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        text-align: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 20px;
    }
    
    .contact-form-side {
        padding: 30px 20px;
        order: 2;
    }
    
    .contact-image-side {
        order: 1;
    }
    
    .image-showcase {
        height: 250px;
    }
    
    .main-image {
        width: 80%;
        left: 10%;
        height: 150px;
        top: 50px;
    }
    
    .small-image {
        width: 80px;
        height: 80px;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
        justify-items: center;
        padding: 1rem;
    }
    
    .services-grid .service-card:last-child:nth-child(7n) {
        grid-column: 1;
        max-width: 100%;
        margin: 0;
    }
    
    .service-card {
        width: 100%;
        max-width: 400px;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .services-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/static-caravan-main.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 400px;
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .motorhome-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.386)), url('images/motorhome-main-mobile1.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 400px;
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .services-h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle-services {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
        opacity: 0.9;
    }
    
    .container-services {
        padding: 0 15px;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
        border-radius: 15px;
        margin-top: 1.5rem;
    }
    
    .cta-section h2 {
        font-size: 1.6rem;
    }
    
    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .feature {
        padding: 0.8rem;
        border-radius: 8px;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        margin-right: 0.8rem;
        font-size: 1rem;
    }
    
    .feature-text {
        font-size: 0.9rem;
    }
    
    .gallery-item {
        width: calc(50% - 15px);
        height: 250px;
        margin: 10px 7.5px;
    }

    .gallery-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .gallery-item div.desc {
        transform: translateY(0);
        background: rgba(0,0,0,0.7);
        position: absolute;
        bottom: 0;
    }
    
    .bespoke-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 10px;
        height: auto;
    }
    
    .bespoke-item {
        width: 100%;
        border-radius: 8px;
    }
    
    .bespoke-item-1 { 
        grid-column: 1; 
        grid-row: 1;
        height: 180px;
    }
    
    .bespoke-item-2 { 
        grid-column: 2; 
        grid-row: 1;
        height: 180px;
    }
    
    .bespoke-item-3 { 
        grid-column: 1 / span 2; 
        grid-row: 2;
        height: 200px;
    }
    
    .bespoke-item-4 { 
        grid-column: 1; 
        grid-row: 3;
        height: 160px;
    }
    
    .bespoke-item-5 { 
        grid-column: 2; 
        grid-row: 3;
        height: 160px;
    }
    
    .bespoke-item-7 { 
        grid-column: 1 / span 2; 
        grid-row: 4;
        height: 180px;
    }
    
    .accreditations {
        gap: 10px;
    }
    
    .accreditations img {
        width: 70px;
        height: 70px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-container {
        padding: 0 16px;
    }

    .footer-section {
        text-align: center;
    }
    
    .footer-section-areas {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    footer {
        padding: 32px 0 24px;
    }
}

/* ===== EXTRA SMALL MOBILE (480px and below) ===== */
@media (max-width: 480px) {
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
        display: flex;
        align-items: flex-end;
    }
    
    .hero-content {
        position: relative;
        z-index: 10;
        padding: 0 1.5rem 55vh;
        max-width: 95%;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.4rem;
        line-height: 1.1;
        margin-bottom: 1.2rem;
        text-shadow: 3px 3px 10px rgba(0,0,0,0.9);
        font-weight: bold;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
        line-height: 1.4;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .flex-container {
        font-size: 20px;
        margin: 0 10px;
    }
    
    .flex-item-left,
    .flex-item-right,
    .flex-item-left-tourer,
    .flex-item-right-tourer,
    .flex-item-left-bespoke {
        padding: 15px;
    }
    
    .flex-item-left,
    .flex-item-right-tourer,
    .flex-item-left-bespoke {
        min-height: 200px;
        width: 100%;
    }
    
    .service-text {
        font-size: 0.9rem;
        margin-top: 15px;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .services-hero {
        height: 320px;
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .services-h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle-services {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .container-services {
        padding: 0 10px;
    }
    
    .services-grid {
        padding: 0.5rem;
        gap: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .service-card {
        padding: 1.2rem;
        border-radius: 10px;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .cta-section {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .cta-section h2 {
        font-size: 1.4rem;
    }
    
    .cta-section p {
        font-size: 0.95rem;
    }
    
    .features {
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .feature {
        padding: 0.7rem;
    }
    
    .feature-icon {
        width: 32px;
        height: 32px;
        margin-right: 0.7rem;
        font-size: 0.9rem;
    }
    
    .feature-text {
        font-size: 0.85rem;
    }
    
    .gallery-item {
        width: calc(100vw - 20px);
        height: 250px;
        margin: 10px 10px;
    }

    .gallery-item img {
        width: 100%;
        height: 250px;
    }
}