/* CSS Variables */
:root {
    /* Primary Brand Colors */
    --primary-yellow: #f8bf02;
    --primary-yellow-dark: #e6a800;
    --primary-yellow-light: #f9d54a;
    
    /* Text Colors */
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #333333;
    --bg-darker: #222222;
    
    /* Border Colors */
    --border-light: #eeeeee;
    --border-medium: #dddddd;
    --border-dark: #cccccc;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
}

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

/* Header Styles */
.site-header {
    width: 100%;
    z-index: 1000;
    position: fixed;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Top Bar */
.top-bar {
    background: #222;
    padding: 8px 0;
    color: #fff;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item i {
    color: #f8bf02;
    margin-right: 8px;
}

.top-socials {
    display: flex;
    gap: 12px;
}

.top-socials a {
    color: #fff;
    transition: color 0.3s ease;
}

.top-socials a:hover {
    color: #f8bf02;
}

/* Main Header */
.main-header {
    padding: 12px 0;
    background: #fff;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:not(.btn-book)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #f8bf02;
    transition: width 0.3s ease;
}

.nav-links a:hover:not(.btn-book)::after,
.nav-links a.active:not(.btn-book)::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f8bf02;
}

.book-btn {
    margin-left: 15px;
}

.btn-book {
    display: inline-block;
    background: #f8bf02;
    color: #222 !important;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: #222;
    color: #f8bf02 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

/* Responsive Header */
@media (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .btn-book {
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
    }
    
    .main-nav.active {
        max-height: 400px;
    }
    
    .nav-links {
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 12px 20px;
    }
    
    .nav-links a:not(.btn-book)::after {
        display: none;
    }
    
    .book-btn {
        margin: 15px 0 0;
    }
    
    .btn-book {
        width: 80%;
        max-width: 200px;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/gallery/cars9.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    height: 80%;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 60vh;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2d3748;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5568;
    line-height: 1.6;
}

.search-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-top: 30px;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.search-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.search-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.search-field {
    flex: 1;
    min-width: 200px;
}

.search-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-field input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.search-field input:focus {
    outline: none;
    border-color: #4a5568;
    box-shadow: 0 0 0 3px rgba(74, 85, 104, 0.2);
}

.search-btn {
    background: #2d3748;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 14px 28px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-btn:hover {
    background: #4a5568;
    transform: translateY(-2px);
}

/* Map decoration elements */
.map-marker {
    position: absolute;
    z-index: 1;
}

.marker-1 {
    top: 20%;
    right: 15%;
    animation: float 3s infinite alternate ease-in-out;
}

.marker-2 {
    bottom: 25%;
    left: 10%;
    animation: float 4s infinite alternate-reverse ease-in-out;
}

@keyframes float {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #f8bf02;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .hero-text {
        padding-right: 0;
        padding-bottom: 20px;
    }

    .hero-image {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .search-fields {
        flex-direction: column;
    }
    
    .search-btn {
        width: 100%;
    }
}

/* Company Info Section */
.company-info {
    padding: 5rem 0;
    background: linear-gradient(to right, #f8f9fa, #f0f0f0);
    position: relative;
    overflow: hidden;
}

.company-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(240, 165, 0, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.company-info .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.logo-section {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo-section img {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.contact-numbers {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    width: 100%;
}

.contact-numbers p {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-numbers p::before {
    content: '\f095';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #f0a500;
}

.company-description {
    flex: 2;
    min-width: 300px;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.company-description:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-description h2 {
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.company-description h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #f0a500;
}

.company-description p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.company-description .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #2d3748;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.company-description .btn:hover {
    background: #4a5568;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .company-info {
        padding: 4rem 0;
    }
    
    .company-info .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .logo-section, .company-description {
        width: 100%;
        min-width: auto;
    }
    
    .logo-section {
        padding: 1.5rem;
    }
    
    .logo-section img {
        max-width: 150px;
    }
    
    .company-description h2 {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .company-description h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .company-description {
        padding: 1.5rem;
        text-align: center;
    }
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background: #0f172a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(240, 165, 0, 0.03);
    border-radius: 50%;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(240, 165, 0, 0.03);
    border-radius: 50%;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 3.5rem;
    font-size: 2.2rem;
    color: #fff;
    position: relative;
    padding-bottom: 1rem;
}

.why-us h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #f0a500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #f0a500;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature:hover::before {
    transform: scaleY(1);
}

.feature h3 {
    margin-bottom: 1rem;
    color: #f0a500;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.feature h3::before {
    content: '●';
    color: #f0a500;
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s, left 0.3s;
}

.feature:hover h3::before {
    opacity: 1;
    left: -1rem;
}

.feature p {
    color: #cbd5e0;
    line-height: 1.6;
}

.feature-icon {
    font-size: 2.5rem;
    color: #f0a500;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

/* Modal popup for feature descriptions */
.feature-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-modal.active {
    display: flex;
    opacity: 1;
}

.feature-modal-content {
    background: #1a2234;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    padding: 2rem;
    border: 1px solid rgba(240, 165, 0, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.feature-modal.active .feature-modal-content {
    transform: scale(1);
}

.feature-modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(240, 165, 0, 0.2);
    padding-bottom: 1rem;
}

.feature-modal-icon {
    font-size: 2rem;
    color: #f0a500;
    margin-right: 1rem;
}

.feature-modal-title {
    color: #f0a500;
    font-size: 1.5rem;
    font-weight: 600;
}

.feature-modal-body {
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #cbd5e0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.feature-modal-close:hover {
    color: #f0a500;
}

/* Responsive adjustments for Why Us section */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 4rem 0;
    }
    
    .why-us h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .feature {
        padding: 2rem 1.2rem;
    }
    
    .feature h3 {
        font-size: 1.1rem;
    }
    
    .feature p {
        display: none;
    }
    
    .feature-icon {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .feature {
        padding: 1.5rem 1rem;
    }
    
    .feature h3 {
        font-size: 0.9rem;
    }
}

/* Business Philosophy Section */
.business-philosophy {
    padding: 5rem 0;
    background: #f8f9fa;
    color: #333;
}

.philosophy-content {
    text-align: left;
    padding: 2rem 0;
}

.philosophy-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    position: relative;
    font-weight: 700;
}

.philosophy-content h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 3px;
    background-color: #f0a500;
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 25px;
    color: #4a5568;
}

.philosophy-image {
    padding: 1rem;
    position: relative;
}

.philosophy-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

.philosophy-image:hover img {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .business-philosophy {
        padding: 4rem 0;
    }
    
    .philosophy-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .philosophy-content h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .philosophy-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(240, 165, 0, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    color: #2d3748;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f0a500;
}

.section-header p {
    color: #4a5568;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-wrapper {
    display: flex;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    flex: 1;
    display: grid;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(240, 165, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0a500;
    font-size: 1.3rem;
}

.contact-info-item h3 {
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #4a5568;
    margin-bottom: 0.3rem;
}

.contact-form {
    flex: 1.5;
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 0.5rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 15px;
    color: #4a5568;
    font-size: 1rem;
}

.textarea-icon {
    top: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 2.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
    padding-top: 1rem;
    font-family: 'Arial', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f0a500;
    box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.15);
}

.contact-btn {
    background: #2d3748;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    align-self: flex-start;
}

.contact-btn:hover {
    background: #4a5568;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .contact-btn {
        width: 100%;
        align-self: center;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-info-item {
        padding: 1.2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-header p {
        font-size: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-info-item h3 {
        font-size: 1rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--bg-darker);
    color: var(--text-white);
    font-family: 'Arial', sans-serif;
}

.footer-top {
    padding: 80px 0 60px;
    background-image: linear-gradient(rgba(26, 32, 44, 0.97), rgba(26, 32, 44, 0.97)), url('../images/map-bg.png');
    background-size: cover;
    background-position: center;
}

.footer-grid-4 {
    display: flex;
    flex-direction: row;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: stretch;
}

.footer-column {
    flex: 1;
    max-width: calc(25% - 22.5px);
}

.footer-column h3 {
    color: var(--primary-yellow);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-yellow);
}

.footer-column .tagline {
    color: var(--text-white);
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-white);
    line-height: 1.4;
    gap: 10px;
}

.footer-contact p i {
    color: var(--primary-yellow);
    width: 20px;
    text-align: center;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-links-list a i {
    color: var(--primary-yellow);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.footer-links-list a:hover i {
    transform: translateX(3px);
}

.footer-column p {
    color: var(--text-white);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
}

.newsletter-form .input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0.75rem;
    align-items: flex-start;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid var(--border-medium);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 250px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1rem;
    justify-content: flex-start;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: var(--primary-yellow);
    color: var(--bg-darker);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(248, 191, 2, 0.3);
}

.footer-bottom {
    background-color: var(--bg-dark);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.copyright {
    color: var(--text-white);
    font-size: 0.9rem;
    margin: 0;
}

.powered-by {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
}

.powered-by a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.powered-by a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-yellow);
}

/* Footer Responsive Design */
@media (max-width: 992px) {
    .footer-grid-4 {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-column {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-grid-4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .footer-column {
        max-width: 100%;
    }

    .footer-column h3 {
        font-size: 1rem;
        text-align: left;
    }

    .footer-column h3::after {
        left: 0;
        transform: none;
        width: 30px;
    }

    .footer-column .tagline {
        text-align: left;
        font-size: 0.9rem;
    }

    .footer-contact p {
        font-size: 0.85rem;
        justify-content: flex-start;
    }

    .footer-links-list {
        text-align: left;
    }

    .footer-links-list a {
        justify-content: flex-start;
    }

    .footer-links-list a:hover {
        transform: translateX(5px);
    }

    .footer-links-list a:hover i {
        transform: translateX(3px);
    }

    .footer-column p {
        text-align: left;
        font-size: 0.85rem;
    }

    .social-links {
        justify-content: flex-start;
    }

    .newsletter-form .input-group {
        align-items: flex-start;
    }

    .newsletter-form input,
    .newsletter-form .btn {
        max-width: 200px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-left {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-column h3 {
        font-size: 1rem;
    }

    .footer-column .tagline {
        font-size: 0.9rem;
    }

    .footer-contact p {
        font-size: 0.85rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .newsletter-form .btn {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .features-grid {

    }
}

/* Clients Section */
.clients {
    padding: 5rem 0;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.clients h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3748;
    font-size: 2rem;
    position: relative;
}

.clients h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4a5568;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.client-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.client-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}

.client-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments for clients grid */
@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .client-item:nth-child(7), .client-item:nth-child(8) {
        grid-column: span 1;
    }
    
    .client-item:nth-child(9) {
        display: none;
    }
}

@media (max-width: 768px) {
    .clients {
        padding: 3rem 0;
    }
    
    .clients h2 {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1rem;
        max-width: 100%;
    }
    
    .client-item {
        padding: 1rem;
    }
    
    .client-item img {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .clients {
        padding: 2.5rem 0;
    }
    
    .clients h2 {
        font-size: 1.6rem;
    }
    
    .clients h2::after {
        width: 60px;
        height: 2px;
    }
    
    .clients-grid {
        gap: 0.8rem;
    }
    
    .client-item {
        padding: 0.8rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }
    
    .client-item:hover {
        transform: translateY(-3px);
    }
}

/* Language Notification */
.language-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.notification-content {
    background: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 4px solid #f8bf02;
}

.notification-content p {
    margin: 0;
    color: #333;
    font-size: 0.9rem;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
}

.notification-close:hover {
    color: #333;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
} 