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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fafafa;
}

/* Main navigation content */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    min-height: 100px;
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

/* Navigation Container */
.navbar {
    background-color: #3a3a3a;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Color bars at top and bottom */
.color-bar {
    height: 6px;
    display: flex;
}

.color-bar-segment {
    flex: 1;
}

.magenta {
    background-color: #E70D88;
}

.cyan {
    background-color: #2CABE2;
}

.yellow {
    background-color: #F1EC0E;
}

/* Main navigation content */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    min-height: 100px;
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

/* Navigation menu */
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-link:hover {
    color: #2CABE2;
}

/* Dropdown arrow */
.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Desktop dropdown arrow rotation */
@media (min-width: 769px) {
    .nav-item:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Dropdown menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2d2d2d;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 0.5rem;
    border-top: 3px solid #2CABE2;
}

/* Desktop hover effect only */
@media (min-width: 769px) {
    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-item {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

@media (min-width: 769px) {
    .dropdown-item:hover {
        background-color: #3a3a3a;
        color: #2CABE2;
        padding-left: 2rem;
    }
}

/* Active/Current page indicator */
.nav-link.active {
    color: #F1EC0E;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F1EC0E;
}

/* Mobile menu button (hidden by default) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #2d2d2d 0%, #3a3a3a 100%);
    padding: 8rem 2rem 4rem;
    margin-top: 100px;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.about-hero p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

/* Contact Form Section */
.contact-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

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

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2CABE2;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* File Upload Styling */
.file-upload {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: block;
    padding: 1rem;
    border: 2px dashed #2CABE2;
    border-radius: 5px;
    text-align: center;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.file-upload:hover .file-upload-label {
    background-color: #e3f2fd;
    border-color: #E70D88;
}

.file-upload-text {
    color: #666;
    font-size: 1rem;
}

.file-upload-icon {
    font-size: 2rem;
    color: #2CABE2;
    margin-bottom: 0.5rem;
}

.submit-btn {
    background: linear-gradient(90deg, #E70D88, #2CABE2, #F1EC0E);
    background-size: 200% 100%;
    color: white;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-image {
        order: 2;
    }

    .content-text {
        order: 1;
    }

    .service-banner h1 {
        font-size: 2.5rem;
    }

    .service-banner p {
        font-size: 1.2rem;
    }

    .image-collage {
        height: 400px;
    }
}


/* Service Area Section */
.service-area-section {
    padding: 5rem 2rem;
    background-color: white;
}

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

/* Map Side */
.map-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 500px;
    background-color: #f0f0f0;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* You can also use an iframe for interactive Google Maps */
.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Info Side */
.info-container {
    padding: 2rem;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #E70D88, #2CABE2, #F1EC0E);
}

.info-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #2CABE2;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background-color: #2CABE2;
    color: white;
    transform: translateY(-2px);
}

.contact-details {
    flex-grow: 1;
}

.contact-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-value {
    color: #666;
    line-height: 1.6;
}

.contact-value a {
    color: #2CABE2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #E70D88;
}

/* Service Areas List */
.service-areas {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.service-areas-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.areas-list {
    color: #666;
    line-height: 1.8;
    columns: 2;
    column-gap: 2rem;
}

/* Alternative grid layout for areas */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 968px) {
    .service-area-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .map-container {
        height: 400px;
        order: 2;
    }

    .info-container {
        order: 1;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .service-area-section {
        padding: 3rem 1rem;
    }

    .info-title {
        font-size: 2rem;
    }

    .map-container {
        height: 300px;
    }

    .areas-list {
        columns: 1;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Footer (same as other pages) */
.footer {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #3a3a3a;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #2CABE2;
    transform: translateY(-3px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.footer-info {
    padding-top: 2rem;
    border-top: 1px solid #444;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-info a {
    color: #2CABE2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #F1EC0E;
}

.footer-separator {
    color: #666;
    margin: 0 0.5rem;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: #3a3a3a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 1rem;
        display: block;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .mobile-menu-btn {
        display: block !important;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #232323;
        margin-top: 0;
        border-top: none;
    }

    .nav-item.active .dropdown {
        display: block;
    }

    .dropdown-item {
        padding-left: 3rem;
        padding: 0.75rem 2rem;
        background-color: #1a1a1a;
        color: #2CABE2;
    }
}