/* Base Container */
.hotels-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Price Note Section */
.price-note-section {
    margin: 1rem auto;

}

.price-note-card {
    background: white;
    border: 2px dashed #d1d5db;
    border-radius: 35px;
    padding: 0.75rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
}

.price-note-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.price-note-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.price-note-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-sunset);
    box-shadow: var(--shadow-glow-orange);
    flex-shrink: 0;
}

.price-note-icon svg {
    color: white;
    stroke-width: 2.5;
}

.price-note-title-wrapper {
    flex: 1;
}

.price-note-title {
    font-family: var(--font-montserrat);
    font-weight: 900;
    font-size: 1.75rem;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.price-note-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #16a34a;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid #86efac;
}

.price-note-content {
    padding: 2rem 1.5rem;
}

.price-note-text {
    font-family: var(--font-montserrat);
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
    text-align: center;
    margin: 0;
    font-weight: 500;
}

.price-note-text::before {

    display: block;
    font-size: 2rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

/* Contact Section */
.contact-section {
    margin: 4rem auto;

}

.contact-card {
    background: white;
    border: 2px dashed #d1d5db;
    border-radius: 35px;
    padding: 0.75rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Contact Header */
.contact-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 2px solid #f3f4f6;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-title-wrapper {
    flex: 1;
    min-width: 300px;
}

.contact-title {
    font-family: var(--font-montserrat);
    font-weight: 900;
    font-size: 2.25rem;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-family: var(--font-montserrat);
    font-size: 1.125rem;
    color: #6b7280;
    font-weight: 600;
}

.contact-cta-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-sunset);
    border-radius: 9999px;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-glow-orange);
    white-space: nowrap;
}

.contact-cta-badge svg {
    stroke-width: 3;
}

/* Contact Grid */
.contact-grid1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
}

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

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

.contact-card-inner {
    height: 100%;
}

/* Card Styles (using your existing styles) */
.card-flex {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon-wrapper {
    width: 5rem;
    height: 5rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-purple {
    background: var(--gradient-purple);
    box-shadow: var(--shadow-glow-purple);
}

.icon-deep-purple {
    background: var(--gradient-deep-purple);
    box-shadow: var(--shadow-glow-purple);
}

.icon-orange {
    background: var(--gradient-sunset);
    box-shadow: var(--shadow-glow-orange);
}

.icon-wrapper svg {
    color: white;
    stroke-width: 2;
}

.card-body {
    flex: 1;
}

.card-label {
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    color: #6b7280;
    font-weight: 700;
    font-family: var(--font-montserrat);
}

.card-info {
    font-family: var(--font-montserrat);
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}

/* Phone Links */
.contact-phone-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.phone-link {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.phone-link:hover {
    color: var(--color-purple);
}

.phone-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
    border-radius: 9999px;
    font-weight: 700;
    align-self: flex-start;
}

/* Address Info */
.address-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.address-details {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.address-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1d4ed8;
    border-radius: 9999px;
    font-weight: 700;
}

/* Working Hours */
.working-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.working-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.75rem;
}

.working-hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0.5rem;
}

.working-hours-day {
    font-family: var(--font-montserrat);
    font-weight: 600;
    color: #111827;
    font-size: 0.875rem;
}

.working-hours-time {
    font-family: var(--font-montserrat);
    font-weight: 700;
    color: var(--color-purple);
    font-size: 0.875rem;
}

.working-hours-closed {
    font-family: var(--font-montserrat);
    color: #9ca3af;
    font-weight: 600;
    font-size: 0.875rem;
}

/* CTA Section */
.contact-cta {
    padding: 2rem;
    border-top: 2px solid #f3f4f6;
    text-align: center;
}

.cta-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fce7f3 50%, #e0e7ff 100%);
    border-radius: 1.5rem;
    border: 2px dashed #fb923c;
}

.cta-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    flex-shrink: 0;
    border: 2px solid #fb923c;
}

.cta-icon svg {
    color: #fb923c;
    stroke-width: 2.5;
}

.cta-text1 {
    flex: 1;
    text-align: left;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 15px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;

}

.cta-text1 pre {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}


/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles from your template */
@media (max-width: 768px) {
    .hotels-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .price-note-section,
    .contact-section {
        margin: 2rem auto !important;
    }

    .price-note-card,
    .contact-card {
        border-radius: 20px !important;
        padding: 12px !important;
    }

    .price-note-header {
        flex-direction: column;
        text-align: center;
        gap: 12px !important;
        padding: 16px !important;
    }

    .price-note-icon {
        width: 48px !important;
        height: 48px !important;
        border-radius: 12px !important;
    }

    .price-note-title {
        font-size: 1.25rem !important;
    }

    .price-note-content {
        padding: 16px !important;
    }

    .price-note-text {
        font-size: 1rem !important;
    }

    .contact-card-header {
        flex-direction: column;
        text-align: center;
        padding: 16px !important;
        gap: 12px !important;
    }

    .contact-title-wrapper {
        min-width: auto;
    }

    .contact-title {
        font-size: 1.5rem !important;
    }

    .contact-subtitle {
        font-size: 1rem !important;
    }

    .contact-cta-badge {
        width: 100%;
        justify-content: center;
    }

    .contact-grid1 {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 16px !important;
    }

    .contact-column {
        gap: 16px !important;
    }

    .card-flex {
        gap: 12px !important;
        flex-direction: row !important;
        align-items: flex-start !important;
    }

    .icon-wrapper {
        width: 48px !important;
        height: 48px !important;
        border-radius: 12px !important;
    }

    .icon-wrapper svg {
        width: 20px !important;
        height: 20px !important;
    }

    .card-label {
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }

    .card-info {
        font-size: 1rem !important;
        line-height: 1.4 !important;
    }

    .phone-badge,
    .address-badge {
        font-size: 10px !important;
        padding: 0.125rem 0.5rem !important;
    }

    .working-hours-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px !important;
    }

    .working-hours-day,
    .working-hours-time,
    .working-hours-closed {
        font-size: 12px !important;
    }

    .contact-cta {
        padding: 16px !important;
    }

    .cta-message {
        flex-direction: column;
        text-align: center;
        padding: 12px !important;
        border-radius: 12px !important;
    }

    .cta-icon {
        margin: 0 auto;
    }

    .cta-text1 p {
        font-size: 1rem !important;
        text-align: center;
    }

    .cta-button {
        width: 100%;
        padding: 1rem 1.5rem !important;
        font-size: 0.875rem !important;
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .contact-grid1 {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        padding: 20px !important;
    }
}

@media (max-width: 480px) {
    .price-note-title {
        font-size: 1.125rem !important;
    }

    .card-flex {
        gap: 10px !important;
    }

    .icon-wrapper {
        width: 44px !important;
        height: 44px !important;
    }

    .card-info {
        font-size: 0.875rem !important;
    }

    .contact-title {
        font-size: 1.25rem !important;
    }
}

/* Utility Classes */
.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-slide-up.animate-active {
    opacity: 1;
    transform: translateY(0);
}

.space-y-4 > * + * {
    margin-top: 1rem;
}
