/* ========== GLOBAL STYLES ========== */
:root {
    /* Main color palette */
    --primary-yellow: #FFD700;
    --secondary-yellow: #F2C94C;
    --dark-yellow: #E2B616;
    --light-yellow: #FFF0A8;
    --white: #FFFFFF;
    --black: #000000;
    --dark-gray: #333333;
    --light-gray: #F5F5F5;
    --text-gray: #555555;
    --shadow-color: rgba(0, 0, 0, 0.15);
    --navbar-height: 70px; /* Define navbar height for calculations */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    color: var(--dark-gray);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main container for all content */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== BACKGROUND STYLES ========== */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Half diagonal yellow background - FIXED */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65%; /* Only cover half of the page height */
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-yellow) 100%);
    transform: skewY(-6deg); /* Adjusted angle for half page coverage */
    transform-origin: top left;
    z-index: -1;
}

/* Center image overlay with animation */
.hero-background img {
    position: absolute;
    top: 45%;
    right: 5%;
    transform: translateY(-50%);
    max-width: 65%; /* Increased size */
    max-height: 95%;
    z-index: -1;
    animation: carPulse 5s infinite ease-in-out;
}

@keyframes carPulse {
    0% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.02); }
    100% { transform: translateY(-50%) scale(1); }
}

/* ========== NAVBAR STYLES ========== */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow-color);
    padding: 15px 0; /* Kept padding for internal spacing */
    position: fixed; /* Changed from relative to fixed to stick to the top */
    top: 0; /* Aligns it to the top of the viewport */
    left: 0; /* Ensures it spans full width */
    width: 100%; /* Full width of the viewport */
    z-index: 1000; /* Keeps it above other content */
    height: var(--navbar-height); /* Maintains defined height */
    margin-bottom: 0; /* No need for margin-bottom with fixed positioning */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%; /* Ensures container fills navbar height */
}
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--dark-gray);
    letter-spacing: 1px;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--dark-gray);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a:hover {
    color: var(--dark-yellow);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--dark-yellow);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Special animation for Events/Weddings link */
.special-link {
    position: relative;
    padding: 8px 15px;
    border-radius: 20px;
    background-color: var(--primary-yellow);
    color: var(--dark-gray) !important;
    transition: all 0.3s ease !important;
    overflow: hidden;
}

.special-link:hover {
    background-color: var(--dark-yellow);
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 201, 76, 0.4);
}

.special-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.special-link:hover::before {
    left: 100%;
}

/* Special link doesn't need the underline animation */
.special-link::after {
    display: none !important;
}

.menu-toggle {
    display: none;
}

.menu-toggle button {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-gray);
    cursor: pointer;
}

/* ========== HERO SECTION STYLES ========== */
.hero-section {
    min-height: calc(100vh - var(--navbar-height));
    position: relative;
    display: flex;
    align-items: center; /* Keeps content vertically centered */
    justify-content: flex-start;
    padding: 10px 0; /* Your reduced padding, unchanged */
    margin-top: var(--navbar-height); /* Only change: pushes section below fixed navbar */
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px; /* Kept horizontal padding, no vertical adjustment here */
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    z-index: 3;
    margin-top: -10px; /* Added slight negative margin to pull content up further */
    padding-top: 0;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: var(--dark-gray);
    letter-spacing: 2px;
    line-height: 1.2;
    margin: 0 0 2px 0; /* Kept as is, already minimized */
}

.hero-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: var(--text-gray);
    line-height: 1.4;
    margin: 0 0 10px 0; /* Kept as is, already reduced */
}

/* Ad Banner Styles - Fixed Positioning */
.ad-banner {
    background-color: var(--dark-gray);
    border-radius: 8px;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
    margin: 0 0 10px 0; /* Reduced margin */
}

.banner-link {
    display: block;
    padding: 10px; /* Reduced padding */
    color: var(--white);
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.banner-link:hover {
    background-color: var(--darker-gray, #222);
}
.banner-messages {
    position: relative;
    height: 24px;
    overflow: hidden;
    width: 100%;
}

.message {
    position: absolute;
    width: 100%;
    height: 100%;
    line-height: 24px;
    font-weight: 500;
    font-size: 16px;
    opacity: 0;
    transform: translateY(100%); /* Start below */
    transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}

/* First message initial state */
.message:first-child {
    opacity: 1;
    transform: translateY(0);
}

.message:nth-child(1) { animation-delay: 0s; }
.message:nth-child(2) { animation-delay: 3s; }
.message:nth-child(3) { animation-delay: 6s; }
.message:nth-child(4) { animation-delay: 9s; }

@keyframes rotate-messages {
    0%, 20% {
        opacity: 0;
        transform: translateY(100%);
    }
    5%, 15% {
        opacity: 1;
        transform: translateY(0);
    }
    20.01% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

/* Enhanced Rental Form Styles */
.rental-form {
    max-width: 360px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.rental-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.rental-form h3 {
    font-size: 22px;
    margin: 0 0 16px 0;
    text-align: center;
    color: var(--dark-gray);
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.rental-form h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow) 70%, transparent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.form-group {
    margin-bottom: 14px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 14px;
    transition: color 0.2s ease;
}

.form-group:focus-within label {
    color: var(--primary-yellow);
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #E5E5E5;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.25s ease;
    background-color: #FAFAFA;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
    background-color: white;
}

.form-group input::placeholder {
    color: #BBBBBB;
    font-style: italic;
    font-size: 13px;
}

.search-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(to right, var(--primary-yellow), var(--dark-yellow));
    color: var(--dark-gray);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.search-btn:hover {
    background: linear-gradient(to right, var(--dark-yellow), var(--primary-yellow));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 182, 22, 0.4);
}

.search-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(226, 182, 22, 0.4);
}

/* Optional ripple effect for button */
.search-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.search-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}
/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .rental-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-section {
        padding: 15px 0; /* Further reduced padding for mobile */
    }
}
/* ========== RESPONSIVE STYLES ========== */
@media screen and (max-width: 1024px) {
    .hero-container {
        padding: 0 40px;
    }
    
    .hero-background::before {
        height: 60%; /* Adjusted for tablet size */
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .hero-background img {
        max-width: 60%;
    }
}

@media screen and (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 30px 0;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 25px;
    }
    
    .hero-content, .rental-form {
        max-width: 100%;
    }
    
    .hero-background::before {
        height: 50%; /* Smaller on mobile */
        transform: skewY(-4deg); /* Less steep angle on mobile */
    }
    
    .nav-links {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background-color: var(--white);
        transition: 0.5s;
        box-shadow: 0 5px 15px var(--shadow-color);
        z-index: 1001;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        gap: 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-background img {
        max-width: 75%;
        opacity: 0.7; /* Increased visibility */
        top: 50%;
        right: -5%;
    }
}

@media screen and (max-width: 480px) {
    .navbar-container {
        padding: 0 15px;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .logo span {
        font-size: 16px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .hero-content h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .ad-banner .message {
        font-size: 14px;
    }
    
    .rental-form {
        padding: 18px;
        max-width: 95%;
        margin-top: 15px;
    }
    
    .rental-form h3 {
        font-size: 20px;
    }
    
    .form-group input, .search-btn {
        padding: 10px;
    }
    
    .hero-background::before {
        height: 45%; /* Even smaller on mobile */
    }
    
    .hero-background img {
        max-width: 85%;
        right: -10%;
    }
}

/* ========== JAVASCRIPT FUNCTIONALITY SUPPORT ========== */
/* For mobile menu toggle */
.nav-links.active {
    left: 0;
}

/* Add the following JavaScript to make the mobile menu work */
/* Just add this in your main.js file */
/*
$(document).ready(function() {
    $('#mobileMenuBtn').click(function() {
        $('#navLinks').toggleClass('active');
        $(this).find('i').toggleClass('fa-bars fa-times');
    });
});
*/
/* ========== ABOUT SECTION STYLES ========== */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px var(--shadow-color);
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-content {
    flex: 1;
    padding: 20px 0;
}

.section-title {
    margin-bottom: 25px;
    position: relative;
}

.section-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: var(--dark-gray);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.title-line {
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-yellow), var(--light-yellow));
    border-radius: 2px;
}

.about-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--dark-yellow);
    font-size: 18px;
}

.feature span {
    font-weight: 500;
    font-size: 15px;
    color: var(--dark-gray);
}

.about-cta-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(to right, var(--primary-yellow), var(--dark-yellow));
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(226, 182, 22, 0.3);
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(226, 182, 22, 0.4);
    color: var(--white);
}

/* Responsive styles for about section */
@media screen and (max-width: 1024px) {
    .about-container {
        padding: 0 40px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .about-content h3 {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    .about-section {
        padding: 70px 0;
    }
    
    .about-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .about-content h3 {
        font-size: 20px;
    }
    
    .about-content p {
        font-size: 15px;
    }
    
    .about-cta-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}
/* ========== SERVICES SECTION STYLES ========== */
.services-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.car-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 20px;
    overflow: hidden;
}

.car-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    margin: 0 auto;
    padding: 10px 0;
}

.car-slide {
    min-width: calc(25% - 15px);
    flex: 0 0 calc(25% - 15px);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
}

.car-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: all 0.4s ease;
    height: 250px;
    width: 100%;
    position: relative;
    transform-origin: center;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.car-image {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    flex: 1;
}

.car-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.1);
}

.car-name {
    padding: 15px;
    font-weight: 600;
    font-size: 18px;
    color: var(--dark-gray);
    position: relative;
    text-align: center;
}

.car-name::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-yellow), var(--dark-yellow));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.car-card:hover .car-name::after {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: 0 3px 10px var(--shadow-color);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-btn:hover {
    background-color: var(--primary-yellow);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn i {
    font-size: 18px;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.carousel-btn:hover i {
    color: white;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 25px;
    border-radius: 5px;
    background-color: var(--primary-yellow);
}

/* Active slide effect */
.car-slide.active .car-card {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Animation for cards */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.car-slide.entering {
    animation: fadeIn 0.5s forwards;
}

/* Responsive styles - improved for better mobile alignment */
@media screen and (max-width: 1024px) {
    .car-slide {
        min-width: calc(33.33% - 15px);
        flex: 0 0 calc(33.33% - 15px);
    }
}

@media screen and (max-width: 768px) {
    .car-slide {
        min-width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .car-carousel {
        gap: 10px;
    }
}

@media screen and (max-width: 480px) {
    .car-slide {
        min-width: calc(100% - 10px);
        flex: 0 0 calc(100% - 10px);
        margin: 0 auto;
    }
    
    .car-card {
        height: 220px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .car-image {
        height: 150px;
    }
    
    .car-name {
        font-size: 16px;
        padding: 12px 10px;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
    }
    
    .carousel-btn i {
        font-size: 16px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .carousel-btn {
        background-color: rgba(255, 255, 255, 0.8);
    }
    
    .car-card:active {
        transform: translateY(-5px) scale(1.01);
    }
}
/* ========== CONTACT SECTION STYLES ========== */
.contact-section {
    padding: 90px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    margin: 50px 0;
}

.contact-form-container {
    flex: 1;
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 20px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.form-header {
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-gray);
    font-size: 15px;
}

#contactForm .form-group {
    margin-bottom: 20px;
}

#contactForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 14px;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 14px;
    border: 1.5px solid #E5E5E5;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.25s ease;
    background-color: #FAFAFA;
}

#contactForm input:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
    background-color: white;
}

#contactForm textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, var(--primary-yellow), var(--dark-yellow));
    color: var(--dark-gray);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-btn::before {
    content: '\f232'; /* WhatsApp icon */
    font-family: 'Font Awesome 5 Brands';
    font-size: 18px;
}

.contact-btn:hover {
    background: linear-gradient(to right, var(--dark-yellow), var(--primary-yellow));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 182, 22, 0.4);
}

.contact-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(226, 182, 22, 0.4);
}

/* Contact Information Styles */
.contact-info-container {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.contact-info {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #222222 100%);
    border-radius: 10px;
    padding: 35px;
    color: var(--white);
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--primary-yellow);
    bottom: 0;
    left: 0;
    border-radius: 3px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.info-item i {
    font-size: 22px;
    color: var(--primary-yellow);
    width: 24px;
    text-align: center;
}

.info-details {
    flex: 1;
}

.info-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-yellow);
}

.info-details p {
    font-size: 14px;
    line-height: 1.6;
    color: #DDDDDD;
    margin-bottom: 5px;
}

.info-details a {
    color: #DDDDDD;
    transition: color 0.2s ease;
}

.info-details a:hover {
    color: var(--primary-yellow);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-yellow);
    transform: translateY(-3px);
    color: var(--dark-gray);
}

/* Google Maps Container */
.map-container {
    margin-top: 60px;
}

.map-container h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-gray);
    text-align: center;
}

.google-map {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px var(--shadow-color);
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .contact-wrapper {
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 70px 0;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-form-container,
    .contact-info-container {
        width: 100%;
    }
    
    .google-map {
        height: 400px;
    }
}

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-form-container,
    .contact-info {
        padding: 20px;
    }
    
    .form-header h3 {
        font-size: 22px;
    }
    
    .contact-info h3 {
        font-size: 22px;
    }
    
    .contact-btn {
        padding: 14px;
    }
    
    .google-map {
        height: 300px;
    }
}
/* ========== FOOTER SECTION STYLES ========== */
.footer-section {
    background-color: var(--dark-gray);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 80px 0 0 0;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-bg-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 70%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(242, 201, 76, 0.05) 100%);
    transform: skewY(-6deg) translateY(40%);
    border-radius: 50% 0 0 0;
    z-index: 1;
}

/* About Section */
.footer-about {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: #CCCCCC;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social .social-icon:hover {
    background-color: var(--primary-yellow);
    transform: translateY(-3px);
    color: var(--dark-gray);
}

/* Links Section */
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary-yellow);
    bottom: 0;
    left: 0;
    border-radius: 3px;
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: #CCCCCC;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

.footer-links ul li a::before,
.footer-services ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--primary-yellow);
    transition: transform 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.footer-links ul li a:hover::before,
.footer-services ul li a:hover::before {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact ul li {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact ul li i {
    color: var(--primary-yellow);
    margin-right: 10px;
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact ul li span {
    color: #CCCCCC;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact ul li a {
    color: #CCCCCC;
    transition: color 0.2s ease;
}

.footer-contact ul li a:hover {
    color: var(--primary-yellow);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    margin-bottom: 20px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.copyright p {
    font-size: 13px;
    color: #AAAAAA;
}

.copyright a {
    color: #AAAAAA;
    transition: color 0.2s ease;
}

.copyright a:hover {
    color: var(--primary-yellow);
}

.back-to-top a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.back-to-top a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.back-to-top a:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
}

.back-to-top a:hover i {
    transform: translateY(-3px);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-about {
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {
    .footer-section {
        padding: 60px 0 0 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-top {
        gap: 40px;
    }
}

@media screen and (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-about p {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links h4,
    .footer-services h4,
    .footer-contact h4 {
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-services h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul,
    .footer-services ul {
        text-align: center;
    }
    
    .footer-contact ul li {
        justify-content: center;
    }
}
