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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #faf8f3;
}

/* Navigation */
nav {
    background-color: #0a1929;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    display: inline-block;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo-text {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    display: block;
}

nav ul li a:hover {
    color: #d4af37;
}

nav ul li a.active {
    color: #d4af37;
    border-bottom: 2px solid #d4af37;
}

/* Header/Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(10,25,41,0.85) 0%, rgba(26,35,50,0.85) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero h1, .hero p {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-in;
}

/* Services Page Hero Title */
.services-hero-title {
    color: #d4af37;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.5),
        2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeIn 1s ease-in;
}

.services-hero-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background-color: #d4af37;
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.home-hero-title {
    /* Simple and elegant gold color for the home page slogan */
    color: #d4af37;
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    text-shadow:
        0 0 10px rgba(212, 175, 55, 0.6),
        0 0 20px rgba(212, 175, 55, 0.4),
        2px 2px 6px rgba(0, 0, 0, 0.7);
    animation: fadeIn 1s ease-in;
}

.home-hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.9);
    animation: lineGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 209, 102, 0.8),
            0 0 20px rgba(255, 209, 102, 0.6),
            0 0 30px rgba(255, 209, 102, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255, 209, 102, 1),
            0 0 30px rgba(255, 209, 102, 0.8),
            0 0 40px rgba(255, 209, 102, 0.6),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

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

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.6;
        width: 200px;
    }
    50% {
        opacity: 1;
        width: 250px;
    }
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-in;
}

.home-hero-subtitle {
    /* Simple and elegant white color for subtitle */
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1.6;
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.5),
        0 0 30px rgba(255, 255, 255, 0.3),
        2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeIn 1.5s ease-in;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #0a1929 0%, #8b2635 50%, #0a1929 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #d4af37;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: #fff;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.card-content .service-btn {
    margin-top: auto;
    flex-shrink: 0;
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

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

.card h3 {
    background: linear-gradient(135deg, #8b2635 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.card p {
    color: #4a5568;
    line-height: 1.8;
}

/* Home - Why Choose Us Flip Cards */
.why-choose-cards {
    perspective: 1000px;
}

.card-flip {
    background: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeUp 0.8s ease forwards;
}

.why-choose-cards .card-flip:nth-child(1) {
    animation-delay: 0.1s;
}

.why-choose-cards .card-flip:nth-child(2) {
    animation-delay: 0.2s;
}

.why-choose-cards .card-flip:nth-child(3) {
    animation-delay: 0.3s;
}

.why-choose-cards .card-flip:nth-child(4) {
    animation-delay: 0.4s;
}

.why-choose-cards .card-flip:nth-child(5) {
    animation-delay: 0.5s;
}

.why-choose-cards .card-flip:nth-child(6) {
    animation-delay: 0.6s;
}

.card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-flip:hover .card-flip-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-front {
    background: #fff;
    display: flex;
    flex-direction: column;
}

.card-front .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-front .card-content {
    padding: 2rem;
    flex-grow: 1;
}

.card-back {
    background: linear-gradient(135deg, #0a1929 0%, #1a2332 100%);
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    align-items: stretch;
}

.card-back-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    box-sizing: border-box;
}

.card-back-content h3 {
    color: #d4af37;
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    text-align: center;
    flex-shrink: 0;
    line-height: 1.3;
}

.card-back-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    flex-shrink: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
}

.card-back-content ul li {
    padding: 0.75rem 0 0.75rem 1.8rem;
    color: #e0f7fa;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    flex-shrink: 0;
    line-height: 1.5;
    text-align: left;
}

.card-back-content ul li:last-child {
    border-bottom: none;
}

.card-back-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1.5;
}

.btn-view-more {
    display: block;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #8b2635;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    text-align: center;
    box-sizing: border-box;
    flex-shrink: 0;
    align-self: stretch;
    border: none;
    cursor: pointer;
}

.btn-view-more:hover {
    background-color: #a03040;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 38, 53, 0.4);
}

@keyframes cardFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 0;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.service-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.service-card h3 {
    background: linear-gradient(135deg, #8b2635 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* Service Gradient Button */
.service-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #8b2635 0%, #d4af37 50%, #c9a961 100%);
    background-size: 200% 200%;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: auto;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.service-btn:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.5);
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:active {
    transform: translateY(-1px);
}

/* Service Detail Pages */
.service-detail {
    margin-top: 3rem;
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-content h2 {
    background: linear-gradient(135deg, #0a1929 0%, #8b2635 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.service-detail-content > p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 3rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    color: #0a1929;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-item p {
    color: #4a5568;
    line-height: 1.8;
}

.service-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.service-btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #fff;
    color: #0a1929;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #0a1929;
}

.service-btn-secondary:hover {
    background: #0a1929;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(10, 25, 41, 0.3);
}

.service-btn-next {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #8b2635 100%);
    background-size: 200% 200%;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.service-btn-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.service-btn-next:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.service-btn-next:hover::before {
    left: 100%;
}

.service-btn-next:active {
    transform: translateY(-1px);
}

.service-info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #e94560;
}

.service-info-box h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-info-box ul {
    list-style: none;
    padding: 0;
}

.service-info-box ul li {
    padding: 0.8rem 0;
    color: #666;
    line-height: 1.8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.service-info-box ul li:last-child {
    border-bottom: none;
}

.service-info-box ul li strong {
    color: #1a1a2e;
    font-weight: 600;
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.room-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-content h3 {
    background: linear-gradient(135deg, #0a1929 0%, #8b2635 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.room-content p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.room-content > p:last-of-type {
    margin-bottom: 0;
    flex-grow: 1;
}

.room-price {
    color: #8b2635;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
    text-align: left;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.btn-book-now {
    display: block;
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, #8b2635 0%, #d4af37 50%, #c9a961 100%);
    background-size: 200% 200%;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: auto;
    flex-shrink: 0;
    box-sizing: border-box;
    cursor: pointer;
    font-family: inherit;
}

.btn-book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-book-now:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.5);
}

.btn-book-now:hover::before {
    left: 100%;
}

.btn-book-now:active {
    transform: translateY(0);
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: #0a1929;
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: #d4af37;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    background-color: #8b2635;
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background-color: #a03040;
}

/* Footer */
footer {
    background-color: #0a1929;
    color: #fff;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e94560;
}

.contact-list li {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border: 2px solid #333;
    border-radius: 5px;
    background-color: #2a2a3e;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d4af37;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form .btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: #999;
}

.footer-bottom p {
    margin: 0.5rem 0;
}

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

.footer-bottom a:hover {
    color: #d4af37;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Features List */
.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: #fff;
    border-left: 4px solid #d4af37;
    border-radius: 5px;
}

.features-list li::before {
    content: '✓';
    color: #d4af37;
    font-weight: bold;
    margin-right: 0.5rem;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow-y: auto;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    border-radius: 15px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    position: relative;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #0a1929;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.close:hover {
    background: #8b2635;
    color: #fff;
    transform: rotate(90deg);
}

.modal-header {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-header h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    padding: 2rem 2rem 1rem;
    margin: 0;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-body {
    padding: 2rem;
}

.modal-body p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.modal-body h3 {
    background: linear-gradient(135deg, #8b2635 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.modal-body ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.modal-body ul li {
    padding: 0.8rem 0 0.8rem 2rem;
    color: #4a5568;
    line-height: 1.8;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

.modal-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, #8b2635 0%, #d4af37 50%, #c9a961 100%);
    background-size: 200% 200%;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
}

.modal-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.5);
}

/* Room Booking Modals */
.room-modal-content {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
}

.room-modal-header {
    position: relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 15px 15px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #fff;
}

.room-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    border-radius: 15px 15px 0 0;
}

.room-modal-header h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 0.5rem 0;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #fff;
}

.room-modal-price {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
    font-weight: bold;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.room-modal-body {
    padding: 2.5rem;
}

.room-modal-body h3 {
    background: linear-gradient(135deg, #8b2635 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem 0;
    font-size: 1.6rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.room-modal-body h4 {
    color: #8b2635;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.room-modal-body p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.room-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.room-features-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    color: #4a5568;
    line-height: 1.6;
    position: relative;
    font-size: 1rem;
}

.room-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

.booking-info {
    background: #f7f7f7;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid #d4af37;
}

.booking-info p {
    margin: 0.8rem 0;
    color: #2c3e50;
    font-size: 1rem;
}

.booking-info p:first-child {
    margin-top: 0;
}

.booking-info p:last-child {
    margin-bottom: 0;
}

.btn-book-confirm {
    display: block;
    width: 100%;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8b2635 0%, #d4af37 50%, #c9a961 100%);
    background-size: 200% 200%;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-book-confirm::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-book-confirm:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.5);
}

.btn-book-confirm:hover::before {
    left: 100%;
}

.btn-book-confirm:active {
    transform: translateY(0);
}

/* About Us Section */
.about-section {
    background: linear-gradient(to bottom, #faf8f3 0%, #ffffff 100%);
    padding: 4rem 0;
    margin-top: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.about-text {
    color: #2c3e50;
}

.about-text h3 {
    background: linear-gradient(135deg, #8b2635 0%, #d4af37 50%, #0a1929 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d4af37;
    font-weight: 600;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-image-container {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    background: linear-gradient(135deg, #0a1929 0%, #1a2a3a 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.about-feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #d4af37;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-feature-card h4 {
    color: #8b2635;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-feature-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-mission {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

.about-mission h3 {
    background: linear-gradient(135deg, #0a1929 0%, #8b2635 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #d4af37;
    font-weight: 600;
}

.about-mission h3:first-child {
    margin-top: 0;
}

.about-mission p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background: #faf8f3;
    padding: 4rem 0;
}

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

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.testimonial-text {
    color: #2c3e50;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b2635 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: #8b2635;
    margin-bottom: 0.3rem;
}

.author-title {
    color: #4a5568;
    font-size: 0.9rem;
}

/* Special Offers Section */
.offers-section {
    background: linear-gradient(to bottom, #ffffff 0%, #faf8f3 100%);
    padding: 4rem 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.offer-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.offer-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #8b2635 0%, #d4af37 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.offer-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.offer-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.offer-content h3 {
    background: linear-gradient(135deg, #8b2635 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
    font-weight: 600;
}

.offer-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.offer-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f7f7f7;
    border-radius: 8px;
    flex-shrink: 0;
}

.offer-price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.offer-price-new {
    color: #8b2635;
    font-size: 1.8rem;
    font-weight: bold;
}

.offer-price-label {
    color: #4a5568;
    font-size: 0.9rem;
}

.offer-btn {
    display: block;
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #8b2635 0%, #d4af37 50%, #c9a961 100%);
    background-size: 200% 200%;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(139, 38, 53, 0.3);
    margin-top: auto;
    flex-shrink: 0;
    box-sizing: border-box;
}

.offer-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.5);
}

/* Gallery Section */
.gallery-section {
    background: #fff;
    padding: 4rem 0;
}

.gallery-subtitle {
    text-align: center;
    color: #4a5568;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Awards Section */
.awards-section {
    background: linear-gradient(135deg, #0a1929 0%, #1a2a3a 100%);
    padding: 4rem 0;
    color: #fff;
}

.awards-section .section-title {
    color: #fff;
}

.awards-subtitle {
    text-align: center;
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.award-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.award-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: #d4af37;
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-item h4 {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.award-item p {
    color: #ccc;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-section {
        padding: 3rem 0;
        margin-top: 2rem;
    }

    .about-main-image {
        height: 350px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .about-feature-card {
        padding: 1.5rem;
    }

    .about-mission {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }

    .about-text h3,
    .about-mission h3 {
        font-size: 1.5rem;
    }

    .about-text p,
    .about-mission p {
        font-size: 1rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        justify-content: center;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-icon {
        font-size: 1.8rem;
    }

    nav ul {
        gap: 1rem;
    }

    nav ul li a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .modal-content {
        width: 95%;
        margin: 1rem auto;
    }

    .modal-header {
        height: 200px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
        padding: 1.5rem 1rem 0.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .close {
        right: 10px;
        top: 10px;
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }

    .room-modal-content {
        max-width: 95%;
        max-height: 95vh;
    }

    .room-modal-header {
        height: 200px;
        padding: 1.5rem;
    }

    .room-modal-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }

    .room-modal-price {
        font-size: 1.4rem;
    }

    .room-modal-body {
        padding: 1.5rem;
    }

    .room-modal-body h3 {
        font-size: 1.3rem;
    }

    .room-modal-body h4 {
        font-size: 1.1rem;
    }

    .room-features-list {
        grid-template-columns: 1fr;
    }

    .booking-info {
        padding: 1rem;
    }

    .btn-book-confirm {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    /* Testimonials Responsive */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Offers Responsive */
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offer-content {
        padding: 1.5rem;
    }

    .offer-content h3 {
        font-size: 1.3rem;
    }

    .offer-price-new {
        font-size: 1.5rem;
    }

    /* Gallery Responsive */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Awards Responsive */
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .award-item {
        padding: 1.5rem;
    }

    .award-icon {
        font-size: 2.5rem;
    }

    .award-item h4 {
        font-size: 1.1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .container {
        padding: 2rem 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .home-hero-title {
        font-size: 1.8rem;
    }

    .home-hero-subtitle {
        font-size: 1rem;
    }

    .cards-grid,
    .why-choose-cards,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid,
    .offers-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .offer-price {
        flex-wrap: wrap;
    }

    .offer-price-new {
        font-size: 1.3rem;
    }

    .gallery-item {
        height: 200px;
    }

    .nav-container ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li a {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

