/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: #fff;
}

h2 {
    font-size: 2rem;
    color: #333;
}

h3 {
    font-size: 1.5rem;
    color: #333;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #ff5722;
    color: white;
}

.btn-primary:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ff5722;
    border: 2px solid #ff5722;
}

.btn-secondary:hover {
    background-color: #ff5722;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-book {
    background-color: #ff5722;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-book:hover {
    background-color: #e64a19;
}

/* Header */
.header {
    background-color: #ff5722;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffccbc;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    padding-top: 70px;
    box-sizing: border-box;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-prev,
.hero-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    padding-top: 70px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero .hero-bg::before {
    background: rgba(0, 0, 0, 0.5);
}

.page-hero .hero-content h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Sections */
section {
    padding: 4rem 0;
}

/* Alternating section backgrounds */
section.alt {
    background-color: #f5f5f5;
}

.about {
    background-color: #f5f5f5;
    text-align: center;
}

.about h2 {
    color: #ff5722;
    margin-bottom: 2rem;
}

.services-preview {
    background-color: #333;
    color: white;
    text-align: center;
}

.services-preview h2 {
    color: #ff5722;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Services Slider Styles */
.services-slider-container {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
}

.services-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.service-slide {
    flex: 0 0 calc(33.333% - 1.333rem);
    min-width: 0;
}

.service-item {
    text-align: center;
    padding: 2rem;
    background: #000;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.service-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(1);
}

.service-item h3 {
    color: #ff5722;
    font-size: 1.2rem;
}

/* Services Navigation */
.services-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.services-prev,
.services-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-prev:hover,
.services-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.services-prev:disabled,
.services-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Services Dots */
.services-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.services-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.services-dots .dot.active,
.services-dots .dot:hover {
    background: #ff5722;
}

.mobile-service {
    background-color: #f5f5f5;
    text-align: center;
}

.mobile-service h2 {
    color: #ff5722;
    margin-bottom: 2rem;
}

/* Pricing Preview */
.pricing-preview {
    background-color: white;
}

.pricing-hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.pricing-hero img {
    width: 50%;
    border-radius: 10px;
}

.pricing-content {
    flex: 1;
}

.pricing-content h2 {
    color: #ff5722;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.pricing-card {
    background: #ff5722;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.pricing-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price .cents {
    font-size: 1.5rem;
    vertical-align: top;
}

.duration {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.note {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* Services Page */
.services-intro {
    background-color: #f5f5f5;
    text-align: center;
}

.trust-note {
    font-style: italic;
    color: #666;
    margin-top: 2rem;
}

.service-detail {
    padding: 4rem 0;
}

.service-detail.alt {
    background-color: #f5f5f5;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    color: #ff5722;
    margin-bottom: 2rem;
}

.service-text ul {
    list-style: none;
    padding-left: 0;
}

.service-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff5722;
    font-weight: bold;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.service-section h3 {
    color: #ff5722;
    margin-bottom: 1rem;
}

/* Pricing Page */
.pricing-intro {
    background-color: #f5f5f5;
    text-align: center;
}

.pricing-grid {
    background-color: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: #ff5722;
    transform: scale(1.05);
}

.card-header h2 {
    color: #ff5722;
    margin-bottom: 1rem;
}

.card-price {
    margin: 2rem 0;
}

.card-price .currency,
.card-price .amount,
.card-price .cents {
    color: #333;
    font-weight: bold;
}

.card-price .amount {
    font-size: 3rem;
}

.card-price .currency,
.card-price .cents {
    font-size: 1.5rem;
    vertical-align: top;
}

.starting {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.card-description {
    margin: 1.5rem 0;
    flex-grow: 1;
}

.features {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.card-action {
    margin-top: auto;
}

.pricing-notes {
    background-color: #f5f5f5;
}

.notes-content h3 {
    color: #ff5722;
    margin-bottom: 1rem;
}

.notes-content ul {
    list-style: none;
    padding-left: 0;
}

.notes-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.notes-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff5722;
    font-weight: bold;
}

.pricing-cta,
.about-cta.alt {
    background-color: #333;
    color: white;
    text-align: center;
}

.pricing-cta h2,
.about-cta.alt h2 {
    color: white;
    margin-bottom: 1rem;
}

.about-cta.alt p {
    color: #ccc;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Contact Page */
.contact-section {
    background-color: #f5f5f5;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #ff5722;
    margin-bottom: 2rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.contact-text h3 {
    color: #ff5722;
    margin-bottom: 0.5rem;
}

.contact-text a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}

.contact-text a:hover {
    color: #ff5722;
}

.social-links h3 {
    color: #ff5722;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #ff5722;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5722;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 3px;
    position: relative;
}

input[type="checkbox"]:checked + .checkmark {
    background-color: #ff5722;
    border-color: #ff5722;
}

input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

/* Trust Section */
.trust-section {
    background-color: white;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-item h3 {
    color: #ff5722;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

/* Navigation Grid */
.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 1.5rem;
    flex: 1;
    max-width: 600px;
}

.footer-nav-grid a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-nav-grid a:hover {
    color: #ff5722;
}

/* Contact & Social Section */
.footer-contact-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    flex-shrink: 0;
}

.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.footer .contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer .contact-link:hover {
    color: #ff5722;
}

.footer .contact-link .icon {
    font-size: 1rem;
}

.footer .social-links {
    display: flex;
    gap: 0.75rem;
}

.footer .social-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem;
}

.footer .social-links a:hover {
    color: #ff5722;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #555;
    color: #ccc;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #ff5722;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .page-hero .hero-content h1 {
        font-size: 2rem;
    }

    .pricing-hero {
        flex-direction: column;
    }

    .pricing-hero img {
        width: 100%;
    }

    .service-content {
        flex-direction: column;
    }

    .service-detail.alt .service-content {
        flex-direction: column-reverse;
    }

    .service-sections {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1rem;
        max-width: none;
    }

    .footer-contact-social {
        align-items: center;
        text-align: center;
    }

    .footer .contact-info {
        align-items: center;
    }

    .footer .social-links {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    /* Services Slider Mobile Styles */
    .service-slide {
        flex: 0 0 calc(100% - 2rem);
    }

    .services-nav {
        margin-top: 1.5rem;
    }

    .services-prev,
    .services-next {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Large screens - ensure 3 columns fit properly */
@media (max-width: 1200px) and (min-width: 1025px) {
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium screens - tablets */
@media (max-width: 1024px) and (min-width: 769px) {
    .service-slide {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small tablets and large phones */
@media (max-width: 900px) and (min-width: 769px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Reviews Page Styles */
.reviews-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.review-rating {
    margin-bottom: 1rem;
}

.stars {
    color: #ff5722;
    font-size: 1.2rem;
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.review-author {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.review-author strong {
    color: #333;
    display: block;
    margin-bottom: 0.25rem;
}

.review-author span {
    color: #666;
    font-size: 0.9rem;
}

.review-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-item h3 {
    color: #ff5722;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: bold;
    margin-bottom: 0;
}

.review-cta {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.review-cta h3 {
    color: #ff5722;
    margin-bottom: 1rem;
}

.review-cta p {
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #ff5722;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #e64a19;
    transform: translateY(-2px);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff5722;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #e64a19;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .page-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .service-item {
        padding: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-cta {
        padding: 2rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .faq-category {
        margin-bottom: 2rem;
    }

    .faq-item {
        margin-bottom: 1rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 1rem;
    }
}

/* FAQ Page Styles */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: #ff5722;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.faq-accordion {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question[aria-expanded="true"] {
    background-color: #ff5722;
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.faq-answer a {
    color: #ff5722;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.cta-section {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.cta-section h2 {
    color: #ff5722;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #666;
    margin-bottom: 2rem;
}

/* Benefits Grid Layout */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.benefit-content p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.5;
}

/* Responsive adjustments for benefits */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
}

/* Policy Pages Styles */
.privacy-policy-content,
.terms-conditions-content {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.policy-intro {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    text-align: center;
}

.policy-intro p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.policy-section h2 {
    color: #ff5722;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.policy-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-section p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-section a {
    color: #ff5722;
    text-decoration: none;
    font-weight: 600;
}

.policy-section a:hover {
    text-decoration: underline;
}

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #333;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-intro {
        padding: 1.5rem;
    }
    
    .contact-details {
        padding: 1rem;
    }
}

/* Work Gallery Styles */
.work-gallery {
    background-color: #f5f5f5;
    text-align: center;
    padding: 4rem 0;
}

.work-gallery h2 {
    color: #ff5722;
    margin-bottom: 2rem;
}

.work-gallery p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #666;
}

.gallery-carousel-container {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1rem;
    justify-content: flex-start;
}

.gallery-item {
    flex: 0 0 calc(33.333% - 0.667rem);
    min-width: 0;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 87, 34, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Gallery Navigation */
.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-prev,
.gallery-next {
    background: rgba(255, 87, 34, 0.8);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #ff5722;
    transform: translateY(-2px);
}

.gallery-prev:disabled,
.gallery-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Gallery Dots */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.gallery-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 87, 34, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dots .dot.active,
.gallery-dots .dot:hover {
    background: #ff5722;
    transform: scale(1.2);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(255, 87, 34, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.lightbox-close:hover {
    background: #ff5722;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 87, 34, 0.8);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: all;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    margin-left: -60px;
}

.lightbox-next {
    margin-right: -60px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #ff5722;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Gallery Styles */
@media (max-width: 1024px) {
    .gallery-item {
        flex: 0 0 calc(50% - 0.5rem);
    }
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 0 0 calc(100% - 1rem);
        height: 200px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-nav {
        margin-top: 1.5rem;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .lightbox-prev {
        margin-left: -50px;
    }
    
    .lightbox-next {
        margin-right: -50px;
    }
}

@media (max-width: 480px) {
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        margin-left: -45px;
    }
    
    .lightbox-next {
        margin-right: -45px;
    }
    
    .lightbox-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
        top: -35px;
    }
}
