/* 
Beyond Bay 6 - Main Stylesheet
Colors:
- Primary: #c3a335 (dark mustard yellow)
- Secondary: #000000 (pure black - was #212121)
- White: #ffffff
- Light Gray: #f4f4f4
- Dark Gray: #333333
- Accent: #d9b94a (lighter mustard)
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5em;
    color: #212121;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1em;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #c3a335;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 60px 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #c3a335;
    transition: all 0.3s ease;
}

a:hover {
    color: #d9b94a;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #c3a335;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #d9b94a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #c3a335;
    color: #c3a335;
}

.btn-outline:hover {
    background-color: #c3a335;
    color: #fff;
}

/* Header */
header {
    background-color: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 80px;
}

.main-nav .nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-nav .nav-menu li {
    margin-left: 25px;
}

.main-nav .nav-menu li a {
    color: #ffffff;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.main-nav .nav-menu li a.active:after {
    content: '';
    position: absolute;
    width: 100% !important;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #c3a335;
    opacity: 1;
    transition: none;
}

.main-nav .nav-menu li a:not(.btn):after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #c3a335;
    transition: width 0.3s ease;
}

.main-nav .nav-menu li a:not(.btn):hover:after {
    width: 100%;
}

.main-nav .nav-menu li a.btn {
    background-color: transparent;
    border: none;
    padding: 5px 0;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 500;
    color: #ffffff;
}

.main-nav .nav-menu li a.btn:hover {
    background-color: transparent;
    color: #c3a335;
    transform: none;
    box-shadow: none;
}

.main-nav .menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.main-nav .menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #c3a335;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(33, 33, 33, 0.7), rgba(33, 33, 33, 0.7)), url('../images/store front2.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(33, 33, 33, 0.7), rgba(33, 33, 33, 0.7)), url('../images/ceramic coating.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-banner h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-banner p {
    font-size: 1.1rem;
}

/* Services */
.services-overview {
    background-color: #f4f4f4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3, .service-card p {
    padding: 0 20px;
}

.service-card h3 {
    margin-top: 20px;
    color: #212121;
}

.service-card p {
    margin-bottom: 20px;
}

.services-cta {
    text-align: center;
    margin-top: 30px;
}

/* Gallery Styles */
.gallery-section {
    background-color: #f4f4f4;
    padding: 60px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 2px solid #c3a335;
    color: #333;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #c3a335;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(33, 33, 33, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-content {
    color: #fff;
    text-align: center;
    padding: 0 15px;
}

.gallery-item-content h3 {
    color: #c3a335;
    margin-bottom: 5px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80vh;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.lightbox-content img {
    max-height: 70vh;
    border-radius: 5px;
}

.lightbox-caption {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    border-radius: 0 0 5px 5px;
}

.lightbox-caption h3 {
    color: #c3a335;
    margin-bottom: 5px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(33, 33, 33, 0.8), rgba(33, 33, 33, 0.8)), url('../images/store front.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
}

.cta-content h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Testimonials */
.testimonials {
    background-color: #212121;
    color: #ffffff;
}

.testimonials h2 {
    color: #ffffff;
    text-align: center;
}

.testimonials h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-slider {
    margin-top: 30px;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    margin: 20px auto;
    max-width: 800px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: #c3a335;
}

/* Facebook Feed */
.facebook-feed {
    text-align: center;
    padding: 80px 0;
}

.fb-page {
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    max-width: 300px;
    margin-bottom: 2px;
}

.certification-logos {
    margin-top: 0px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.certification-logo {
    max-width: 150px !important;
    height: auto !important;
    max-height: 150px !important;
    display: inline-block;
}

.footer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.footer-contact, .footer-hours, .footer-social {
    margin-bottom: 20px;
}

.footer-contact h4, .footer-hours h4, .footer-social h4 {
    color: #c3a335;
    margin-bottom: 15px;
}

.footer-contact p, .footer-hours p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #c3a335;
    min-width: 16px;
}

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

.footer-contact a:hover {
    color: #c3a335;
}

.social-icons {
    display: flex;
    gap: 15px;
}

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

.social-icons a:hover {
    background-color: #c3a335;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: #000000;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.footer-nav a {
    color: #ffffff;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: #c3a335;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .main-nav .menu-toggle {
        display: block;
    }
    
    .main-nav .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: #212121;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    .main-nav .nav-menu.active {
        left: 0;
    }
    
    .main-nav .nav-menu li {
        margin: 15px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .gallery-item {
        height: 200px;
    }
}

@media screen and (max-width: 576px) {
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
}

/* Contact Page Styles */
.contact-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info h2:after {
    margin-bottom: 20px;
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.2rem;
    color: #c3a335;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
    color: #212121;
}

.social-links h4 {
    margin-bottom: 15px;
}

.contact-form-container {
    background-color: #f4f4f4;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    margin-bottom: 20px;
    color: #212121;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #212121;
}

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

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

.required {
    color: #e74c3c;
}

.alert {
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.map-section {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    display: block;
}

@media screen and (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
}

/* About Page Styles */
.about-section {
    background-color: #ffffff;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-choose-us {
    background-color: #f4f4f4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    background-color: #f4f4f4;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #c3a335;
}

.feature-icon i {
    font-size: 1.8rem;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.our-process {
    background-color: #ffffff;
    position: relative;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.process-steps {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 34px;
    width: 2px;
    background-color: #c3a335;
}

.process-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: #c3a335;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 25px;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 10px;
    padding-top: 10px;
}

.partnerships {
    background-color: #f4f4f4;
    text-align: center;
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 200px;
    height: 100px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.team-section {
    background-color: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: #f4f4f4;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-photo {
    height: 250px;
    overflow: hidden;
}

.placeholder-photo {
    height: 100%;
    background-color: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-photo i {
    font-size: 5rem;
    color: #a1a1a1;
}

.team-info {
    padding: 20px;
}

.team-role {
    color: #c3a335;
    font-weight: 600;
    margin-bottom: 10px;
}

@media screen and (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 20px;
    }
    
    .process-steps::before {
        left: 24px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media screen and (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .partner-logo {
        width: 100%;
    }
}

/* Services Page Styles */
.services-intro {
    background-color: #ffffff;
    text-align: center;
}

.services-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.services-list {
    background-color: #f4f4f4;
    padding: 60px 0;
}

.service-item {
    background-color: #ffffff;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-image {
    height: 100%;
    min-height: 300px;
}

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

.placeholder-image {
    height: 100%;
    background-color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placeholder-image i {
    font-size: 4rem;
    color: #999;
    margin-bottom: 10px;
}

.placeholder-image span {
    font-weight: 600;
    color: #555;
}

.service-details {
    padding: 30px;
}

.service-details h3 {
    margin-bottom: 15px;
    color: #212121;
}

.service-details h4 {
    margin: 20px 0 10px;
    color: #333;
}

.service-details ul {
    margin: 0 0 20px 20px;
}

.service-details li {
    margin-bottom: 8px;
}

.service-cta {
    margin-top: 25px;
}

/* Service Packages */
.service-packages {
    background: linear-gradient(rgba(33, 33, 33, 0.8), rgba(33, 33, 33, 0.8)), url('../images/car beauty.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    text-align: center;
    padding: 60px 0;
}

.service-packages h2 {
    color: #ffffff;
}

.service-packages h2:after {
    left: 50%;
    transform: translateX(-50%);
}

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

.package-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    color: #212121;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.featured {
    border: 3px solid #c3a335;
    transform: translateY(-10px) scale(1.02);
}

.package-header {
    background-color: #f4f4f4;
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.package-card.featured .package-header {
    background-color: #c3a335;
    color: #fff;
}

.package-badge {
    position: absolute;
    top: 10px;
    right: 0;
    background-color: #212121;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 10px;
    transform: translateX(10px);
}

.package-price {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 5px;
}

.package-content {
    padding: 25px;
}

.package-content ul {
    list-style: none;
    margin-bottom: 25px;
    text-align: left;
}

.package-content ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.package-content ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #c3a335;
    position: absolute;
    left: 0;
}

/* Service Process */
.service-process {
    background-color: #ffffff;
    padding: 60px 0;
}

/* FAQ Section */
.services-faq {
    background-color: #f4f4f4;
    padding: 60px 0;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: #c3a335;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

@media screen and (max-width: 992px) {
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        min-height: 250px;
    }
    
    .packages-grid {
        gap: 20px;
    }
    
    .package-card.featured {
        transform: translateY(0) scale(1);
    }
}

@media screen and (max-width: 576px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
} 