/* --- Global Styles & Variables --- */
:root {
    --primary-red: #d9272d;
    --dark-grey: #333333;
    --medium-grey: #555555;
    --light-grey: #f4f4f4;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem; /* Increased font size */
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
}

p {
    margin: 10px 0;
}

a {
    text-decoration: none;
    color: var(--dark-grey);
}

img {
    max-width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(217, 39, 45, 0.3);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--light-grey);
}

.btn-secondary:hover {
    background-color: var(--light-grey);
    transform: translateY(-3px);
}

/* --- Header & Navigation --- */
header {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo img {
    height: 55px; /* Increased logo size */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}
.nav-links a.active {
    color: var(--primary-red);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-grey);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero {
    min-height: calc(100vh - 85px); /* Adjusted for new header height */
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--medium-grey);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1.1; /* Gave slightly more space to image */
    text-align: center;
}

/* --- Services Section --- */
.services-section {
    padding: 100px 0;
    background-color: var(--light-grey);
}

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    margin-bottom: 5px;
}
.service-card p {
    color: var(--medium-grey);
    margin-bottom: 20px;
    flex-grow: 1;
}
.card-icon-container {
    margin-top: auto;
    border-top: 1px solid var(--light-grey);
    padding-top: 20px;
}
.card-icon {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-right: 10px;
}

/* --- Process Section --- */
.process-section {
    padding: 100px 0;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
.process-step .step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.process-step h3 {
    margin-bottom: 10px;
}
.process-step p {
    color: var(--medium-grey);
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--light-grey);
}
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: center;
}
.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--medium-grey);
    margin-bottom: 20px;
}
.testimonial-author {
    font-weight: 700;
    color: var(--dark-grey);
}


/* --- Quote Section --- */
.quote-section {
    padding: 100px 0;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
}

.quote-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.quote-visual {
    flex: 0.9; /* Gave slightly more space */
    text-align: center;
}

.quote-visual h2 {
    color: var(--dark-grey);
    margin-top: 20px;
}

.quote-form-card {
    flex: 1.1;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.quote-form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.quote-form-card p {
    color: var(--medium-grey);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}
.form-row .form-group {
    flex: 1;
}

input[type="text"], input[type="date"], input[type="email"], textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.emailInput {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;

}


textarea {
    resize: vertical;
}

.form-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
}

/* --- Footer --- */
footer {
    background-color: var(--dark-grey);
    color: var(--light-grey);
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-container .logo img {
    filter: brightness(0) invert(1);
    height: 45px; /* Increased footer logo */
}

.footer-links a, .footer-contact a {
    color: var(--light-grey);
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary-red);
}

.footer-socials a {
    color: var(--light-grey);
    font-size: 1.2rem;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: var(--primary-red);
}


/* --- Animation Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 992px) {
    h1 { font-size: 2.4rem; }
    .hero-container, .quote-container { flex-direction: column; }
    .hero-text { text-align: center; }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-image { margin-top: 40px; }
    .service-cards-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .quote-visual { margin-bottom: 40px; }

    /* --- Tablet & Mobile Navigation --- */
    .nav-links {
        display: none;
    }
    .nav-btn {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .nav-links.nav-active {
        display: flex;
        position: absolute;
        right: 0;
        top: 85px;
        background: var(--white);
        flex-direction: column;
        width: 100%;
        text-align: center;
        transform: translateX(0%);
        box-shadow: var(--shadow);
        animation: navLinkFade 0.5s ease-in-out;
    }
    .nav-links.nav-active li {
        padding: 15px 0;
    }
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
}

@media (max-width: 768px) {
    /* Stack hero buttons on small screens */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 90%;
        max-width: 320px;
    }

    .service-cards-grid { 
        grid-template-columns: 1fr; 
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

