/* Home page specific styles (welcome page) */

/* Common Elements & Utilities */
.btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-primary {
    background-color: #3b82f6;
    color: white;
    border: none;
}
.btn-primary:hover {
    background-color: #2563eb;
}
.btn-secondary {
    background-color: white;
    color: #374151;
    border: 1px solid #d1d5db;
}
.btn-secondary:hover {
    background-color: #f3f4f6;
}
.section {
    padding: 70px 20px;
    border-bottom: 1px solid #e5e7eb;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 15px;
    margin-top: 0px;
}
.section-title p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}
.check-icon {
    color: #10b981;
    width: 22px;
    height: 22px;
}
.cross-icon {
    color: #ef4444;
    width: 22px;
    height: 22px;
}
.coming-soon-tag {
    display: inline-block;
    background: #3b82f6;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 8px;
    padding: 4px 8px;
    vertical-align: middle;
    letter-spacing: 0.3px;
    white-space: nowrap;
    margin-left: auto;
}

/* Top Hero Section */
.top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 55vh;
    background-color: #f6f8fc;
    padding: 0 20px;
}
.top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    gap: 60px;
}
.hero-images-cluster {
    width: 50%;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
/* .hero-image:hover {
    transform: scale(1.1);
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
} */
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}
.hero-image-main {
    width: 60%;
    bottom: 8%;
    right: 0%;
    z-index: 3;
    border: 3px solid white;
}
.hero-image-secondary {
    width: 60%;
    z-index: 2;
    border: 3px solid white;
}
.hero-image-tertiary {
    width: 60%;
    top: 8%;
    left: 0%;
    z-index: 1;
    border: 3px solid white;
}
/* .hero-image-main {
    width: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    z-index: 3;
    border: 3px solid white;
}
.hero-image-secondary {
    width: 320px;
    top: 10%;
    right: 0%;
    transform: rotate(2deg);
    z-index: 2;
    border: 3px solid white;
}
.hero-image-tertiary {
    width: 320px;
    bottom: 10%;
    left: 0%;
    transform: rotate(-8deg);
    z-index: 1;
    border: 3px solid white;
} */
.content {
    width: 50%;
    max-width: 500px;
}
.content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}
.content h1 span {
    color: #3b82f6;
}
.content p {
    margin: 20px 0;
    font-size: 1.2rem;
    color: #6b7280;
}
.buttons {
    display: flex;
    gap: 15px;
}
.pricing-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #374151;
    font-weight: 600;
    gap: 4px;
    padding: 10px 4px;
    transition: color 0.3s ease;
    cursor: pointer;
}
.pricing-link:hover {
    color: #3b82f6;
}
.pricing-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}
.pricing-link:hover svg {
    transform: translateX(3px);
}

/* Features Section */
.features-section {
    background-color: white;
}
.features-container {
    max-width: 1200px;
    margin: 0 auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
}
.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid #f3f4f6;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #e5e7eb;
}
.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #3b82f6;
}
.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #eef2ff;
    border-radius: 12px;
    margin-bottom: 20px;
}
.feature-icon svg {
    width: 30px;
    height: 30px;
    color: #3b82f6;
}
.app-name {
    font-weight: 700;
    color: #3b82f6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}
.app-name:hover {
    color: #2563eb;
    border-bottom: 1px solid #2563eb;
}

/* Pricing Section */
.pricing-section {
    background-color: #f9fafb;
    padding: 70px 20px;
}
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
    padding-bottom: 20px;
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.pricing-table th,
.pricing-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
}
.pricing-table th:first-child,
.pricing-table td:first-child {
    text-align: left;
    padding-left: 25px;
    font-weight: 500;
}
.pricing-table thead th {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 10;
}
.pricing-table thead tr:first-child th {
    border-bottom: none;
}
.pricing-plan-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}
.pricing-plan-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3b82f6;
    margin: 5px 0;
    line-height: 1.2;
}
.pricing-plan-price small {
    font-size: 0.9rem;
    font-weight: normal;
    color: #6b7280;
}
.pricing-plan-description {
    font-size: 0.85rem;
    color: #6b7280;
}
.pricing-table tbody tr:hover {
    background-color: #f9fafb;
}
.pricing-table-category {
    background-color: #eef2ff;
    color: #4f46e5;
    font-weight: 600;
}
.pricing-table .value-highlight {
    background-color: #f0fdf4;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #059669;
    display: inline-block;
}
.pricing-table .coming-soon {
    opacity: 0.7;
}
.pricing-table .coming-soon::after {
    content: "Coming Soon";
    position: absolute;
    top: 25px;
    right: -40px;
    background-color: #3b82f6;
    color: white;
    padding: 3px 30px;
    font-size: 0.7rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
}
.pricing-table-cta {
    padding: 20px;
    border-bottom: none;
}
.pricing-table-cta .btn {
    display: inline-block;
    min-width: 150px;
}
.plan-column {
    position: relative;
    min-width: 180px;
}
.popular-plan {
    border: 2px solid #3b82f6;
    border-radius: 12px;
    position: relative;
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3b82f6;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Mobile Pricing Cards */
.mobile-pricing-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
}
.mobile-pricing-header {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
    background-color: #f9fafb;
}
.mobile-pricing-header.coming-soon {
    opacity: 0.7;
    position: relative;
}
.mobile-pricing-header.coming-soon::after {
    content: "Coming Soon";
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: #3b82f6;
    color: white;
    padding: 3px 30px;
    font-size: 0.7rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
}
.mobile-pricing-body {
    padding: 20px;
}
.mobile-pricing-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3b82f6;
    margin: 10px 0;
}
.mobile-pricing-price small {
    font-size: 0.9rem;
    font-weight: normal;
    color: #6b7280;
}
.mobile-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-feature-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}
.mobile-feature-item:last-child {
    border-bottom: none;
}
.mobile-feature-icon {
    flex: 0 0 24px;
    margin-right: 12px;
}
.mobile-feature-text {
    flex: 1;
    font-size: 0.95rem;
}
.mobile-pricing-cta {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #f3f4f6;
}
.mobile-pricing-cta .btn {
    width: 100%;
}

/* Statistics Section */
.stats-section {
    background-color: #f3f4f6;
    overflow: hidden;
    position: relative;
    padding: 80px 20px;
}
.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
.stat-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eef2ff;
    border-radius: 50%;
}
.stat-icon svg {
    width: 24px;
    height: 24px;
    color: #3b82f6;
}
.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 8px;
    line-height: 1;
}
.stat-label {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}
.stat-description {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Stats Highlight Section */
.stats-highlight {
    background-color: white;
    border-radius: 16px;
    padding: 30px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), 
                      linear-gradient(to right, #3b82f6, #8b5cf6);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
    overflow: hidden;
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}
.highlight-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.highlight-icon svg {
    width: 28px;
    height: 28px;
    color: #3b82f6;
}
.highlight-text {
    flex: 1;
}
.highlight-text h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-top: 0;
    margin-bottom: 8px;
}
.highlight-text p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}
.stats-highlight .btn {
    flex-shrink: 0;
}

/* Mobile Statistics Cards */
.mobile-statistics-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #f3f4f6;
}
.mobile-statistics-header {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
    background-color: #f9fafb;
}
.mobile-statistics-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mobile-statistics-cta {
    padding: 20px;
    text-align: center;
    border-top: 1px solid #f3f4f6;
}
.mobile-statistics-cta .btn {
    width: 100%;
}

/* FAQ Section */
.faq-section {
    background-color: white;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 25px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    user-select: none;
}
.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.faq-question.active svg {
    transform: rotate(180deg);
}
.faq-answer {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    opacity: 0;
    margin-top: 0;
    padding-right: 30px;
}
.faq-answer.active {
    max-height: 1000px;
    opacity: 1;
    margin-top: 15px;
}
.faq-contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 30px 0 0 0;
    padding: 24px 0;
}
.app-link-button {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    padding: 5px 0;
    margin-top: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 8px;
    border-bottom: 1px solid transparent;
}
.app-link-button:hover {
    color: #2563eb;
    border-bottom: 1px solid #2563eb;
}
.app-link-button svg {
    width: 24px;
    height: 24px;
}

/* Feature Suggestion */
.suggest-feature-section {
    background-color: #f6f8fc;
    text-align: center;
    padding: 60px 20px;
}
.suggest-container {
    max-width: 800px;
    margin: 0 auto;
}
.suggest-content {
    background-color: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.suggest-icon {
    width: 70px;
    height: 70px;
    background-color: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.suggest-icon svg {
    width: 35px;
    height: 35px;
    color: #3b82f6;
}
.suggest-content h2 {
    font-size: 1.8rem;
    color: #1f2937;
    margin-bottom: 15px;
}
.suggest-content p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.suggest-btn {
    display: inline-block;
    min-width: 180px;
}

/* Feature Modal */
.feature-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}
.feature-modal-content {
    position: relative;
    background-color: #fff;
    margin: 10vh auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
}
.feature-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #f3f4f6;
}
.feature-modal-header h2 {
    color: #1f2937;
    font-size: 1.5rem;
    margin: 0;
}
.feature-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s ease;
    height: 40px;
    width: 40px;
}
.feature-modal-close:hover {
    color: #3b82f6;
}
.feature-modal-close svg {
    stroke: currentColor;
}
.feature-modal-body {
    padding: 25px;
}
.feature-modal-body p {
    color: #6b7280;
    margin-bottom: 20px;
    margin-top: 0px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
    box-sizing: border-box;
}
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}
.form-row .form-group {
    flex: 1;
    min-width: 0;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #4b5563;
    font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    color: #374151;
    transition: border-color 0.2s ease;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
}
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}
.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 15px;
}
.radio-label input {
    width: auto;
    margin-right: 5px;
}
.radio-label span {
    color: #4b5563;
}
.feature-submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
}
.success-message {
    text-align: center;
    padding: 20px 0;
    color: #059669;
    animation: fadeIn 0.5s ease;
}
.success-message svg {
    color: #10b981;
    margin: 0 auto 15px;
    display: block;
}
.success-message h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #059669;
}
.success-message p {
    color: #028b60;
}

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

/* Media Queries - consolidated */
@media (min-width: 993px) {
    .mobile-pricing-section {
        display: none;
    }
}

@media (max-width: 992px) {
    /* Pricing table transformations */
    .pricing-table-wrapper {
        display: none;
    }
    
    .mobile-pricing-section {
        display: block;
    }
    
    /* Feature tooltip adjustments */
    .feature-tooltip .tooltip-text {
        width: 200px;
        left: auto;
        right: 0;
    }
}

@media (max-width: 768px) {
    /* Header/hero adjustments */
    .top-container {
        flex-direction: column-reverse;
        padding: 20px 0;
        gap: 30px;
    }
    .hero-images-cluster {
        width: 90%;
        height: 300px;
        margin-bottom: 20px;
    }
    .hero-image-main {
        width: 220px;
        height: 160px;
    }
    .hero-image-secondary {
        width: 190px;
        height: 140px;
        top: 15%;
        right: 8%;
    }
    .hero-image-tertiary {
        width: 180px;
        height: 130px;
        bottom: 10%;
        left: 8%;
    }
    .content {
        text-align: center;
        padding: 0 20px;
        max-width: 100%;
        width: 100%;
    }
    .top-section {
        height: auto;
        padding: 40px 20px;
    }
    .buttons {
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }
    
    /* Stats section */
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .stat-card {
        padding: 35px 10px;
        max-width: 95vw;
    }
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    .stat-icon svg {
        width: 32px;
        height: 32px;
    }
    .stat-value {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-images-cluster {
        height: 250px;
    }
    .hero-image-main {
        width: 180px;
        height: 130px;
    }
    .hero-image-secondary {
        width: 160px;
        height: 115px;
        top: 12%;
        right: 5%;
    }
    .hero-image-tertiary {
        width: 150px;
        height: 110px;
        bottom: 8%;
        left: 5%;
    }
}

/* Image Carousel Modal */
.image-carousel-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.carousel-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 80%;
    margin: 5% auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.carousel-header {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.carousel-close {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.carousel-images {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 70%;
    object-fit: contain;
    background: #f8f9fa;
}

.carousel-caption {
    padding: 20px 30px;
    background: white;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-caption h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.carousel-caption p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.indicator.active {
    background: white;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel-modal-content {
        width: 95%;
        height: 85%;
        margin: 7.5% auto;
    }
    
    .carousel-caption {
        padding: 15px 20px;
    }
    
    .carousel-caption h3 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}