/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

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

.nav-logo h2 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.5rem;
}

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

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #3498db;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('https://images.unsplash.com/photo-1486006920555-c77dcf18193c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #3498db;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 1.5rem;
    color: #3498db;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    position: relative;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.service-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

.book-now-btn {
    margin-top: auto;
    align-self: center;
    min-width: 140px;
    margin-bottom: 0;
}

/* Services Extra List */
.services-extra-list {
    margin-top: 2.5rem;
}
.services-extra-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.services-extra-list li {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.1rem 1.3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 500;
    color: #2c3e50;
}
.services-extra-list .service-more {
    color: #3498db;
    font-size: 0.98rem;
    text-decoration: none;
    margin-left: 1.2rem;
    transition: color 0.2s;
    white-space: nowrap;
}
.services-extra-list .service-more:hover {
    color: #217dbb;
    text-decoration: underline;
}

/* Reviews Section */
.reviews {
    background: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.review-stars {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.25rem;
}

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

/* Contact Section */
.contact {
    background: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #3498db;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}


.form-group label[for="name"]::after,
.form-group label[for="email"]::after,
.form-group label[for="phone"]::after {
    content: " *";
    color: #e74c3c;
    font-weight: 600;
}

.error-message {
    color: #e74c3c !important;
    font-size: 0.875rem !important;
    margin-top: 0.25rem !important;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.hours li {
    display: flex;
    justify-content: space-between;
    color: #bdc3c7;
}

.hours li span {
    font-weight: 600;
    color: #ecf0f1;
}

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info-footer i {
    color: #3498db;
    width: 20px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Map Section */
.map-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

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

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

.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 40%; /* Reduced from 56.25% to make it smaller */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hours li {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }

    .contact-info-footer p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .logo-img {
        height: 36px;
        max-width: 110px;
        margin-right: 10px;
    }

    .logo-img-footer {
        height: 36px;
        max-width: 120px;
        margin-bottom: 8px;
    }
}

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

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .service-card,
    .review-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .logo-img {
        height: 80px;
        max-width: 300px;
    }
    .logo-img-footer {
        height: 80px;
        max-width: 200px;
    }
}

@media (max-width: 600px) {
    .logo-img {
        height: 48px;
        max-width: 160px;
    }
    .logo-img-footer {
        height: 40px;
        max-width: 120px;
    }
    .footer-brand-text {
        font-size: 1.3rem;
    }
    .services-extra-list ul {
        grid-template-columns: 1fr;
    }
    .services-extra-list li {
        flex-direction: column;
        align-items: flex-start;
        font-size: 0.98rem;
    }
    .services-extra-list .service-more {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    #collapsibleReviews {
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }
    #toggleReviewsBtn {
        display: block !important;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 80px;
}

.logo-img {
    height: 120px;
    max-width: 450px;
    width: 100%;
    margin-right: 0;
    vertical-align: middle;
    display: inline-block;
    object-fit: contain;
    transition: height 0.2s, max-width 0.2s;
}

.logo-img-footer {
    height: 120px;
    max-width: 450px;
    width: 100%;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    transition: height 0.2s, max-width 0.2s;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 18px;
}

.footer-brand-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.12);
    text-align: center;
    margin-top: 0;
}

@media (max-width: 1024px) {
    .logo-img-footer {
        height: 80px;
        max-width: 200px;
    }
}

@media (max-width: 600px) {
    .footer-logo-text {
        flex-direction: column;
        gap: 10px;
    }
    .footer-brand-text {
        font-size: 1.3rem;
    }
}

/* Social Media Icons */
.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Footer responsive adjustments */
@media (max-width: 768px) {
    .social-media {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Footer Carousels - Static Version */
.carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    animation: none !important;
}

.carousel-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    position: relative;
    margin-top: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.carousel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    margin: 0 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .carousel-item {
        min-width: 70px;
        margin: 0 0.3rem;
        padding: 0.4rem;
    }
}

/* Footer Carousel Full Width Wrapper */
.footer-carousel-row-wrapper {
    width: 100vw;
    background: #34495e;
    padding: 2rem 0 2.5rem 0;
    margin-left: 50%;
    transform: translateX(-50%);
}

.carousel-row {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    background: none;
    padding: 0;
}

@media (max-width: 1200px) {
    .carousel-row {
        max-width: none;
    }
}

@media (max-width: 900px) {
    .carousel-row {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .carousel-row {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 98vw;
    }
    .carousel-section {
        width: 100%;
    }
}

.footer-section-title {
    color: #3498db;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .footer-section-title {
        text-align: center;
        margin-bottom: 0.8rem;
    }
}

.carousel-item.leeway-bg {
    background: url('leeway-brothers-logo.jpg') center center/contain no-repeat;
    min-width: 120px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    margin: 0 0.5rem;
    border-radius: 8px;
}
.carousel-item.leeway-bg span {
    background: rgba(44,62,80,0.7);
    color: #fff;
    font-weight: bold;
    padding: 0.3em 0.8em;
    border-radius: 6px;
    margin-bottom: 0.7em;
    z-index: 2;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .carousel-item.leeway-bg {
        min-width: 90px;
        min-height: 70px;
    }
    .carousel-item.leeway-bg span {
        font-size: 0.85rem;
        padding: 0.2em 0.5em;
    }
}

.carousel-item.vero-bg {
    background: url('veros-kitchen.jpg') center center/contain no-repeat;
    min-width: 120px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
    margin: 0 0.5rem;
    border-radius: 8px;
}
@media (max-width: 768px) {
    .carousel-item.vero-bg {
        min-width: 90px;
        min-height: 70px;
    }
}

/* Responsive Gold Customers Carousel */
.carousel-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    position: relative;
    margin-top: 0.5rem;
    -webkit-overflow-scrolling: touch;
}
.carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 0.5rem;
}
@media (max-width: 768px) {
    .carousel-container {
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    .carousel-track {
        justify-content: flex-start;
        gap: 0.5rem;
        min-width: 400px;
    }
    .carousel-item, .carousel-item.leeway-bg, .carousel-item.vero-bg {
        min-width: 90px;
        min-height: 70px;
        margin: 0 0.2rem;
    }
}

/* Responsive Follow Us Social Icons */
.social-media {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.social-link {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}
@media (max-width: 768px) {
    .social-media {
        gap: 0.7rem;
        justify-content: center;
    }
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

#toggleReviewsBtn {
    display: none;
}

@media (max-width: 600px) {
    #collapsibleReviews {
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }
    #toggleReviewsBtn {
        display: block !important;
    }
}

.hidden-review {
  display: none !important;
} 