:root {
    --blue: #0f172a;
    /* Darker, more premium navy */
    --blue-light: #1e293b;
    --orange: #f97316;
    /* Vibrant but modern orange */
    --orange-dark: #ea580c;
    --green: #22c55e;
    --light: #f8fafc;
    /* Cool gray-white */
    --gray: #64748b;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: white;
    color: #334155;
    /* Softer text color */
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* HEADER */
header {
    background: var(--blue);
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
    /* Softer shadow */
    backdrop-filter: blur(10px);
    /* Premium feel */
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 60px;
    /* Properly sized */
    display: block;
}

nav {
    flex: 0 0 auto;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}

.header-center {
    flex: 1 1 auto;
    text-align: center;
    color: var(--orange);
    font-size: 2rem;
    font-weight: 800;
    text-shadow:
        0 0 5px rgba(255, 107, 53, 0.7),
        0 0 10px rgba(255, 107, 53, 0.5),
        0 0 15px rgba(255, 107, 53, 0.3);
    line-height: 1.2;
}

.header-subtitle {
    font-size: 0.9rem;
    color: white;
    margin-top: 0.25rem;
    font-weight: 500;
    text-shadow: none;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
    color: white;
    text-align: center;
    padding: 160px 5% 120px;
}

.hero h1 {
    font-size: 3.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.phone-number {
    font-size: 2.3rem;
    font-weight: 800;
    margin: 2rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-btn {
    background: white;
    color: var(--orange);
    padding: 1.1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}

.cta-btn:hover {
    transform: translateY(-5px);
}

/* SECTIONS */
section {
    padding: 100px 6%;
    text-align: center;
}

h2 {
    font-size: 2.8rem;
    color: var(--blue);
    margin-bottom: 2rem;
}

/* HOW IT WORKS */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step i {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    /* Soft shadow */
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    /* Subtle border */
    text-align: left;
    /* Modern clean look */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
    background: #fff7ed;
    padding: 1rem;
    border-radius: 12px;
}

.service-card h3 {
    margin-bottom: 0.5rem;
    color: var(--blue);
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.service-card i {
    font-size: 4rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

/* FORM */
.form-section {
    background: var(--light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
    /* Clean border, no heavy orange */
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    margin: 0.5rem 0 1.5rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #f8fafc;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--orange);
    outline: none;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
}

.trust-badge i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 0.5rem;
}

.submit-btn {
    background: var(--orange);
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1.4rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
}

.submit-btn:hover {
    background: var(--orange-dark);
}

/* FOOTER */
footer {
    background: var(--blue);
    color: white;
    text-align: center;
    padding: 4rem 5%;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 240px;
        /* Increased to account for taller mobile header */
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .phone-number {
        font-size: 1.8rem;
    }

    nav ul {
        gap: 1rem;
    }

    /* Make header elements stack on mobile for better alignment */
    header {
        flex-wrap: wrap;
        justify-content: center;
        padding: 1rem 3%;
    }

    .logo {
        flex-basis: 100%;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .header-center {
        flex-basis: 100%;
        font-size: 1.6rem;
    }

    nav {
        flex-basis: 100%;
        margin-top: 0.5rem;
        text-align: center;
    }

    nav ul {
        justify-content: center;
    }
}

/* SLIDER SECTION */
.gallery-section {
    padding: 60px 0 100px;
    background: var(--light);
    text-align: center;
    overflow: hidden;
}

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    /* Reduced width slightly */
    height: 380px;
    /* Taller to include caption space */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    transition: all 0.3s ease;
    opacity: 0.4;
    /* Fade out inactive slides */
    filter: blur(1px);
    /* Slight blur for depth */
}

.swiper-slide img {
    display: block;
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slide-caption {
    margin-top: 2rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--blue);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Active Slide - The "Pop" Effect */
.swiper-slide-active {
    opacity: 1;
    filter: blur(0);
    z-index: 10;
}

.swiper-slide-active img {
    transform: scale(1.15);
    border-color: var(--orange);
    border-width: 8px;
    box-shadow: 0 20px 60px rgba(235, 90, 43, 0.25);
}

.swiper-slide-active .slide-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Nav Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: var(--green, #28a745);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--blue);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 220px;
        height: 280px;
    }

    .swiper-slide img {
        width: 180px;
        height: 180px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}