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

body {
    font-family: 'Montserrat', sans-serif;
    color: #2C1810;
    overflow-x: hidden;
    line-height: 1.6;
}

.heading-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.subheading-font {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Gold Text */
.gold-text {
    color: #DAA520;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid #D97706;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #D97706, #EA580C);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
}

.logo-title {
    font-size: 24px;
    color: #78350F;
    letter-spacing: 0.05em;
    margin: 0;
}

.logo-subtitle {
    font-size: 12px;
    color: #92400E;
    letter-spacing: 0.2em;
    margin: 0;
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #D97706;
    color: white;
    padding: 12px 24px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-button:hover {
    background: #B45309;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5), transparent);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.hero-text-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    max-width: 672px;
}

.hero-title {
    font-size: 56px;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 28px;
    color: #FDE68A;
    margin-bottom: 32px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-button {
    background: linear-gradient(135deg, #8B4513, #C41E3A);
    color: white;
    padding: 16px 40px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 18px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(217, 119, 6, 0.5);
}

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

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

.indicator.active {
    background: #F59E0B;
    width: 48px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 48px;
    color: #78350F;
    margin-bottom: 24px;
}

.section-divider {
    width: 128px;
    height: 4px;
    background: linear-gradient(to right, transparent, #D97706, transparent);
    margin: 0 auto 24px;
}

.section-subtitle {
    font-size: 24px;
    color: #92400E;
    max-width: 870px;
    margin: 0 auto;
}

/* Destinations Section */
.destinations-section {
    background: linear-gradient(to bottom right, white, #FEF3C7, #FED7AA);
    padding: 80px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.destination-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #FEF3C7;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
    border-color: #FCD34D;
}

.destination-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.destination-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image-wrapper img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 16px;
}

.destination-badge {
    background: linear-gradient(135deg, #D97706, #EA580C);
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.destination-info {
    padding: 24px;
}

.destination-info h3 {
    font-size: 24px;
    color: #78350F;
    margin-bottom: 12px;
}

.destination-info p {
    color: #92400E;
    line-height: 1.6;
    margin-bottom: 16px;
}

.destination-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: #78350F;
    font-weight: 500;
}

.destination-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Packages Section */
.packages-section {
    background: linear-gradient(to bottom right, #FEF3C7, #FED7AA);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.25);
}

.package-image-container {
    position: relative;
    height: 256px;
    overflow: hidden;
}

.package-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image-container img {
    transform: scale(1.1);
}

.package-duration-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #D97706;
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.package-content {
    padding: 24px;
}

.package-name {
    font-size: 24px;
    color: #78350F;
    margin-bottom: 12px;
}

.package-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.package-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #92400E;
    font-weight: 500;
}

.package-detail svg {
    color: #D97706;
}

.package-price {
    font-size: 28px;
    color: #78350F;
}

.package-actions {
    display: flex;
    gap: 12px;
}

.btn-whatsapp {
    flex: 1;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-itinerary {
    flex: 1;
    background: transparent;
    color: #8B4513;
    border: 2px solid #DAA520;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-itinerary:hover {
    background: #DAA520;
    color: white;
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    background: linear-gradient(to bottom right, #FEF3C7, #FED7AA);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
}

.service-icon-large {
    font-size: 64px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 24px;
    color: #78350F;
    margin-bottom: 16px;
}

.service-card p {
    color: #92400E;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-us-section {
    background: linear-gradient(to bottom right, #FFFBEB, #FEF3C7);
    padding: 80px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.why-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #FCD34D;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
    border-color: #F59E0B;
}

.why-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.why-stat {
    font-size: 48px;
    font-weight: 800;
    color: #D97706;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.why-card h3 {
    font-size: 22px;
    color: #78350F;
    margin-bottom: 16px;
}

.why-card p {
    color: #92400E;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(to bottom right, #FFFBEB, #FEF3C7, #FED7AA);
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-text h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 4px;
}

.gallery-text p {
    font-size: 16px;
    color: #FDE68A;
    margin: 0;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.25);
}

/* Reviews */
.reviews-section {
    background: linear-gradient(to bottom right, #FEF3C7, #FED7AA);
    padding: 80px 0;
}

.review-slider-container {
    position: relative;
    max-width: 1024px;
    margin: 0 auto;
}

.review-slider {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.review-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.review-slide.active {
    display: block;
    opacity: 1;
}

.review-content {
    display: flex;
    align-items: center;
    gap: 32px;
}

.review-image {
    width: 128px;
    height: 128px;
    border-radius: 9999px;
    border: 4px solid #FCD34D;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    flex-shrink: 0;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.review-quote {
    font-size: 20px;
    color: #4B5563;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 24px;
}

.review-name {
    font-size: 24px;
    color: #78350F;
    margin-bottom: 4px;
}

.review-country {
    color: #92400E;
}

.review-prev,
.review-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #D97706;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.review-prev {
    left: 16px;
}

.review-next {
    right: 16px;
}

.review-prev:hover,
.review-next:hover {
    background: #B45309;
    transform: translateY(-50%) scale(1.1);
}

.review-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    border: none;
    background: #FCD34D;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: #D97706;
    width: 48px;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom right, #78350F, #EA580C);
    color: white;
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 32px;
}

.footer-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-text {
    color: #FCD34D;
}

.footer-heading {
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

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

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
    color: #FCD34D;
}

.footer-bottom {
    border-top: 1px solid rgba(252, 211, 77, 0.3);
    padding-top: 32px;
    text-align: center;
    color: #FCD34D;
}

/* Popup Form */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.popup-overlay.active {
    display: flex;
}

.popup-container {
    background: white;
    border-radius: 24px;
    max-width: 672px;
    width: 100%;
    max-height: 115vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.popup-header {
    background: linear-gradient(to right, #D97706, #EA580C);
    padding: 24px;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 8px;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.popup-title {
    font-size: 28px;
    color: white;
    margin-bottom: 8px;
}

.popup-subtitle {
    color: #FEF3C7;
    font-size: 18px;
}

.popup-form {
    padding: 32px;
}

.form-message {
    display: none;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 600;
}

.form-message.success {
    display: block;
    background: #D1FAE5;
    border: 2px solid #10B981;
    color: #065F46;
}

.form-message.error {
    display: block;
    background: #FEE2E2;
    border: 2px solid #EF4444;
    color: #991B1B;
}

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

.form-group label {
    display: block;
    color: #78350F;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #FCD34D;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.form-group input:disabled,
.form-group select:disabled {
    background: #F3F4F6;
    cursor: not-allowed;
}

.form-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
}

.form-row.equal {
    grid-template-columns: 1fr 1fr;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #8B4513, #C41E3A);
    color: white;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(139, 69, 19, 0.4);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.spinner {
    animation: spin 1s linear infinite;
    width: 20px;
    height: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.spinner circle {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
}

/* Responsive */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .packages-grid,
    .destinations-grid,
    .services-grid,
    .why-us-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .review-content {
        flex-direction: column;
        text-align: center;
    }
    
    .review-prev,
    .review-next {
        top: auto;
        bottom: -60px;
    }
    
    .review-prev {
        left: 50%;
        transform: translateX(-60px);
    }
    
    .review-next {
        right: 50%;
        transform: translateX(60px);
    }
}

@media (max-width: 640px) {
    .header-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .contact-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .form-row {
        grid-template-columns: 100px 1fr;
    }
    
    .form-row.equal {
        grid-template-columns: 1fr;
    }
}

/* ===== SIMPLE POPUP ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.popup-container-modern {
    background: white;
    border-radius: 20px;
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    position: relative;
}

.popup-close-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
}

.popup-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    min-height: 600px;
}

.popup-left {
    background: white;
    padding: 40px 30px;
}

.popup-brand-icon {
    font-size: 60px;
    text-align: center;
    margin-bottom: 15px;
}

.popup-request-title {
    font-size: 20px;
    color: #78350F;
    margin: 20px 0;
}

.package-selected {
    color: #D97706;
    font-weight: 700;
    font-size: 16px;
}

.popup-benefits {
    margin-top: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    font-size: 14px;
}

.check-icon {
    background: #10B981;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.popup-right {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    padding: 40px 30px;
    overflow-y: auto;
}

.popup-right form {
    background: white;
    padding: 30px;
    border-radius: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #374151;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
}

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

.btn-submit-modern {
    width: 100%;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: white;
    padding: 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* MOBILE - Hide left side, make scrollable */
@media (max-width: 768px) {
    .popup-left {
        display: none !important;
    }
    
    .popup-grid {
        grid-template-columns: 1fr !important;
    }
    
    .popup-container-modern {
        width: 96vw;
        height: 92vh;
    }
    
    .popup-right {
        padding: 15px;
        height: 100%;
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .popup-right form {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
