/* ======== GLOBAL STYLES & VARIABLES ======== */
:root {
    --light-blue: #a0dcfc;
    /* From logo bg */
    --dark-blue: #0a4a8f;
    /* From logo text/shoe */
    --white: #ffffff;
    --grey-light: #f4f7fa;
    --text-dark: #333333;
    --text-light: #555555;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --font-primary: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: var(--grey-light);
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

h1 {
    font-size: 3rem;
    /* 48px */
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    /* 40px */
    text-align: center;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: var(--dark-blue);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background: #007bff;
    /* A brighter blue for hover */
    transform: translateY(-2px);
}

/* ======== HEADER & NAVIGATION ======== */
header {
    background: var(--white);
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    /* Smooth border */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for blending */
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--dark-blue);
}

.nav-cta {
    padding: 8px 20px;
}

.menu-icon {
    display: none;
    font-size: 1.8rem;
    color: var(--dark-blue);
    cursor: pointer;
}

/* ======== HERO SECTION ======== */
.hero {
    background: linear-gradient(135deg, rgba(160, 220, 252, 0.15), rgba(10, 74, 143, 0.08));
    background-color: var(--white);
    /* Fallback */
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ======== HOW IT WORKS SECTION ======== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    background: var(--white);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: var(--shadow);
}

.process-step h3 {
    font-size: 1.25rem;
}

.quality-promise {
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--dark-blue);
    max-width: 800px;
    margin: 20px auto 0;
}

/* ======== GALLERY SECTION ======== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.gallery-item .img-container {
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    /* Fixed height for placeholders */
    object-fit: cover;
    border-radius: 5px;
    background: #eee;
}

.gallery-item span {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ======== TESTIMONIALS SECTION ======== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--light-blue);
}

.testimonial-card .stars {
    color: #ffc107;
    /* Gold */
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    color: var(--text-dark);
    margin: 0;
}

/* ======== BOOKING SECTION ======== */
.booking-section {
    background: var(--light-blue);
}

.booking-section h2 {
    color: var(--dark-blue);
}

.locations-info {
    text-align: center;
    margin-bottom: 30px;
}

.locations-info ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.locations-info li {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-blue);
}

.service-prices {
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
}

.service-prices h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.price-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.price-card h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.price-card h4 i {
    margin-right: 8px;
}

.price-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.price-card p.price {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 10px 0;
}

#booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    width: 100%; /* Ensure full width */
    max-width: 100%; /* Prevent overflow */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark-blue);
    box-shadow: 0 0 5px rgba(10, 74, 143, 0.3);
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: var(--dark-blue);
}

.radio-label span {
    font-size: 1rem;
}

#booking-form button {
    width: 100%;
    margin-top: 20px;
    font-size: 1.1rem;
}

#form-status {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
}

/* ======== FILE UPLOAD STYLES ======== */
.file-upload-container {
    margin-bottom: 20px;
}

.file-upload-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.file-inputs-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.file-input-group {
    flex: 1;
    min-width: 200px;
}

.custom-file-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 2px dashed #ccc;
    border-radius: 5px;
    cursor: pointer;
    background: #f9f9f9;
    transition: all 0.3s ease;
    text-align: center;
    height: 150px;
    /* Increased height */
    position: relative;
    overflow: hidden;
}

.custom-file-upload:hover {
    border-color: var(--dark-blue);
    background: #eef7ff;
}

.custom-file-upload i {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.custom-file-upload span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

.custom-file-upload input[type="file"] {
    display: none;
}

.image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Keeps aspect ratio, fills box */
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    display: none;
    /* Hidden by default */
}

.remove-image i {
    color: #dc3545 !important;
    /* Bootstrap danger red */
    font-size: 1rem;
    margin: 0;
    /* Reset margin */
}

/* ======== CONTACT SECTION ======== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    text-align: center;
    background: var(--grey-light);
    padding: 30px;
    border-radius: 8px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contact-card i {
    margin-right: 8px;
}

.contact-card p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.contact-card a {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.social-section {
    background: var(--light-blue);
    padding: 40px 20px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.social-section h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 25px;
}

.social-links {
    text-align: center;
}

.social-links a {
    display: inline-block;
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--white);
}

/* ======== FOOTER ======== */
footer {
    background: var(--dark-blue);
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 0;
    color: var(--white);
    font-size: 0.9rem;
}

footer a {
    color: var(--white);
    text-decoration: underline;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--light-blue);
}

/* ======== RESPONSIVE DESIGN ======== */

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
        /* Will be handled by JS */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 81px;
        /* Height of header */
        left: 0;
        background: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .nav-cta {
        width: 80%;
        margin: 10px auto;
        text-align: center;
    }

    .menu-icon {
        display: block;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .locations-info ul {
        flex-direction: column;
        gap: 10px;
    }
    
    /* MOBILE FIXES */
    #booking-form {
        padding: 20px; /* Reduced padding for mobile */
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box; /* Ensure padding doesn't increase width */
    }
}
