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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d4af37;
    --accent-color: #2c5f7c;
    --accent-dark: #1e4a5f;
    --accent-light: #3d7a9a;
    --text-light: #666;
    --text-dark: #1a1a1a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.2);
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --blue-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3d7a9a 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1e4a5f;
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    margin-top: 70px;
}

.hero-section .container {
    margin-top: 0;
}

.hero-title-above {
    text-align: center;
    padding: 0 20px 15px;
    margin-top: -50px;
}

.hero-title-above .hero-title {
    color: var(--text-dark);
    font-size: 64px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero {
    position: relative;
    width: 100%;
    /* Aspect ratio: 595/192 = 3.098:1 (approximately 3.1:1) */
    aspect-ratio: 595 / 192;
    min-height: 400px;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blue-gradient);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease;
}

/* Ensure hero images maintain aspect ratio - 595:192 (3.1:1) */
.hero-slide[style*="background-image"] {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* For wide panoramic images (595:192 aspect ratio) */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content-below {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-white);
}

.hero-content-below .hero-badge {
    display: inline-block;
    margin-bottom: 30px;
}

.hero-content-below .hero-features {
    margin-bottom: 40px;
}

.hero-content-below .hero-cta {
    margin-top: 0;
}

@media (max-width: 768px) {
    .hero-content-below {
        padding: 30px 20px;
    }
    
    .hero-title-above .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .hero-content-below {
        padding: 20px 15px;
    }
    
    .hero-title-above {
        padding: 0 15px 12px;
        margin-top: -35px;
    }
    
    .hero-title-above .hero-title {
        font-size: 32px;
    }
}

.hero-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: fadeInDown 0.8s ease;
}

/* Hero title styles are now in .hero-title-above .hero-title */

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.feature-text {
    font-size: 14px;
    opacity: 0.9;
    text-align: center;
}

.hero-cta {
    margin-top: 40px;
}

.cta-text {
    font-size: 16px;
    margin-bottom: 20px;
}

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

.price-label {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    display: block;
}

.asterisk {
    font-size: 24px;
    vertical-align: top;
}

.price-note {
    display: block;
    font-size: 16px;
    opacity: 0.8;
    margin-top: 5px;
}

.btn-cta {
    background: var(--gold-gradient);
    color: var(--primary-color);
    border: none;
    padding: 20px 50px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.5);
}

.hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Quick Actions */
.quick-actions {
    padding: 60px 0;
    background: var(--bg-white);
}

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

.quick-action-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.action-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.quick-action-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.quick-action-card a,
.quick-action-card button {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.quick-action-card button:hover {
    text-decoration: underline;
}

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

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

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images {
        order: -1;
    }
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.btn-secondary {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-secondary:hover {
    background: #1e4a5f;
    transform: translateY(-2px);
}

.image-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: block;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-images img {
    width: 100%;
    height: auto;
}

/* Office Types */
.office-types {
    background: var(--bg-light);
}

.office-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

@media (min-width: 1024px) {
    .office-types-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.office-type-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.office-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.office-type-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.office-type-info {
    padding: 25px;
}

.office-type-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.office-area {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.office-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.office-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

thead {
    background: var(--accent-color);
    color: white;
}

th, td {
    padding: 20px;
    text-align: left;
}

th {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

tbody tr:hover {
    background: var(--bg-light);
}

.btn-link {
    background: none;
    border: none;
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: 15px;
}

.btn-link:hover {
    color: #1e4a5f;
}

/* Gallery */
.gallery-section {
    background: var(--bg-white);
}

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

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

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

/* Gallery items with proper aspect ratio (595:192 for overview images) */
.gallery-item {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    /* Aspect ratio: 595/192 = 3.098:1 (wide panoramic format) */
    aspect-ratio: 595 / 192;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
}

.gallery-note {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
}

/* Location Section */
.location-section {
    background: var(--bg-light);
}

.location-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.location-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.location-time {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.location-name {
    font-size: 14px;
    color: var(--text-light);
}

.map-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    height: 500px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-align: center;
    box-shadow: var(--shadow);
}

.map-image {
    width: 100%;
    max-width: 100%;
    height: 400px;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: block;
    margin: 0 auto;
}

/* Amenities */
.amenities-section {
    background: var(--bg-white);
}

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

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

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

.amenity-card {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.amenity-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.amenity-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    display: block;
}

.amenity-card:hover .amenity-image {
    transform: scale(1.05);
}

.amenity-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.amenity-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: auto;
    padding-top: 10px;
}

.amenities-note {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
}

/* Payment Plan */
.payment-plan-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.payment-plan-section .section-title {
    color: white;
}

.payment-subtitle {
    text-align: center;
    font-size: 16px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.payment-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.timeline-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.timeline-percent {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-date {
    font-size: 13px;
    opacity: 0.9;
}

.post-handover {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
}

.post-handover strong {
    font-size: 18px;
}

.payment-plan-section .btn-cta {
    display: block;
    margin: 0 auto;
    max-width: 400px;
}

.payment-plan-image {
    margin: 40px auto;
    text-align: center;
    max-width: 1000px;
}

.payment-plan-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: block;
}

/* Developer Section */
.developer-section {
    background: var(--bg-light);
}

.developer-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 36px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

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

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.phone-input {
    display: flex;
    gap: 10px;
}

.phone-input select {
    width: 150px;
    flex-shrink: 0;
}

.phone-input input {
    flex: 1;
}

.checkbox-group {
    margin-top: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: #1e4a5f;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    display: block;
}

/* Gallery Modal */
.gallery-modal {
    align-items: center;
    justify-content: center;
}

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

.gallery-modal-image {
    width: 80vw;
    max-width: 1200px;
    height: 70vh;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    position: relative;
}

.gallery-modal-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.gallery-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid white;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav.prev {
    left: -80px;
}

.gallery-nav.next {
    right: -80px;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
}

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

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.call-btn {
    background: var(--accent-color);
}

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

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #20BA5A;
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-size: 13px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer a {
    color: white;
    text-decoration: underline;
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        gap: 20px;
    }

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

    .hamburger {
        display: flex;
    }

    .hero {
        aspect-ratio: 595 / 192;
        min-height: 400px;
        max-height: 80vh;
    }

    .hero-title-above .hero-title {
        font-size: 48px;
    }

    .hero-features {
        gap: 30px;
    }

    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-info {
        grid-template-columns: 1fr;
    }

    .gallery-nav.prev {
        left: 10px;
    }

    .gallery-nav.next {
        right: 10px;
    }

    .gallery-modal-image {
        width: 95vw;
    }
}

@media (max-width: 768px) {
    .hero {
        aspect-ratio: 595 / 192;
        min-height: 350px;
        max-height: 70vh;
    }
    
    .hero-title-above .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .price-amount {
        font-size: 36px;
    }

    .payment-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .modal-content {
        padding: 30px 20px;
    }
}

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

    .hero-title {
        font-size: 28px;
    }


    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .quick-action-cards {
        grid-template-columns: 1fr;
    }

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

    .payment-timeline {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Section Styling */
.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

/* Enhanced Office Types Table */
.office-table table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.office-table thead {
    background: var(--blue-gradient);
}

.office-table tbody tr {
    transition: all 0.3s ease;
}

.office-table tbody tr:hover {
    background: #f0f7fa;
    transform: scale(1.01);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Enhanced Amenity Cards */
.amenity-card {
    position: relative;
    overflow: hidden;
}

.amenity-card::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;
}

.amenity-card:hover::before {
    left: 100%;
}

.amenity-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Payment Timeline */
.timeline-item {
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--gold-gradient);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-item:hover::before {
    opacity: 1;
}

.timeline-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item::after {
    content: '👁️ View';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    font-weight: 600;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Enhanced Quick Action Cards */
.quick-action-card {
    position: relative;
    overflow: hidden;
}

.quick-action-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.quick-action-card:hover::after {
    opacity: 0.1;
}

.quick-action-card > * {
    position: relative;
    z-index: 1;
}

/* Premium Typography Enhancements */
.hero-subtitle {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.price-amount {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* Enhanced Developer Section */
.developer-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.developer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(44, 95, 124, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

