/* Portfolio Section */
.portfolio {
    padding: 5rem 1rem;
    background-color: #000000;
}


.portfolio-container{
    max-width: 1280px;
    margin: 0 auto;
}
.section-title {
    font-size: 3.5rem;
    font-weight: bold;
}
.section-subtitle{
    font-size: 1.5rem;
    margin-bottom: 4rem;
}

.portfolio-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.portfolio-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: opacity 0.3s;
}

.portfolio-card img:hover {
    opacity: 0.9;
}

.portfolio-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1rem;
}

.portfolio-card p {
    color: #9ca3af;
}

.see-more {
    text-align: center;
}

.see-more a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.see-more a:hover {
    color: #3b82f6;
}
@media(max-width:768px){
    .portfolio-grid{
        grid-template-columns: 1fr;
    }
    .section-title{
        font-size: 2.5rem;
    }
}
/* About Section */
.about {
    padding: 5rem 1rem;
    background-color: #ffffff;
    color: #000000;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.about-image {
    width: 256px;
    height: 256px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

.about-text {
    flex: 1;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tag {
    padding: 0.5rem 1rem;
    background-color: #000000;
    color: #ffffff;
    border-radius: 9999px;
}

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

.about-text a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.about-text a:hover {
    color: #3b82f6;
}

/*Responsive*/
@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
    }

    .about-text {
        padding-left: 4rem;
    }
}

/* Services Section */
.services {
    padding: 5rem 1rem;
    background-color: #000000;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.service-list {
    list-style: none;
}

.service-item {
    padding: 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 1.5rem;
}

.service-item:hover {
    background-color: #1f2937;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-item p {
    color: #9ca3af;
}

.booking-card {
    background-color: #1f2937;
    padding: 2rem;
    border-radius: 0.5rem;
}

.booking-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.package {
    margin-bottom: 1.5rem;
}

.package h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.package p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.package a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.package a:hover {
    color: #3b82f6;
}

.package-divider {
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}
/******************************************/
/*Testimonials*/
/******************************************/
.testimonials{
    background-color: black;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 0rem;
}
.testimonial-heading h1{
    text-align: center;
    font-family: 'Futura-Bold',sans-serif;
    font-size: 5rem;
    color: white;
}
.testimonial-content{
    display: flex;
    justify-content: center;
    
}
.carousel-container {
            max-width: 800px;
            width: 100%;
            position: relative;
        }

        .carousel-wrapper {
            overflow: hidden;            
            border: white solid 2px;
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-card {
            min-width: 100%;
            display: flex;
            flex-direction: column;
            padding: 2rem 0rem;
            align-items: center;
            gap:20px;
        }

        .quote-icon {
            
        }
        .quote-icon i{
            color: white;
            font-size: 90px;
        }

        .testimonial-text {
            font-family: 'Futura-Book',sans-serif;
            font-size: 1.2rem;
            line-height: 1.6;
            width: 75%;
            color: white;
            text-align: justify;
            font-style: italic;
        }

        .author-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .author-image {
            font-family: 'Futura-Demi',sans-serif;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, black 0%, white 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            font-weight: bold;
            flex-shrink: 0;
        }

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

        .author-name {
            font-family: 'Futura-Bold',sans-serif;
            font-size: 30px;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .author-title {
            font-family: 'Futura-Demi',sans-serif;
            font-size: 14px;
            color: #ffffff;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border-radius: 5px;
            background: white;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color:  black;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .carousel-btn:active {
            transform: scale(0.95);
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            width: 30px;
            border-radius: 5px;
        }

        .keyboard-hint {
            text-align: center;
            color: white;
            margin-top: 20px;
            font-size: 14px;
            opacity: 0.8;
        }

        @media (max-width: 600px) {
            .testimonial-card {
                padding: 40px 25px;
            }

            .testimonial-text {
                font-size: 16px;
            }
        }
        @media (max-width:768px){
            .testimonials{
            }
            .testimonial-heading h1{
                font-size: 2rem;
            }
            .carousel-container{width: 80%;}
            .testimonial-card{padding:0px 0px; height: 80dvh;gap: 10px;}
            .quote-icon{margin: 10px 10px 0px 20px;}
            .quote-icon i{font-size: 45px;}
            .testimonial-text{margin: 0px 10px 40px 10px;}
            .author-info{margin: 20px 20px 20px 20px;}
            .author-image{width: 40px;height: 40px;font-size: 18px;}
        }
/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background-color: #ffffff;
    color: #000000;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.submit-btn {
    padding: 0.75rem 2rem;
    background-color: #000000;
    color: #ffffff;
    font-weight: 500;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #1f2937;
}

.contact-info-card {
    background-color: #f3f4f6;
    padding: 2rem;
    border-radius: 0.5rem;
    height: fit-content;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail h4 {
    font-weight: 500;
}

.contact-detail p {
    color: #4b5563;
}

.social-links {
    margin-top: 3rem;
}

.social-links h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #3b82f6;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer */
footer {
    background-color: #000000;
    padding: 3rem 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-brand {
    text-align: center;
}

.footer-brand a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.footer-brand p {
    color: #9ca3af;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

.footer-links a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    color: #9ca3af;
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #ffffff;
}

/*Responsive*/
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/********************************************************************/
/*Success toast*/
/********************************************************************/

.toast {
    position: fixed;
    top: 30px;
    right: -300px; /* hidden off-screen */
    padding: 15px 20px;
    border-radius: 8px;
    background-color: #333;
    color: white;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 9999;
}

/* Show animation */
.toast.show {
    right: 30px;
    opacity: 1;
}

/* Success */
.toast.success {
    background-color: #2ecc71;
}

/* Error */
.toast.error {
    background-color: #e74c3c;
}
