:root {
    --red: #d62828;
    --blue: #0b3d91;
    --light: #F8FAFC;
    --dark: #1F2937;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

.active {
    display: flex;
}

header {
    background: linear-gradient(135deg, var(--red), var(--blue));
    color: var(--white);
    padding: 20px 10%;
    display: flex;
    justify-content: right;
    align-items: center;
}

header h1 {
    font-size: 1.8rem;
}

.logo {
    width: 200px;
    height: auto;
    position: absolute;
    left: 5%;
    top: 1%;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    padding: 8px 12px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.dropdown-content {
    display: none;
    color: var(--white);
    position: absolute;
    background: rgba(255, 255, 255);
    min-width: 160px;
    min-height: 100px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: var(--white);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.dropdown:hover .dropdown-content {
    display: block;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8);
}

.landing-hero {
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 10%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url(../Assets/rv.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--white);
}


.aboutus-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 10%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url(../Assets/rv.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.trailer-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 10%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url(../Assets/trailer.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 10%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url(../Assets/rv.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.aboutus-hero .hero-content h2,
.trailer-hero .hero-content h2,
.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.aboutus-hero .hero-content p,
.trailer-hero .hero-content p,
.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-content {
    max-width: 700px;
}


.cta-button {
    display: inline-block;
    background-color: var(--red);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: 0.3s ease;
}

.cta-button:hover {
    background-color: var(--red);
    transform: translateY(-2px);
}

.services {
    padding: 70px 10%;
    background: var(--white);
    text-align: center;
}

.services h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--blue);
}

.services ul,
.service-content ul {
    padding-top: 20px;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--blue);
    list-style: none;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.service-card {
    background: #f4f7fb;
    padding: 30px;
    border-radius: 12px;
    border-top: 5px solid var(--red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 5% 10%;
}

.service-card h4 {
    margin-bottom: 15px;
    color: #0b3d91;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

#social_section {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    text-align: center;
    padding: 70px 10%;
    background: var(--white);
    text-align: center;
}

.card-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    background: var(--white);
    text-align: center;
}

#social_section h3 {
    font-size: 2rem;
    color: var(--blue);
    width: 100%;
}

footer {
    background: var(--blue);
    color: var(--white);
    text-align: center;
    padding: 20px;
}


.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: var(--white);
    line-height: 1.8;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #60a5fa;
}

.address-info p {
    margin-bottom: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    background: rgba(0, 0, 0, .4);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(96, 165, 250, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 20px auto;
    width: 100%;
}

.copyright {
    color: var(--white);
    font-size: 14px;
}

@media (max-width: 950px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }

    nav {
        flex-direction: column;
        gap: 20px;
        margin-top: 40%;
        display: none;
    }

    nav a {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hamcontainer {
        display: flex;
        justify-content: right;
        width: 100%;
    }

    .hamburger {
        border-radius: 8px;
        padding: 10px;
        display: flex;
        transform: translateX(50%);
    }

    .card-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    header {
        flex-direction: column;
        gap: 10px;
    }


}

.review-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 450px;
    padding: 40px;
    transition: transform 0.3s ease;
    transform: scale(.90);
}

.review-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.user-info {
    flex: 1;
}

.user-name {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.user-title {
    font-size: 14px;
    color: #718096;
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star {
    color: #fbbf24;
    font-size: 24px;
}

.star.empty {
    color: #e5e7eb;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.review-date {
    font-size: 13px;
    color: #a0aec0;
    text-align: right;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #10b981;
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 15px;
}

.checkmark {
    font-size: 14px;
}

.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 70px 10%;
    background: var(--white);
    text-align: center;
}

.content-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.content-section h2 {
    color: var(--blue);
    font-size: 2rem;
    margin-bottom: 15px;
}

.content-section p {
    color: #444;
    margin-bottom: 20px;
}