* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    min-height: 100vh;
}

.page-content {
    display: none;
    min-height: 100vh;
    position: relative;
}

.page-content.active {
    display: block;
}

.page-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: -2;
}

.page-content::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.80);
    z-index: -1;
    pointer-events: none;
}

#home-page::before {
    background-image: url('https://images.unsplash.com/photo-1611216777140-fabb2b519d6a?w=1920&q=80');
}

#studios-page::before {
    background-image: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&q=80');
}

#contact-page::before {
    background-image: url('https://images.unsplash.com/photo-1571055107559-3e67626fa8be?w=1920&q=80');
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('assets/images/homepage.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s 0.2s backwards;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1s 0.4s backwards;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

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

.btn-primary:hover {
    background: var(--primary-dark);
}

section {
    padding: 5rem 2rem;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.showcase-section .container {
    max-width: 1800px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.showcase-item {
    position: relative;
    height: 450px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 2.5rem;
    color: white;
}

.showcase-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.showcase-overlay p {
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 1.2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.8);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.2), 0 5px 15px rgba(0,0,0,0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.amenity-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.amenity-card p {
    color: var(--text-light);
}

/* ==========================================
   CONTACT FORM 7 - BUTTON STYLING (DESKTOP)
   Must be BEFORE media queries!
   ========================================== */

.wpcf7 input[type="submit"],
.wpcf7-submit {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    margin-top: 1.5rem;
    display: block;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.wpcf7 input[type="submit"]:active,
.wpcf7-submit:active {
    transform: translateY(0);
}

.wpcf7-response-output {
    margin: 1.5rem 0;
    padding: 1rem;
    border-radius: 0.5rem;
}

.wpcf7-mail-sent-ok {
    background: #f0fdf4;
    border: 2px solid #10b981;
    color: #065f46;
}

.wpcf7-validation-errors {
    background: #fef2f2;
    border: 2px solid #ef4444;
    color: #991b1b;
}


/* NEW ENHANCED CTA SECTION */
.cta-section-home {
    background: transparent;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-box {
    max-width: 100%;
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Background image layer */
.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/ponta1.jpg') center/cover;
    z-index: 0;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

/* Subtle dark overlay for better contrast */
.cta-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.3) 0%, 
        rgba(0, 0, 0, 0.1) 50%,
        transparent 100%
    );
    z-index: 1;
}

/* Animated particles effect */
.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.95) 0%, 
        rgba(29, 78, 216, 0.92) 100%
    );
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    animation: floatContent 3s ease-in-out infinite;
}

.cta-box h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.cta-box .btn {
    background: white;
    color: var(--primary);
    font-weight: 700;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-box .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-box .btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-box .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

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

/* Zoom animation for background */
@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

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

.studios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.studio-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.06);
    min-width: 0;
}

.studio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 65px rgba(0,0,0,0.2);
}

.studio-image-gallery {
    position: relative;
    height: 320px;
    overflow: hidden;
    cursor: zoom-in;
}

.studio-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.studio-card:hover .studio-main-image {
    transform: scale(1.08);
}

.studio-gallery-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.gallery-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    opacity: 0;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.studio-card:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev {
    left: 1rem;
}

.gallery-nav.next {
    right: 1rem;
}

.fullscreen-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    opacity: 0;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.fullscreen-icon::before {
    content: '⤢';
}

.studio-card:hover .fullscreen-icon {
    opacity: 1;
}

.fullscreen-icon:hover {
    background: white;
    transform: scale(1.1);
}

.studio-price {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.15rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    z-index: 10;
}

.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.fullscreen-modal.active {
    display: flex;
}

.fullscreen-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0.5rem;
}

.fullscreen-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s;
}

.fullscreen-close:hover {
    background: #f3f4f6;
    transform: scale(1.1);
}

.fullscreen-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #333;
}

.fullscreen-nav:hover {
    background: #f3f4f6;
    transform: translateY(-50%) scale(1.1);
}

.fullscreen-nav.prev {
    left: 20px;
}

.fullscreen-nav.next {
    right: 20px;
}

.fullscreen-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.studio-content {
    padding: 2.5rem;
}

.studio-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.studio-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.studio-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.amenity-item::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

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

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.contact-card h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.8rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.contact-item:hover {
    background: #e0f2fe;
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-light);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    padding: 4rem 2rem 3rem;
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-about p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 600;
}

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

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    cursor: pointer;
}

.footer-links-list a:hover {
    color: #2563eb;
    transform: translateX(5px);
}

.footer-platforms {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-platform-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-platform-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-platform-icon {
    font-size: 1.5rem;
}

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

.footer-bottom p {
    color: #64748b;
    font-size: 0.9rem;
}

.page-header {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 60px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 0;
}

.page-header > div {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header h1 {
    font-size: 4rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
    font-size: 1.3rem;
    font-weight: 300;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-close:hover {
    color: var(--text-dark);
}

.success-message {
    background: #10b981;
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

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

    .cta-content-wrapper {
        margin-left: 2rem;
        margin-right: 2rem;
        padding: 2rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-box p {
        font-size: 1.1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .cta-content-wrapper {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.75rem;
    }

    .cta-box p {
        font-size: 1rem;
    }
}

/* ==========================================
   COMPLETE MOBILE RESPONSIVE CSS
   Replace ALL previous mobile CSS with this
   ========================================== */

/* ==========================================
   1. HOMEPAGE FIXES
   ========================================== */

@media (max-width: 768px) {
    .property-showcase {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1.5rem !important;
    }
    
    .property-card {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 400px !important;
        margin: 0 !important;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1.5rem !important;
    }
    
    .amenity-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 2rem !important;
    }
}

@media (max-width: 480px) {
    .property-card {
        min-height: 320px !important;
    }
}

/* ==========================================
   2. STUDIOS BOOKING MODAL - COMPLETE FIX
   ========================================== */

@media (max-width: 900px) {
    /* Modal container - scrollable */
    .booking-modal {
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 1rem !important;
    }
    
    /* Modal content - stack vertically */
    .booking-modal-content {
        flex-direction: column !important;
        max-width: 95vw !important;
        max-height: none !important;
        margin: 1rem auto !important;
        overflow: visible !important;
    }
    
    /* Pricing column - top */
    .booking-pricing-column {
        width: 100% !important;
        order: 1 !important;
        padding: 2rem 1.5rem !important;
        position: relative !important;
        border-left: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.2) !important;
    }
    
    /* Form column - bottom - WHITE BACKGROUND */
    .booking-form-column {
        order: 2 !important;
        padding: 2rem 1.5rem !important;
        max-height: none !important;
        overflow: visible !important;
        background: white !important; /* WHITE BACKGROUND */
    }
    
    /* Ensure white background covers everything */
    .booking-form-column h2,
    .booking-form-column .subtitle,
    .selected-studio-display {
        background: transparent !important;
    }
    
    .pricing-header .studio-name {
        font-size: 1.3rem !important;
    }
    
    .booking-details-list {
        display: none !important;
    }
}

@media (max-width: 480px) {
    /* Full screen on small phones */
    .booking-modal {
        padding: 0 !important;
    }
    
    .booking-modal-content {
        border-radius: 0 !important;
        max-width: 100vw !important;
        min-height: 100vh !important;
    }
    
    .booking-form-column {
        padding: 1.5rem 1.25rem 3rem 1.25rem !important;
        background: white !important; /* Ensure white */
    }
    
    .booking-pricing-column {
        padding: 1.5rem 1.25rem !important;
    }
    
    .booking-modal-close {
        top: 1rem !important;
        right: 1rem !important;
        width: 35px !important;
        height: 35px !important;
        z-index: 9999 !important;
    }
    
    /* All form elements white background */
    .wpcf7 {
        background: white !important;
    }
    
    .wpcf7 label {
        font-size: 0.95rem !important;
        margin-bottom: 1.2rem !important;
        background: transparent !important;
    }
    
    .wpcf7 input,
    .wpcf7 select,
    .wpcf7 textarea {
        padding: 0.8rem !important;
        font-size: 1rem !important;
        background: white !important;
    }
    
    .price-per-night-card {
        padding: 1.25rem !important;
    }
    
    .total-calculator-card {
        padding: 1.25rem !important;
    }
}

/* ==========================================
   3. CONTACT PAGE - FIXED LAYOUT
   ========================================== */

@media (max-width: 768px) {
    /* Section padding */
    section {
        padding: 3.5rem 0 !important;
    }
    
    /* Container full width */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    /* Grid - single column */
    .contact-grid {
        display: block !important;
        width: 100% !important;
        padding: 0 1rem !important;
    }
    
    /* Cards full width with margins */
    .contact-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 2rem 0 !important;
        padding: 2.5rem 2rem !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    
    .contact-card h2 {
        font-size: 1.6rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* Contact info */
    .contact-info {
        display: block !important;
    }
    
    .contact-item {
        padding: 1.5rem !important;
        margin-bottom: 1rem !important;
        display: block !important;
    }
    
    .contact-icon {
        font-size: 2.2rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Additional boxes */
    .additional-info,
    .social-links {
        width: 100% !important;
        padding: 1.5rem !important;
        margin-top: 1.5rem !important;
        box-sizing: border-box !important;
    }
    
    .social-icons {
        display: flex !important;
        gap: 1rem !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    section {
        padding: 2.5rem 0 !important;
    }
    
    .contact-grid {
        padding: 0 0.75rem !important;
    }
    
    .contact-card {
        padding: 2rem 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .contact-card h2 {
        font-size: 1.4rem !important;
    }
    
    .contact-item {
        padding: 1.25rem !important;
    }
    
    .additional-info,
    .social-links {
        padding: 1.25rem !important;
    }
}

/* ==========================================
   4. GENERAL MOBILE FIXES
   ========================================== */

@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }
    
    .page-header {
        height: 300px !important;
        padding: 2rem 1.5rem !important;
    }
    
    .page-header h1 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 250px !important;
        padding: 1.5rem 1rem !important;
    }
    
    .page-header h1 {
        font-size: 1.75rem !important;
    }
}

/* Fix any dark overlays on form */
.wpcf7-form * {
    background: transparent !important;
}

.wpcf7-form input,
.wpcf7-form select,
.wpcf7-form textarea {
    background: white !important;
}

/* ==========================================
   FINAL TWO FIXES
   Add to bottom of main.css
   ========================================== */

/* ==========================================
   1. SHOW PRICING CALCULATOR IN MODAL
   ========================================== */

@media (max-width: 900px) {
    /* Make pricing column scrollable if needed */
    .booking-pricing-column {
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
    
    /* Show calculator on mobile */
    .total-calculator-card {
        display: block !important;
        background: rgba(255, 255, 255, 0.2) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 1rem !important;
        padding: 1.5rem !important;
        margin-top: 1.5rem !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
    }
    
    .total-calculator-card.active {
        display: block !important;
    }
    
    .calc-row-modern {
        display: flex !important;
        justify-content: space-between !important;
        margin-bottom: 1rem !important;
        color: white !important;
        font-size: 1rem !important;
    }
    
    .calc-total-row {
        display: flex !important;
        justify-content: space-between !important;
        padding-top: 1rem !important;
        margin-top: 1rem !important;
        border-top: 2px solid rgba(255, 255, 255, 0.4) !important;
        color: white !important;
    }
    
    .calc-total-row .label {
        font-size: 1.1rem !important;
        font-weight: 700 !important;
    }
    
    .calc-total-row .value {
        font-size: 2rem !important;
        font-weight: 900 !important;
    }
    
    /* Ensure calculator shows when dates selected */
    #totalCalculatorCard {
        display: none !important;
    }
    
    #totalCalculatorCard.active {
        display: block !important;
    }
}

/* ==========================================
   2. FIX CONTACT PAGE SEND MESSAGE BUTTON
   ========================================== */

@media (max-width: 768px) {
    /* Fix button styling */
    .wpcf7 input[type="submit"] {
        width: 100% !important;
        padding: 1.1rem !important;
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
        color: white !important;
        border: none !important;
        border-radius: 0.75rem !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        transition: all 0.3s !important;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3) !important;
        margin-top: 1.5rem !important;
        display: block !important;
    }
    
    .wpcf7 input[type="submit"]:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4) !important;
    }
}

@media (max-width: 480px) {
    .wpcf7 input[type="submit"] {
        padding: 1rem !important;
        font-size: 1.05rem !important;
    }
}
    margin-top: 1.5rem !important;
}