/* ===================================
   Octa Tower - Redesigned Stylesheet
   =================================== */

/* CSS Variables */
:root {
    /* Light Elegant Theme - Travertine & Gold */
    --midnight-grey: #2C3539;
    --champagne-gold: #D4AF37;
    --travertine-beige: #E8DCC8;
    --soft-white: #F8F8F8;
    --accent-light-gold: #F0D98C;
    --charcoal-grey: #3A3A3A;
    --text-dark: #3A3A3A;
    --text-medium: #5A5A5A;
    --white: #FFFFFF;

    /* Spacing */
    --section-padding: 60px 0;
    --container-max-width: 1200px;

    /* Transitions */
    --transition-smooth: all 0.4s ease;
    --transition-fast: all 0.2s ease;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

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

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--soft-white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--midnight-grey);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.3rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--soft-white), var(--travertine-beige));
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--champagne-gold);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--charcoal-grey);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    transition: var(--transition-fast);
}

.nav-link:hover {
    background-color: rgba(212, 175, 55, 0.2);
    color: var(--champagne-gold);
    font-weight: 600;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--charcoal-grey);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: rgba(44, 53, 57, 0.4);
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
    z-index: 3;
    max-width: 900px;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--soft-white);
    letter-spacing: 12px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--champagne-gold);
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Quick Access Section */
.quick-access-section {
    padding: 80px 0;
    background: var(--soft-white);
}

.quick-access-section .container {
    max-width: 1400px;
}

.main-access-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
}

.main-access-btn {
    background: linear-gradient(145deg, var(--white), var(--travertine-beige));
    padding: 35px 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(44, 53, 57, 0.15);
    transition: var(--transition-smooth);
    border: 3px solid var(--champagne-gold);
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
}

.main-access-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--champagne-gold), var(--accent-light-gold));
    transition: var(--transition-smooth);
    z-index: 0;
}

.main-access-btn:hover::before {
    left: 0;
}

.main-access-btn>* {
    position: relative;
    z-index: 1;
}

.main-access-btn:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
    border-color: var(--accent-light-gold);
}

.main-access-btn .btn-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.main-access-btn h3 {
    color: var(--midnight-grey);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
}

.main-access-btn p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

.main-access-btn:hover h3,
.main-access-btn:hover p {
    color: var(--midnight-grey);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.floating-btn-call {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--white);
}

.floating-btn-book {
    background: linear-gradient(135deg, var(--champagne-gold), var(--accent-light-gold));
    color: var(--midnight-grey);
}

.floating-btn:hover {
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.floating-icon {
    font-size: 1.5rem;
}

.floating-text {
    font-size: 1rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(245, 240, 232, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.slider-dots .dot:hover {
    background: rgba(245, 240, 232, 0.8);
    transform: scale(1.2);
}

.slider-dots .dot.active {
    background: var(--champagne-gold);
    border-color: var(--soft-white);
    transform: scale(1.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--champagne-gold), var(--accent-light-gold));
    color: var(--midnight-grey);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--accent-light-gold), var(--champagne-gold));
}

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

.btn-secondary {
    background: linear-gradient(135deg, var(--travertine-beige), var(--soft-white));
    color: var(--charcoal-grey);
    border: 2px solid var(--champagne-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--champagne-gold), var(--accent-light-gold));
    color: var(--midnight-grey);
}

/* Section Styles */
section {
    padding: var(--section-padding);
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    color: var(--midnight-grey);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--champagne-gold), var(--accent-light-gold));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.lead {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-medium);
}

/* Fade-in Animation Class */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* OCTA Tower Section */
.tower {
    background: linear-gradient(135deg, var(--soft-white) 0%, var(--travertine-beige) 100%);
    padding-top: 80px;
    padding-bottom: 60px;
}

.tower-content {
    margin-top: 40px;
}

.tower-main h3 {
    color: var(--midnight-grey);
    margin-bottom: 20px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(44, 53, 57, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
    border-color: var(--champagne-gold);
}

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

.feature-card h4 {
    color: var(--midnight-grey);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-medium);
}

/* Leasing Section */
.leasing-section {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(145deg, var(--travertine-beige), var(--soft-white));
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--champagne-gold);
}

.leasing-section h3 {
    text-align: center;
    color: var(--champagne-gold);
    margin-bottom: 15px;
}

.leasing-section .section-subtitle {
    color: var(--charcoal-grey);
    margin-bottom: 40px;
}

.leasing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.lease-option-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    text-align: center;
    border: 2px solid transparent;
}

.lease-option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.4);
    border-color: var(--champagne-gold);
}

.lease-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.lease-option-card h4 {
    color: var(--midnight-grey);
    margin-bottom: 15px;
}

.lease-option-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.lease-features {
    text-align: left;
    margin-bottom: 25px;
    list-style: none;
    padding: 0;
}

.lease-features li {
    color: var(--text-medium);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Plaza Specifications */
.plaza-specs {
    margin-top: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(44, 53, 57, 0.1);
}

.plaza-specs h3 {
    text-align: center;
    color: var(--midnight-grey);
    margin-bottom: 30px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.spec-card {
    padding: 25px;
    background: linear-gradient(145deg, var(--soft-white), var(--travertine-beige));
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.spec-card strong {
    color: var(--midnight-grey);
    display: block;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.spec-card p {
    margin: 0;
    color: var(--text-medium);
}

/* Fountain Showcase */
.fountain-showcase {
    margin-top: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(44, 53, 57, 0.1);
}

.fountain-showcase h3 {
    text-align: center;
    color: var(--midnight-grey);
    margin-bottom: 15px;
}

.fountain-showcase .section-subtitle {
    color: var(--text-medium);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.video-item {
    background: var(--soft-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(44, 53, 57, 0.1);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.video-item video {
    width: 100%;
    height: auto;
    display: block;
}

.video-item p {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--midnight-grey);
    margin: 0;
    background: var(--travertine-beige);
}

/* OCTA Cafe Section */
.cafe {
    background: var(--white);
    padding-top: 80px;
    padding-bottom: 60px;
}

.cafe-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 8px 30px rgba(44, 53, 57, 0.15);
}

.cafe-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.cafe-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 53, 57, 0.9), transparent);
    padding: 40px;
    color: var(--white);
}

.cafe-overlay h3 {
    color: var(--champagne-gold);
    font-size: 2rem;
    margin-bottom: 10px;
}

.cafe-overlay p {
    color: var(--soft-white);
    font-size: 1.1rem;
    margin: 0;
}

.cafe-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.cafe-feature-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(145deg, var(--soft-white), var(--travertine-beige));
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(44, 53, 57, 0.1);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cafe-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cafe-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cafe-feature-card h4 {
    color: var(--midnight-grey);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.cafe-feature-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

.cafe-hours-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(145deg, var(--soft-white), var(--travertine-beige));
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(44, 53, 57, 0.1);
}

.hours-box h4 {
    color: var(--midnight-grey);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.hours-box p {
    color: var(--text-medium);
    margin: 5px 0;
}

/* Restaurant Section */
.restaurant {
    background: linear-gradient(135deg, var(--travertine-beige) 0%, var(--soft-white) 100%);
    padding-top: 80px;
    padding-bottom: 60px;
}

.restaurant-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: 0 8px 30px rgba(44, 53, 57, 0.15);
}

.restaurant-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.restaurant-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(44, 53, 57, 0.9), transparent);
    padding: 40px;
    color: var(--white);
}

.restaurant-overlay h3 {
    color: var(--champagne-gold);
    font-size: 2rem;
    margin-bottom: 10px;
}

.restaurant-overlay p {
    color: var(--soft-white);
    font-size: 1.1rem;
    margin: 0;
}

.restaurant-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.restaurant-feature-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(44, 53, 57, 0.1);
    transition: var(--transition-smooth);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.restaurant-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.restaurant-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.restaurant-feature-card h4 {
    color: var(--midnight-grey);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.restaurant-feature-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

.restaurant-hours-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(44, 53, 57, 0.1);
}

/* Gallery Section */
.gallery {
    background-color: var(--soft-white);
    padding-top: 80px;
    padding-bottom: 60px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(44, 53, 57, 0.1);
    transition: var(--transition-smooth);
    background: var(--white);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.tall img {
    height: 580px;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item.wide img {
    height: 280px;
}

.gallery-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 12px;
    background: linear-gradient(to top, rgba(44, 53, 57, 0.9), transparent);
    color: var(--soft-white);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--travertine-beige) 0%, var(--soft-white) 100%);
    padding-top: 80px;
    padding-bottom: 0;
}

.map-wrapper-full {
    width: 100%;
    margin-top: 50px;
}

.map-wrapper-full iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(44, 53, 57, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    color: var(--midnight-grey);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--travertine-beige);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--champagne-gold);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--travertine-beige), var(--soft-white));
    color: var(--charcoal-grey);
    padding: 35px 0 15px;
    border-top: 3px solid var(--champagne-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--champagne-gold);
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 6px;
    color: var(--charcoal-grey);
    font-size: 0.9rem;
}

.footer-col a {
    color: var(--charcoal-grey);
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--champagne-gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    font-size: 1.3rem;
}

.social-links a {
    color: var(--charcoal-grey);
}

.social-links a:hover {
    transform: translateY(-2px);
    color: var(--champagne-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid var(--champagne-gold);
    color: var(--charcoal-grey);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */

/* Tablet and above (481px+) - 2 columns */
@media (min-width: 481px) {
    .main-access-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .main-access-btn {
        padding: 40px 20px;
    }

    .main-access-btn .btn-icon {
        font-size: 3.5rem;
        margin-bottom: 15px;
    }

    .main-access-btn h3 {
        font-size: 1.3rem;
    }

    .main-access-btn p {
        font-size: 0.95rem;
    }
}

/* Desktop (769px+) - 4 columns */
@media (min-width: 769px) {
    .main-access-buttons {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .main-access-btn {
        padding: 60px 35px;
    }

    .main-access-btn .btn-icon {
        font-size: 5rem;
        margin-bottom: 25px;
    }

    .main-access-btn h3 {
        font-size: 1.6rem;
    }

    .main-access-btn p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, var(--soft-white), var(--travertine-beige));
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        border-bottom: 2px solid var(--champagne-gold);
    }

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

    .nav-link {
        color: var(--charcoal-grey);
    }

    .hero {
        height: 60vh;
        min-height: 450px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

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

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    /* Mobile: 2 columns for service buttons on tablet */
    .main-access-buttons {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .main-access-btn {
        padding: 40px 20px !important;
    }

    .main-access-btn .btn-icon {
        font-size: 3.5rem !important;
        margin-bottom: 15px !important;
    }

    .main-access-btn h3 {
        font-size: 1.3rem !important;
    }

    .main-access-btn p {
        font-size: 0.9rem !important;
    }

    /* All grids single column on mobile */
    .features-grid,
    .leasing-grid,
    .specs-grid,
    .cafe-features,
    .restaurant-features {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* Leasing section adjustments */
    .leasing-section {
        padding: 30px 20px;
        margin-top: 40px;
    }

    /* Plaza specs adjustments */
    .plaza-specs,
    .fountain-showcase {
        padding: 30px 20px;
        margin-top: 40px;
    }

    /* Video grid */
    .video-grid {
        grid-template-columns: 1fr !important;
    }

    .quick-access-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .quick-btn {
        width: 100%;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .floating-text {
        font-size: 0.85rem;
    }

    .floating-icon {
        font-size: 1.3rem;
    }

    /* Contact section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .cafe-hours-cta,
    .restaurant-hours-cta {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item img,
    .gallery-item.tall img,
    .gallery-item.wide img {
        height: 250px;
    }

    section {
        padding: 50px 0;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    .quick-access-section .container {
        max-width: 100%;
    }

    /* Buttons */
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

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

    /* Mobile: Single column for service buttons */
    .main-access-buttons {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .main-access-btn {
        padding: 35px 25px !important;
    }

    .main-access-btn .btn-icon {
        font-size: 3rem !important;
    }

    .main-access-btn h3 {
        font-size: 1.2rem !important;
    }

    .features-grid,
    .leasing-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }

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

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

    .gallery-item.tall,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item img,
    .gallery-item.tall img,
    .gallery-item.wide img {
        height: 250px;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        padding: 10px 15px;
    }

    .floating-icon {
        font-size: 1.2rem;
    }

    .floating-text {
        font-size: 0.8rem;
    }

    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }
}