/*
Theme Name: Your Theme Name
Theme URI: http://example.com/your-theme
Author: Your Name
Author URI: http://example.com
Description: A brief description of your theme.
Version: 1.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: your-theme
*/

:root {
    --primary-color: #006837;
    --secondary-color: #e3a130;
    --accent-color: #006837;
    --dark-color: #333333;
    --light-color: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
.top-bar {
    background-color: black;
    color: white;
    padding: 10px 0;
    position: relative;
}

.cta-button {
    background-color: var(--accent-color);
    color: white;
    padding: 8px 10px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    width: fit-content;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block;
    margin: 0 auto;
    font-size: 30px;
}

/* Navigation */
.main-nav {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0;
    transition: background-color 0.2s ease;
}

.main-nav.transparent {
    background-color: rgba(51, 51, 51, 0.7);
    backdrop-filter: blur(5px);
}

.main-nav.solid {
    background-color: var(--dark-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    transition: color;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Social Media Icons */
.social-icons {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    transition: color 0.3s;
    margin-left: 20px;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--dark-color);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 101;
    top: 100%;
    left: 0;
    border-top: 2px solid var(--secondary-color);
    padding: 10px 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    text-transform: none;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: black;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer p {
    margin: 10px 0;
    font-size: 14px;
}

/* ===== HOME PAGE STYLES ===== */

/* Hero Section - Home */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 400;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 16px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Section - Home */
.services-section {
    padding: 0;
    width: 100%;
    position: relative;
    margin: 0;
}

.services-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 100%;
    min-height: 900px;
    gap: 0px;
    border: none;
}

.services-grid-cell {
    border: none;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cell-content {
    color: white;
    text-align: center;
    padding: 20px;
    z-index: 1;
    opacity: 1;
}

.cell-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.cell-content p {
    font-size: 16px;
}

.top-left {
    grid-area: 1 / 1 / 2 / 2;
}

.top-right {
    grid-area: 1 / 2 / 2 / 3;
}

.bottom-left {
    grid-area: 2 / 1 / 3 / 2;
}

.bottom-right {
    grid-area: 2 / 2 / 3 / 3;
    background-size: 110% 150%;
    background-position: center center;
}

/* Learn More Button Style */
.learn-more-btn {
    display: inline-block;
    background-color: #006837;
    color: white;
    padding: 10px 20px;
    margin-top: 5px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.learn-more-btn:hover {
    background-color: #e3a130;
    transform: translateY(-3px);
}

/* Overlapping title container */
.services-title-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background-color: white;
    text-align: center;
    padding: 40px 50px;
    width: 400px;
    max-width: 90%;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.services-title-container h2 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.services-title-container p {
    font-size: 18px;
    color: #333;
}

/* Contact Section - Home */
.contact-section {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    height: 85vh;
}

.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
}

.contact-info {
    padding-top: 30px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-details p {
    margin-bottom: 10px;
}

.map-container {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero Banner */
.services-hero {
    height: 60vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../Images/abnormal.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 0px;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Services Content */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.service-category {
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-info {
    padding-right: 20px;
}

.service-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.service-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.service-info p {
    margin-bottom: 15px;
    color: #555;
}

.service-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-image-crane {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.service-image-crane img {
    width: 120%;
    height: auto;
    object-fit: fill;
    display: block;
    transition: transform 0.5s ease;
    padding-right: 10%;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Contact Banner - Services */
.contact-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.contact-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.contact-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.contact-banner p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.contact-banner .phone {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.contact-btn {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #d08c1a;
}

html {
    scroll-padding-top: 200px;
    scroll-behavior: smooth;
}

/* ===== JOINT VENTURE PAGE STYLES ===== */

/* Joint Venture Hero Banner */
.joint-venture-hero {
    height: 60vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../Images/8 Ton.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    margin-top: 0px;
}

.joint-venture-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.joint-venture-hero h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Joint Venture Logo Section */
.logo-section {
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: white;
}

.logo-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 800px;
    width: 100%;
}

.logo-item {
    text-align: center;
    padding: 0 20px;
}

.logo-item img {
    max-width: 200px;
    height: auto;
    margin-bottom: 15px;
}

.logo-item h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.logo-item p {
    color: #555;
    font-size: 14px;
}

/* Partnership Details Section */
.partnership-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.partnership-header {
    text-align: center;
    margin-bottom: 40px;
}

.partnership-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.partnership-header p {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.structure-container {
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.structure-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.structure-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.structure-item h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.structure-item p {
    color: #555;
    margin-bottom: 15px;
}

/* BBBEE Info Section */
.bbbee-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../Images/Fleet.jpg');
    background-position: center;
    background-size: cover;
    color: whitesmoke;
    padding: 70px 20px;
    text-align: center;
}

.bbbee-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bbbee-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.bbbee-container p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 18px;
}

.bbbee-highlight {
    display: inline-block;
    background-color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px 5px;
    font-size: 20px;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.benefit-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.benefit-card p {
    color: #555;
}

/* Contact Banner - Joint Venture Page */
.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.contact-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 8px;
    min-width: 300px;
    text-align: left;
    border-left: 4px solid var(--secondary-color);
}

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contact-item p {
    margin-bottom: 8px;
    font-size: 1rem;
}

/* ===== RESPONSIVE STYLES ===== */

@media (max-width: 900px) {
    /* Navigation Responsive */
    .nav-container {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 15px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        display: none;
        padding: 0;
        border-top: none;
        background-color: rgba(51, 51, 51, 0.9);
    }
    
    .dropdown:hover .dropdown-content,
    .dropdown:active .dropdown-content,
    .dropdown:focus .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 10px 20px 10px 30px;
    }
    
    /* Home Page Responsive */
    .about-section,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .services-grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 350px);
    }
    
    .top-left {
        grid-area: 1 / 1 / 2 / 2;
    }
    
    .top-right {
        grid-area: 2 / 1 / 3 / 2;
    }
    
    .bottom-left {
        grid-area: 3 / 1 / 4 / 2;
    }
    
    .bottom-right {
        grid-area: 4 / 1 / 5 / 2;
    }
    
    .bottom-right {
        background-size: 110% 110% !important;
        background-position: center center !important;
    }
    
    .services-title-container {
        width: 80%;
        max-width: 350px;
        padding: 30px;
    }
    
    .services-title-container h2 {
        font-size: 3rem;
    }
    
    /* Services Page Responsive */
    .service-category {
        grid-template-columns: 1fr;
    }
    
    .service-info {
        padding-right: 0;
        order: 1;
    }
    
    .service-image {
        order: 0;
        margin-bottom: 20px;
    }
    
    .contact-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-banner .phone {
        margin: 15px 0;
    }
    
    /* Joint Venture Page Responsive */
    .joint-venture-hero h1 {
        font-size: 2.5rem;
    }
    
    .joint-venture-hero h2 {
        font-size: 1.5rem;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-item {
        width: 100%;
        min-width: auto;
    }
}

/* Contact Page Styles - Add these to your style.css file */

/* Contact Information Section */
.contact-page-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.contact-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Contact Info Block */
.contact-info-block {
    padding-right: 20px;
}

.contact-info-block h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.contact-info-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-info-block p {
    margin-bottom: 30px;
    color: #555;
    font-size: 16px;
}

/* Contact Cards */
.contact-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
}

.contact-card-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.contact-card-body {
    padding: 20px;
}

/* Contact Details */
.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-icon {
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* Key Contacts */
.key-contact {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.key-contact:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.key-contact h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.contact-form-container h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.contact-form-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.contact-form-container p {
    margin-bottom: 20px;
    color: #555;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

/* Form message styling */
.form-message {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(0, 104, 55, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.form-message.error {
    display: block;
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Styles for the select dropdown */
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

.contact-form select:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Map Container */
.map-container {
    margin-top: 20px;
}

.map-container h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.map-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Business Hours Section */
.business-hours-section {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 20px;
}

.business-hours-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.business-hours-container h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.business-hours-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--secondary-color);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.hours-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hours-item:hover {
    transform: translateY(-5px);
}

.hours-item .day {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.hours-item .time {
    font-size: 1.1rem;
}

.hours-note {
    font-style: italic;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Styles for Contact Page */
@media (max-width: 900px) {
    .contact-page-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-block {
        padding-right: 0;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card-header h3 {
        font-size: 1.2rem;
    }
    
    .contact-form-container h2,
    .contact-info-block h2 {
        font-size: 2rem;
    }
}