:root {
            --royal-blue: #0891b2;
            --light-blue: #0891b2;
            --orange: #f97316;
            --dark-orange: #ea580c;
            --light-gray: #f3f4f6;
            --dark-gray: #374151;
            --text-dark: #1f2937;
        }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-gray);
    overflow-x: hidden;
    margin: 0;
        padding: 0;
        width: 100%;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
 /* Loader */
 .loader-wrapper {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: var(--text-dark);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     transition: opacity 0.5s ease, visibility 0.5s ease;
 }

 .loader-wrapper.hidden {
     opacity: 0;
     visibility: hidden;
 }

 .loader {
     width: 60px;
     height: 60px;
     border: 4px solid var(--border-gray);
     border-top: 4px solid var(--royal-blue);
     border-right: 4px solid var(--orange);
     border-radius: 50%;
     animation: spin 1s linear infinite;
 }

 @keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 /* Navbar */
 .navbar {
     background: var(--text-dark);
     backdrop-filter: blur(8px);
     margin: 0 15px 0 15px;
     border-radius: 15px;
     padding: 1rem 0;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
 }

 .navbar-brand {
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     font-size: 1.8rem;
     color: var(--light-blue) !important;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 .navbar-brand span {
     color: var(--orange);
 }

 .logo {
     height: 60px;
 }

 .nav-link {
     color: white !important;
     font-weight: 500;
     margin: 0 15px;
     transition: all 0.3s ease;
     position: relative;
 }

 .nav-link:hover {
     color: var(--orange) !important;
     transform: translateY(-2px);
 }

 .nav-link::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: var(--orange);
     transition: width 0.3s ease;
 }

 .nav-link:hover::after {
     width: 100%;
 }

 .navbar-toggler {
     border-color: rgba(255, 255, 255, 0.5);
 }

 .navbar-toggler-icon {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
 }

 .navbar-toggler:focus {
     outline: none;
     box-shadow: none;
 }
/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1600') center/cover;
    padding: 180px 0 100px;
    color: white;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--royal-blue) 0%, transparent 100%);
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-top: 20px;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: var(--orange);
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: var(--orange);
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--royal-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 20px auto 0;
}

/* Contact Info Section */
.contact-info-section {
    background: white;
}

.contact-info-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;

}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

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

.contact-info-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.contact-details {
    text-align: center;
}

.contact-details p {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.contact-details a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--orange);
}

/* Contact Form Section */
.contact-form-section {
    background: white;
}

.form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-gray);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    color: var(--royal-blue);
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--dark-gray);
    font-size: 1.05rem;
}

.form-control {
    border: 2px solid #e5e7eb;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-select {
    border: 2px solid #e5e7eb;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-custom {
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--orange) 0%, var(--dark-orange) 100%);
    color: white;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.alert-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 20px;
    display: none;
}

/* Map Section */
.map-section {
    background: var(--light-gray);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 450px;
    background: white;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-align: center;
    padding: 10px;
}


.map-placeholder h4 {
    font-size: 1.8rem;
}


/* Business Hours */
.business-hours-section {
    background: white;
}

.hours-card {
    background: var(--text-dark);
    border-radius: 20px;
    padding: 50px;
    color: white;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.3);
}

.hours-card h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
}

.time {
    color: var(--orange);
    font-weight: 500;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--orange);
}

.footer-content p {
    opacity: 0.9;
    line-height: 1.8;
}
.footer-bottom p a{
    text-decoration: none;
    color: var(--orange);
}

.footer-links h5 {
    color: var(--orange);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--orange);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.8;
}

/* Scroll to top button */
#scrollTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

#scrollTop:hover {
    background: var(--dark-orange);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 150px 0 80px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .hours-card {
        padding: 30px 20px;
    }
}

