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

body {
    font-family: 'Arial', sans-serif;
    padding-top: 190px;
    /* Space for fixed header */
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    color: #333;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    min-height: 170px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

.opening-hours {
    text-align: center;
    flex-grow: 1;
    margin: 0 2rem;
}

.opening-hours h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color: #333;
}

.current-hours {
    font-size: 1.1rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #555;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

.open {
    background-color: #4ade80;
}

.closed {
    background-color: #f87171;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-link:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* UNIFIED DROPDOWN STYLES - ALL DROPDOWNS LOOK THE SAME */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-top: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* UNIFIED DROPDOWN LINKS - ALL LOOK THE SAME */
.dropdown a {
    display: block;
    color: #333;
    text-decoration: none;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem;
    font-weight: 500;
}

.dropdown a:hover {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    transform: translateX(5px);
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

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

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

/* Mobile opening hours section */
.mobile-opening-hours {
    display: none;
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-opening-hours h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.mobile-opening-hours .current-hours {
    font-size: 1rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #555;
}

/* Demo content */
.content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 940px) {
    .opening-hours {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 2rem 0 120px 0;
        /* ADDED: Bottom padding for opening hours space */
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
        transition: left 0.3s ease;
        z-index: 1001;
        gap: 0;
        overflow-y: auto;
    }

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

    .nav-item {
        width: 100%;
        flex-shrink: 0;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        border-radius: 0;
        background: none;
        border: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }

    .nav-link:hover {
        background: rgba(0, 0, 0, 0.05);
        transform: none;
        box-shadow: none;
    }

    /* MOBILE DROPDOWN - UNIFIED FOR ALL DROPDOWNS */
    .dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
        background: rgba(0, 0, 0, 0.05) !important;
        border-radius: 0 !important;
        min-width: auto !important;

        /* COLLAPSIBLE BEHAVIOR */
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s ease-out !important;
    }

    /* SHOW DROPDOWN WHEN ACTIVE */
    .nav-item.dropdown-active .dropdown {
        max-height: 400px !important;
        overflow-y: auto !important;
    }

    /* MOBILE DROPDOWN LINKS - UNIFIED STYLING FOR ALL */
    .dropdown a {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
        padding: 1.2rem 3rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        font-size: 1.1rem !important;
        color: #333 !important;
        text-decoration: none !important;
        transition: background-color 0.3s ease !important;
        background: transparent !important;
    }

    /* Remove bottom border from last item to prevent extra space */
    .dropdown a:last-child {
        border-bottom: none !important;
    }

    .dropdown a:hover {
        background: rgba(0, 0, 0, 0.1) !important;
        transform: none !important;
        color: #333 !important;
    }

    /* FIXED: Mobile opening hours - Always visible at bottom */
    .mobile-opening-hours {
        display: block !important;
        position: fixed !important;
        /* FIXED: Back to fixed positioning */
        bottom: 0 !important;
        /* FIXED: Stick to bottom of mobile menu */
        left: -300px !important;
        /* FIXED: Start off-screen with menu */
        width: 300px !important;
        /* FIXED: Match menu width */
        background: #1e293b !important;
        /* FIXED: Dark background for contrast */
        color: white !important;
        /* FIXED: White text */
        padding: 1.5rem 2rem !important;
        border-top: 3px solid #3b82f6 !important;
        /* FIXED: Blue accent border */
        z-index: 1002 !important;
        /* FIXED: Above menu */
        transition: left 0.3s ease !important;
        /* FIXED: Smooth transition */
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3) !important;
        /* FIXED: Shadow */
        margin: 0 !important;
        flex-shrink: 0 !important;
        min-height: auto !important;
    }

    /* FIXED: Show opening hours when menu is active */
    .nav-menu.active+.mobile-opening-hours {
        left: 0 !important;
        /* FIXED: Slide in with menu */
    }

    .mobile-opening-hours h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem !important;
        font-weight: 600 !important;
        color: white !important;
        /* FIXED: White text */
    }

    .mobile-opening-hours .current-hours {
        font-size: 1rem !important;
        opacity: 0.9 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        color: #e2e8f0 !important;
        /* FIXED: Light gray text */
    }

    .mobile-opening-hours .status-dot {
        width: 10px !important;
        height: 10px !important;
    }

    .logo {
        height: 100px;
    }

    .header-container {
        min-height: 120px;
    }

    body {
        padding-top: 140px;
    }
}

/* Above 940px - ensure desktop layout */
@media (min-width: 941px) {
    .hamburger {
        display: none !important;
    }

    .mobile-overlay {
        display: none !important;
    }

    .nav-menu {
        display: flex !important;
        position: static !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        padding: 0 !important;
        box-shadow: none !important;
        gap: 1.5rem !important;
    }

    .mobile-opening-hours {
        display: none !important;
    }
}

/* contact form */
.premium-contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
}

.premium-form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.premium-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.premium-section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.premium-section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
    font-weight: 400;
}

.premium-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.premium-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.premium-input-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.premium-input-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-form-input {
    padding: 16px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.premium-form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.premium-form-textarea {
    padding: 16px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.premium-form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.premium-form-textarea::placeholder {
    color: #999;
    font-style: italic;
}

.premium-submit-button {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.premium-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.premium-submit-button:active {
    transform: translateY(-1px);
}

.premium-submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.premium-submit-button:hover::before {
    left: 100%;
}

/* Floating icons */
.premium-input-group::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 45px;
    width: 20px;
    height: 20px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.premium-input-group:focus-within::after {
    opacity: 0.7;
}

/* Icon styles */
.premium-input-group[data-icon="user"]::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23667eea' viewBox='0 0 24 24'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.premium-input-group[data-icon="mail"]::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23667eea' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.89 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.premium-input-group[data-icon="phone"]::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23667eea' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.premium-input-group[data-icon="location"]::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23667eea' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-contact-section {
        padding: 40px 15px;
    }

    .premium-form-wrapper {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .premium-section-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .premium-section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .premium-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .premium-contact-form {
        gap: 20px;
    }

    .premium-form-input,
    .premium-form-textarea {
        padding: 14px 16px;
        font-size: 15px;
    }

    .premium-submit-button {
        width: 100%;
        padding: 16px 30px;
        font-size: 16px;
    }

    .premium-input-group::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .premium-form-wrapper {
        padding: 25px 20px;
    }

    .premium-section-title {
        font-size: 26px;
    }

    .premium-section-subtitle {
        font-size: 14px;
    }

    .premium-form-input,
    .premium-form-textarea {
        padding: 12px 14px;
    }
}

/* Contact Section Styles */
.contact-section {
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 60px;
    font-weight: 300;
}

.contact-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-box {
    background: white;
    border-radius: 20px;
    padding: 50px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-box:nth-child(2)::before {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.contact-box:nth-child(3)::before {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
}

.contact-box h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-description {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-info {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #764ba2;
}

.address-info {
    font-size: 1.1rem;
    color: #2c3e50;
    line-height: 1.6;
}

.company-name {
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

@media (max-width: 768px) {
    .contact-container {
        padding: 0 15px;
    }

    .contact-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .contact-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .contact-boxes {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-box {
        padding: 40px 25px;
    }

    .contact-icon {
        font-size: 2.5rem;
    }

    .contact-box h3 {
        font-size: 1.5rem;
    }

    .contact-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .contact-box {
        padding: 30px 20px;
    }

    .contact-icon {
        font-size: 2rem;
    }
}

/* Map Section Styles */
.map-section {
    width: 100%;
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.map-title {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.map-embed {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .map-container {
        padding: 0 15px;
    }

    .map-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .map-embed {
        padding: 20px;
    }

    .map-embed iframe {
        height: 350px;
    }

    .map-section {
        padding: 50px 0;
    }
}

@media (max-width: 480px) {
    .map-embed {
        padding: 15px;
    }

    .map-embed iframe {
        height: 300px;
        border-radius: 10px;
    }
}

/* Service Areas Section Styles */
.service-areas-section {
    width: 100%;
    padding: 80px 0;
    background-color: #ffffff;
}

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

.areas-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.areas-description {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.area-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.area-item:nth-child(2n) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.area-item:nth-child(3n) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.area-item:nth-child(4n) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.area-item:nth-child(5n) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.more-areas {
    background: #2c3e50;
    color: white;
    padding: 25px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .areas-container {
        padding: 0 15px;
    }

    .areas-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .areas-description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .area-item {
        padding: 15px;
        font-size: 1rem;
    }

    .more-areas {
        font-size: 1.1rem;
        padding: 20px;
    }

    .service-areas-section {
        padding: 50px 0;
    }
}

/* Footer Section Styles */
.footer-section {
    width: 100%;
    padding: 60px 0 40px;
    background-color: #2c3e50;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ecf0f1;
    font-weight: 600;
}

/* Menu Column */
.menu-item {
    margin-bottom: 15px;
}

.menu-item a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    cursor: pointer;
    display: block;
}

.menu-item a:hover {
    color: #3498db;
}

.service-submenu {
    display: none;
    margin-top: 10px;
    padding-left: 20px;
}

.submenu-item {
    margin-bottom: 8px;
}

.submenu-item a {
    font-size: 1rem;
    color: #95a5a6;
}

.submenu-item a:hover {
    color: #3498db;
}

/* Social Media Column */
.social-links {
    /* display: block; */
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    color: #bdc3c7;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #3498db;
}

.social-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Contact Info Column */
.contact-item {
    margin-bottom: 20px;
}

.contact-label {
    color: #eeeeee;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-value {
    color: #ecf0f1;
    font-size: 1rem;
}

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

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

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }

    .footer-section {
        padding: 40px 0 30px;
    }

    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* Copyright Section Styles */
.copyright-section {
    width: 100%;
    padding: 30px 0;
    background-color: #1a252f;
    color: white;
    border-top: 1px solid #34495e;
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright-text {
    font-size: 0.95rem;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.footer-links a:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -12px;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .copyright-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 0 15px;
    }

    .copyright-text,
    .footer-links {
        margin-bottom: 0;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-links a:not(:last-child)::after {
        display: none;
    }

}