/* ============================================
   SERRANO WAY LUXURY ESTATE - STYLES
   Mobile-First Responsive Design
   ============================================ */

/* ====== CSS Variables ====== */
:root {
    --color-primary: #1a1a1a;
    --color-secondary: #c9a96e;
    --color-accent: #8b7355;
    --color-light: #f8f6f3;
    --color-white: #ffffff;
    --color-dark: #2c2c2c;
    --color-success: #2d7a3e;
    --color-danger: #c53030;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --shadow-small: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-large: 0 10px 40px rgba(0,0,0,0.2);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.3;
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ====== Container ====== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* ====== Navigation ====== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(26, 26, 26, 0.98);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    color: var(--color-white);
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin: 0;
}

.nav-subtitle {
    color: var(--color-secondary);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-primary);
    list-style: none;
    padding: 100px 30px 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-large);
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin-bottom: 20px;
}

.nav-link {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    display: block;
    padding: 10px 0;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-secondary);
    padding-left: 10px;
}

.cta-nav {
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    padding: 10px 20px !important;
    text-align: center;
    margin-top: 20px;
}

.cta-nav:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
    padding-left: 20px !important;
}

@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        background: transparent;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 30px;
        box-shadow: none;
    }
    
    .nav-menu li {
        margin: 0;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0;
    }
    
    .nav-link:hover {
        padding-left: 0;
    }
    
    .cta-nav {
        margin: 0;
        padding: 8px 20px !important;
    }
    
    .cta-nav:hover {
        padding-left: 20px !important;
    }
}

/* ====== Hero Section ====== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    overflow: hidden;
    padding: 100px 20px 60px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vh;
    height: 100vw;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://www.genspark.ai/api/files/s/iTeVjbMz');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%) rotate(90deg);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.mtv-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 169, 110, 0.2);
    border: 2px solid var(--color-secondary);
    padding: 10px 25px;
    border-radius: 50px;
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-title {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-light);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }
}

/* ====== Buttons ====== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

.btn i {
    margin-right: 8px;
}

/* ====== Alert Banner ====== */
.alert-banner {
    background: linear-gradient(135deg, #c9a96e 0%, #8b7355 100%);
    color: var(--color-primary);
    padding: 15px 0;
    text-align: center;
}

.alert-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.alert-banner i {
    font-size: 1.5rem;
}

.alert-banner p {
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .alert-banner .container {
        flex-direction: column;
        gap: 10px;
    }
}

/* ====== Section Headers ====== */
section {
    padding: 80px 0;
}

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

.section-label {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.title-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    margin: 0 auto 25px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.keyboard-hint {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-secondary);
    margin-top: 15px;
    font-style: italic;
    opacity: 0.8;
}

.keyboard-hint i {
    margin-right: 8px;
}

@media (max-width: 767px) {
    .keyboard-hint {
        display: none;
    }
}

@media (min-width: 768px) {
    section {
        padding: 100px 0;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
}

/* ====== About Section ====== */
.about-section {
    background: var(--color-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.about-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-small);
    transition: var(--transition);
    text-align: center;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--color-white);
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--color-dark);
    line-height: 1.7;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* ====== Amenities Section ====== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.amenity-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--color-light);
    border-radius: 10px;
    transition: var(--transition);
}

.amenity-item:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.amenity-item i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.amenity-item h4 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.amenity-item p {
    font-size: 0.9rem;
    color: var(--color-dark);
}

@media (min-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* ====== Gallery Section ====== */
.gallery-section {
    background: var(--color-primary);
}

.gallery-section .section-label,
.gallery-section .section-title {
    color: var(--color-white);
}

.gallery-section .section-title {
    color: var(--color-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

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

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

.gallery-overlay h4 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: var(--color-secondary);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ====== Ideal Guest Section ====== */
.ideal-guest-section {
    background: var(--color-light);
}

.guest-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.guest-column {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.column-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
}

.guest-yes .column-icon {
    background: rgba(45, 122, 62, 0.1);
    color: var(--color-success);
}

.guest-no .column-icon {
    background: rgba(197, 48, 48, 0.1);
    color: var(--color-danger);
}

.guest-column h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--color-primary);
}

.guest-column ul {
    list-style: none;
}

.guest-column li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.guest-column li:last-child {
    border-bottom: none;
}

.guest-yes li i {
    color: var(--color-success);
    font-size: 1.2rem;
}

.guest-no li i {
    color: var(--color-danger);
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .guest-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ====== Rates Section ====== */
.rates-section {
    background: var(--color-white);
}

.rates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
    justify-items: center;
}

.rate-card {
    background: var(--color-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
}

.rate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--color-secondary);
}

.rate-card.featured {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.rate-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    background: rgba(201, 169, 110, 0.2);
    color: var(--color-secondary);
}

.rate-card.featured .rate-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.rate-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.rate-card.featured h3 {
    color: var(--color-white);
}

.rate-price {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: block;
}

.rate-card.featured .price-amount {
    color: var(--color-white);
}

.price-period {
    font-size: 1rem;
    color: var(--color-dark);
}

.rate-card.featured .price-period {
    color: rgba(255, 255, 255, 0.9);
}

.rate-features {
    list-style: none;
    text-align: left;
}

.rate-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.rate-card.featured .rate-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.rate-features li:last-child {
    border-bottom: none;
}

.rate-features i {
    color: var(--color-success);
}

.rate-card.featured .rate-features i {
    color: var(--color-white);
}

/* Custom Rates Callout */
.custom-rates-callout {
    margin: 60px auto 40px;
    max-width: 1000px;
}

.custom-rates-content {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    padding: 40px 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-large);
    position: relative;
    overflow: hidden;
}

.custom-rates-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.custom-rates-content > i {
    font-size: 3.5rem;
    color: rgba(255,255,255,0.9);
    flex-shrink: 0;
}

.custom-rates-content > div {
    flex: 1;
    color: var(--color-white);
}

.custom-rates-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--color-white);
}

.custom-rates-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.95;
}

.custom-rates-content .btn {
    flex-shrink: 0;
    padding: 15px 35px;
    background: var(--color-white);
    color: var(--color-primary);
    font-weight: 600;
    white-space: nowrap;
}

.custom-rates-content .btn:hover {
    background: var(--color-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.booking-info {
    max-width: 900px;
    margin: 0 auto;
}

.info-box {
    background: var(--color-light);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--color-secondary);
    display: flex;
    gap: 25px;
}

.info-box i {
    font-size: 2rem;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.info-box h4 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

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

.info-box li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.info-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: bold;
}

@media (min-width: 768px) {
    .rates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .rates-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ====== Inquiry Form Section ====== */
.inquiry-section {
    background: var(--color-light);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-large);
}

.inquiry-form {
    display: block;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.questionnaire-section {
    background: var(--color-light);
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
}

.questionnaire-section h3 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.questionnaire-intro {
    color: var(--color-dark);
    margin-bottom: 30px;
    font-style: italic;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: var(--transition);
}

.checkbox-label:hover {
    background: rgba(201, 169, 110, 0.1);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-note {
    text-align: center;
    color: var(--color-dark);
    font-size: 0.9rem;
    margin-top: 20px;
    font-style: italic;
}

.form-success {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--color-success), #2d7a3e);
    color: var(--color-white);
    border-radius: 15px;
}

.form-success i {
    font-size: 4rem;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-success p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 60px auto 0;
}

.contact-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.contact-card i {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.contact-card h4 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--color-dark);
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ====== Footer ====== */
.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: var(--color-secondary);
}

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

.footer-section li {
    margin-bottom: 10px;
}

.mtv-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.footer-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ====== Responsive Mobile Optimizations ====== */
@media (max-width: 767px) {
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .questionnaire-section {
        padding: 25px 20px;
    }
    
    .info-box {
        flex-direction: column;
        padding: 25px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* ====== Gallery Category Sections ====== */
.gallery-category-section {
    background: var(--color-white);
    padding: 100px 0;
}

.gallery-category-section:nth-child(even) {
    background: var(--color-light);
}

/* ====== Carousel Styles ====== */
.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-large);
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--color-white);
    padding: 40px 30px 20px;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 169, 110, 0.9);
    color: var(--color-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

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

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicator.active {
    background: var(--color-secondary);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 767px) {
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-caption {
        font-size: 0.9rem;
        padding: 30px 20px 15px;
    }
}

/* ====== Accommodations Section ====== */
.accommodations-section {
    background: var(--color-light);
}

.room-category {
    margin: 60px 0;
}

.room-title {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.room-title i {
    color: var(--color-secondary);
}

.property-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: var(--shadow-small);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-item i {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.stat-item h4 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--color-dark);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .property-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ====== Footer Enhancements ====== */
.footer-tagline {
    font-style: italic;
    color: var(--color-secondary);
    margin-top: 10px;
    font-size: 1.1rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    margin-top: 10px;
    opacity: 0.7;
}

.footer-link a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.footer-link a:hover {
    color: var(--color-white);
}

/* ====== Lightbox Styles ====== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--color-white);
    font-size: 50px;
    font-weight: 300;
    transition: var(--transition);
    cursor: pointer;
    z-index: 10000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--color-secondary);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: var(--color-white);
    padding: 20px 0;
    font-size: 1.1rem;
}

.carousel-slide {
    cursor: pointer;
}

.carousel-slide:hover {
    opacity: 0.95;
}

@media (max-width: 767px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        padding: 15px 10px;
    }
    
    .custom-rates-content {
        flex-direction: column;
        padding: 30px 25px;
        text-align: center;
    }
    
    .custom-rates-content > i {
        font-size: 2.5rem;
    }
    
    .custom-rates-content h3 {
        font-size: 1.5rem;
    }
    
    .custom-rates-content p {
        font-size: 0.95rem;
    }
    
    .custom-rates-content .btn {
        width: 100%;
    }
}

/* ====== Embedded Form Styles ====== */
.embedded-form-container {
    width: 100%;
    min-height: 1400px;
    position: relative;
}

.embedded-form-container iframe {
    width: 100% !important;
    height: 1408px;
    min-height: 1400px;
    border: none !important;
    border-radius: 15px;
    display: block;
}

/* Mobile optimization for embedded form */
@media (max-width: 767px) {
    .embedded-form-container {
        min-height: 1600px;
    }
    
    .embedded-form-container iframe {
        height: auto;
        min-height: 1600px;
    }
}

/* Tablet optimization for embedded form */
@media (min-width: 768px) and (max-width: 991px) {
    .embedded-form-container iframe {
        min-height: 1500px;
    }
}

/* ====== Utility Classes ====== */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-40 {
    margin-top: 40px;
}