:root {
    --primary-color: #D4AF37;
    /* Metallic Gold */
    --secondary-color: #5D101D;
    /* Traditional Indian Deep Maroon */
    --accent-color: #E5C35E;
    --text-color: #333;
    --light-bg: #FDF9F0;
    /* Brighter Ivory */
    --white: #FFFFFF;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
    /* Removed pinstripe texture as per user request */
}

h1,
h2,
h3,
.logo {
    font-family: 'Playfair Display', serif;
}

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

span {
    color: var(--primary-color);
}

.underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto;
}

.underline-light {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 15px auto;
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/traditional_indian_hero_banner_1769579491321.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    background-attachment: fixed;
    /* Parallax effect */
}

/* Animated Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(93, 16, 29, 0.7) 0%,
            rgba(212, 175, 55, 0.3) 50%,
            rgba(93, 16, 29, 0.7) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Floating Decorative Elements */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero::before {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero::after {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: textReveal 1.5s ease-out;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
        letter-spacing: 10px;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: normal;
    }
}

.hero h1 span {
    display: inline-block;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 10px var(--primary-color),
            0 0 20px var(--primary-color),
            2px 2px 8px rgba(0, 0, 0, 0.5);
    }

    50% {
        text-shadow: 0 0 20px var(--primary-color),
            0 0 30px var(--primary-color),
            0 0 40px var(--accent-color),
            2px 2px 8px rgba(0, 0, 0, 0.5);
    }
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    animation: fadeInUp 1.5s ease-out 0.3s backwards;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-btns {
    animation: fadeInUp 1.5s ease-out 0.6s backwards;
}

.hero-btns .btn {
    position: relative;
    overflow: hidden;
}

.hero-btns .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-btns .btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b8860b;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #1a252f;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 15px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.full-width {
    width: 100%;
}

/* Offerings Section */
.offerings {
    padding: 80px 40px;
    background-color: var(--white);
    margin: 60px auto;
    /* Added margin for separation */
    border-radius: 20px;
    /* Optional: adds to the "separate" feel */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow for depth */
}

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

.offering-item {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.offering-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.offering-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.offering-item h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.offering-item ul {
    list-style: none;
    padding: 0;
}

.offering-item ul li {
    position: relative;
    /* padding-left reset mostly, but keeping margin */
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
    list-style: disc inside;
    /* Adding default bullets for clarity */
}

/* Occasions Section */
.occasions {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.occasions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.occasion-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    cursor: default;
}

.occasion-tag:hover {
    background: var(--primary-color);
    color: var(--black);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
}

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



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

/* Portfolio Marquee (Auto-Scroll) */
.portfolio-marquee {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.portfolio-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.portfolio-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * (350px + 30px) * 3));
        /* Move by width of 3 items including gap */
    }
}

/* Fallback/Adjustment for standard item sizing in marquee */
.portfolio-track .portfolio-item {
    flex: 0 0 350px;
    width: 350px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary-color);
}

.portfolio-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(93, 16, 29, 0.85);
    /* Deep Maroon Overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    bottom: 0;
}

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

/* Pricing Section */
.pricing {
    background-color: var(--white);
    color: var(--text-color);
    padding: 100px 0;
}

.pricing-table-container {
    overflow-x: auto;
    border-radius: 15px;
    background: var(--white);
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pricing-table th,
.pricing-table td {
    padding: 20px 25px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background: #fdfdfd;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-top: 1px solid #eee;
}

.design-level-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.design-level-cell i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.pricing-table td {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.pricing-table td:first-child {
    font-weight: 600;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    width: 30%;
}

.pricing-table tr.featured-row {
    background: #fffdf5;
    /* Subtle gold highlight */
}

.pricing-table tr {
    transition: background 0.2s ease;
}

.pricing-table tr:hover {
    background: #fdfdfd;
}

.pricing-table td:nth-child(2) {
    width: 15%;
    font-weight: 600;
    color: var(--primary-color);
}

.pricing-table td:nth-child(4) {
    width: 15%;
    font-style: italic;
}

/* Pricing Footer/Notes Polish */
.pricing-footer {
    margin-top: 50px;
}

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

.pricing-detail-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.pricing-detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-detail-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 5px;
}

.pricing-detail-item h4 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.pricing-detail-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

.important-note-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fdf9f0;
    /* Ivory background */
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.important-note-card i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.important-note-card p {
    color: var(--secondary-color);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Mobile Responsiveness for Table */
@media (max-width: 768px) {
    .pricing-table-container {
        border: none;
        box-shadow: none;
        background: transparent;
    }

    .pricing-table,
    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table td {
        display: block;
        width: 100%;
    }

    .pricing-table thead {
        display: none;
        /* Hide header on mobile */
    }

    .pricing-table tr {
        margin-bottom: 25px;
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 15px;
        background: #fff;
        padding: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .pricing-table td {
        text-align: left;
        padding: 12px 10px;
        position: relative;
        border-bottom: 1px dotted #eee;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .pricing-table td:last-child {
        border-bottom: none;
    }

    .pricing-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--primary-color);
        text-transform: uppercase;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .pricing-table td:first-child {
        font-size: 1.3rem;
        border-bottom: 2px solid var(--light-bg);
        margin-bottom: 10px;
        padding-bottom: 15px;
    }

    .pricing-table td:first-child::before {
        display: none;
        /* Don't show 'Design Level' label on the title */
    }

    .design-level-cell {
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* Force 5 columns */
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

.feature-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
}

/* Enquiry Section */
.enquiry {
    padding: 40px 0;
}

.enquiry-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background-color: var(--light-bg);
    padding: 60px;
    border-radius: 20px;
}

.enquiry-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

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

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
}

.form-group {
    margin-bottom: 30px;
    /* Increased margin for error messages */
    position: relative;
}

.error-message {
    color: #e74c3c;
    /* Brighter, prominent red */
    font-size: 0.8rem;
    position: absolute;
    bottom: -22px;
    left: 5px;
    font-weight: 500;
    display: none;
    transition: var(--transition);
}

.error-message.show {
    display: block;
}

.form-group input.invalid,
.form-group textarea.invalid {
    border: 1px solid #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.05);
}

.form-group input.valid,
.form-group textarea.valid {
    border: 1px solid #2ecc71 !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

/* International Service Section */
.international-service {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

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

.service-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-feature p {
    font-size: 0.95rem;
    color: #666;
    max-width: 300px;
    margin: 0 auto;
}

/* Other Services Section */
.other-services {
    padding: 60px 20px;
    background-color: var(--white);
    border-radius: 20px;
    margin-bottom: 60px;
    margin-top: 50px;
}

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

.service-menu-item {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 1px solid transparent;
}

.service-menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-menu-item h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-menu-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
    flex-grow: 1;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1.5px solid var(--secondary-color);
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    width: auto;
    background: transparent;
    text-align: center;
}

.service-menu-item:hover .service-btn {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* SVG Arrow Animation */
.arrow-svg {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.service-menu-item:hover .arrow-svg {
    transform: translateX(5px);
    animation: arrowSlide 0.6s ease-in-out infinite;
}

@keyframes arrowSlide {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.service-menu-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.service-menu-item:hover i {
    transform: translateY(-5px) scale(1.1);
}

/* Footer */
footer {
    background: var(--light-bg);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(86%) sepia(21%) show(1324%) hue-rotate(5deg) brightness(102%) contrast(85%);
    /* Gold color for footer logo */
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 0 15px;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .enquiry-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }
}

/* Portfolio Modal */
.portfolio-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.portfolio-modal.show {
    display: flex;
}

.modal-content {
    position: relative;
    background-color: var(--white);
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideUp 0.3s;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: var(--white);
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 60vh;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.prev-btn,
.next-btn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
    transition: var(--transition);
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.modal-caption {
    padding: 20px;
    text-align: center;
    background-color: var(--white);
}

.modal-caption h3 {
    margin-top: 0;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.modal-caption p {
    color: #666;
    margin-bottom: 20px;
}

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

.indicator {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .carousel-container {
        flex: 1;
        height: auto;
    }

    .close-modal {
        top: 10px;
        right: 20px;
        color: var(--secondary-color);
        background: rgba(255, 255, 255, 0.8);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 30px;
    }
}