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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: #DC143C;
    color: white;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.top-bar-left .icon {
    margin-right: 0.3rem;
}

.top-bar-right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.7;
}

/* Header */
header {
    background: white;
    color: #333;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flag-logo {
    height: 40px;
    width: auto;
    border-radius: 5px;
}

.logo-text {
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #DC143C;
}

.buy-button {
    background-color: #DC143C;
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 5px;
}

.buy-button:hover {
    background-color: #b01030;
}

/* Main Content */
main {
    width: 100%;
    padding: 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: -80px;
}

@media (max-width: 768px) {
    .hero-section {
        margin-bottom: 0;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-car-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.hero-title {
    font-size: 4.5rem;
    color: white;
    font-weight: bold;
    margin-bottom: 1.5rem;
    max-width: 600px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text {
    font-size: 1.4rem;
    color: white;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-cta-button {
    display: inline-block;
    background-color: #DC143C;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    width: fit-content;
    transition: background-color 0.3s;
}

.hero-cta-button:hover {
    background-color: #b01030;
}

.hero-arrows {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 1rem;
    color: #999;
    font-size: 2rem;
    cursor: pointer;
}

/* Search Form Section */
.search-form-section {
    position: relative;
    z-index: 20;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.search-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.search-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.search-subtitle {
    color: #666;
    margin-bottom: 1.5rem;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 1rem;
    align-items: end;
}

.form-select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background: white;
}

.form-submit-btn {
    background-color: #333;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit-btn:hover {
    background-color: #555;
}

/* Features Section */
.features-section {
    background: #f8f8f8;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
}

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

/* Brands Section */
.brands-section {
    padding: 4rem 2rem;
    background: white;
}

.brands-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.brands-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.brands-text p {
    color: #666;
    line-height: 1.8;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.brand-logo {
    background: #f8f8f8;
    padding: 1.5rem;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    color: #333;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.brand-logo:hover {
    background: #e8e8e8;
}

/* Deals Section */
.deals-section {
    padding: 4rem 2rem;
    background: #f8f8f8;
}

.deals-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deals-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.deals-subtitle {
    color: #666;
}

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

.deal-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.deal-card {
    position: relative;
    overflow: hidden;
}

.deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.deal-card:hover .deal-overlay {
    opacity: 1;
}

.deal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,107,60,0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.deal-view-btn,
.deal-contact-btn {
    background: white;
    color: #006B3C;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    min-width: 150px;
    text-align: center;
}

.deal-view-btn:hover,
.deal-contact-btn:hover {
    background: #DC143C;
    color: white;
}

.deal-specs {
    display: flex;
    justify-content: space-around;
    padding: 0.8rem 1rem;
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    font-size: 0.85rem;
    color: #666;
}

.deal-specs span {
    padding: 0.2rem 0.5rem;
}

.deal-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #DC143C;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: bold;
    z-index: 5;
}

.deal-price {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    z-index: 5;
}

.deal-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.deal-card h3 {
    padding: 1rem;
    color: #333;
    font-size: 1.1rem;
}

.deal-type {
    padding: 0 1rem 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Electric Section */
.electric-section {
    background: #2a2a2a;
    color: white;
    padding: 4rem 2rem;
}

.electric-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.electric-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.electric-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #ccc;
}

.electric-features {
    display: flex;
    gap: 2rem;
}

.electric-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.electric-icon {
    font-size: 1.5rem;
}

.electric-car-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* News Section */
.news-section {
    padding: 4rem 2rem;
    background: white;
}

.news-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.news-subtitle {
    color: #666;
}

.more-news-btn {
    background: #DC143C;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
}

.more-news-btn:hover {
    background: #b01030;
}

.news-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-date {
    padding: 1rem 1rem 0.5rem;
    color: #666;
    font-size: 0.85rem;
}

.news-title {
    padding: 0 1rem 1rem;
    color: #333;
    font-size: 1.1rem;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 2rem;
    background: #f8f8f8;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.reviews-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.reviews-subtitle {
    color: #666;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    gap: 2rem;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.review-stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.review-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.review-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.review-author strong {
    color: #333;
}

.review-author span {
    color: #666;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    background: white;
}

.about-section h1 {
    max-width: 1400px;
    margin: 0 auto 3rem;
    font-size: 2rem;
    color: #333;
    text-align: center;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-block {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
}

.about-block h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.about-block p {
    color: #666;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #2a2a2a;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #DC143C;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #DC143C;
}

.footer-hours h4 {
    margin-bottom: 1rem;
}

.hours-box {
    background: rgba(220, 20, 60, 0.2);
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hours-time {
    background: #DC143C;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-weight: bold;
}

.hours-time.closed {
    background: #666;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .deals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-text {
        font-size: 1.2rem;
    }
    
    .deals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 4rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 1rem;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #eee;
    }
    
    .buy-button {
        width: 100%;
        text-align: center;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .hero-section {
        height: 500px;
        margin-bottom: 0;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .hero-arrows {
        display: none;
    }
    
    .features-section {
        padding: 3rem 1.5rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .brands-section {
        padding: 3rem 1.5rem;
    }
    
    .brands-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .brand-logo {
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    .deals-section {
        padding: 3rem 1.5rem;
    }
    
    .deals-header {
        margin-bottom: 2rem;
    }
    
    .deals-header h2 {
        font-size: 1.8rem;
    }
    
    .deals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .deal-image {
        height: 180px;
    }
    
    .electric-section {
        padding: 3rem 1.5rem;
    }
    
    .electric-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .electric-title {
        font-size: 2rem;
    }
    
    .electric-text {
        font-size: 1rem;
    }
    
    .electric-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .electric-car-img {
        height: 300px;
    }
    
    .news-section {
        padding: 3rem 1.5rem;
    }
    
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .news-header h2 {
        font-size: 1.8rem;
    }
    
    .more-news-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reviews-section {
        padding: 3rem 1.5rem;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .review-card {
        flex-direction: column;
        text-align: center;
    }
    
    .review-avatar {
        margin: 0 auto 1rem;
    }
    
    .about-section {
        padding: 3rem 1.5rem;
    }
    
    .about-section h1 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-block {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    main {
        padding: 0;
    }
}

/* Small Mobile Styles (iPhone SE, small Android) */
@media (max-width: 480px) {
    nav {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .flag-logo {
        height: 30px;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-text {
        font-size: 0.9rem;
    }
    
    .hero-cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .brands-section,
    .deals-section,
    .electric-section,
    .news-section,
    .reviews-section,
    .about-section {
        padding: 2rem 1rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .map-section {
        padding: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-text {
        font-size: 1.3rem;
    }
}

section[id] {
    scroll-margin-top: 100px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #006B3C 0%, #004d2a 100%);
    color: white;
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-family: 'Arial', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #006B3C;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,107,60,0.4);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    text-decoration: none;
    font-size: 1.5rem;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,107,60,0.6);
}

.call-btn {
    background: #DC143C;
    box-shadow: 0 4px 15px rgba(220,20,60,0.4);
}

.call-btn:hover {
    box-shadow: 0 6px 20px rgba(220,20,60,0.6);
}

.whatsapp-btn {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}

.whatsapp-btn:hover {
    box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

.scroll-top-btn {
    background: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    display: none;
}

.scroll-top-btn.show {
    display: flex;
}

.scroll-top-btn:hover {
    background: #555;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.btn-icon {
    font-size: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-item,
.deal-card,
.news-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Enhanced Hover Effects */
.deal-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item {
    transition: all 0.3s ease;
}

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

.brand-logo {
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
    background: #006B3C;
    color: white;
}

/* Improved Button Styles */
.hero-cta-button,
.cta-button,
.submit-button,
.form-submit-btn {
    position: relative;
    overflow: hidden;
}

.hero-cta-button::before,
.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta-button:hover::before,
.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Image Loading */
img {
    transition: opacity 0.3s;
}

img[src] {
    opacity: 1;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 2rem;
    background: #f8f8f8;
    min-height: calc(100vh - 200px);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-link {
    color: #006B3C;
    text-decoration: none;
    transition: color 0.3s;
}

.social-link:hover {
    color: #DC143C;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #006B3C;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background-color: #006B3C;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #004d2a;
}

.map-section {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.map-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    border: none;
}

/* Responsive Contact Page */
@media (max-width: 1200px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .map-section {
        padding: 1.5rem;
    }
}
