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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.brand-icon {
    font-size: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.brand-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Enhanced Button Styles */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #C9A96E 0%, #D4AF37 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
    background: linear-gradient(135deg, #D4AF37 0%, #E6C55A 100%);
}

.btn-secondary {
    background: rgba(26, 26, 26, 0.05);
    color: #1a1a1a;
    border: 1px solid rgba(26, 26, 26, 0.1);
}

.btn-secondary:hover {
    background: rgba(26, 26, 26, 0.1);
    transform: translateY(-1px);
}

.btn-primary-large, .btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 16px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-primary-large {
    background: linear-gradient(135deg, #C9A96E 0%, #D4AF37 100%);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.4);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 16px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(201, 169, 110, 0.6);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 30%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
}

.hero-content {
    position: relative;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 0 32px;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #C9A96E;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #C9A96E 0%, #D4AF37 50%, #E6C55A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.title-main {
    display: block;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
    font-weight: 400;
}

.hero-property-info {
    margin-bottom: 48px;
}

.property-name {
    font-size: 28px;
    font-weight: 600;
    color: #C9A96E;
    margin-bottom: 16px;
}

.pricing-highlight {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.price-tag {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.booking-info {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #C9A96E;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Location Section */
.location-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.location-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.location-hero-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.location-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
}

.location-icon {
    font-size: 48px;
    margin-bottom: 24px;
    position: relative;
}

.location-hero-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: #C9A96E;
    margin-bottom: 16px;
    position: relative;
}

.location-hero-card p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

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

.benefit-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.benefit-content p {
    color: #666;
    font-size: 16px;
}

/* Specifications Section */
.specifications-section {
    background: #ffffff;
}

.specifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-card {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 48px;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spec-card:hover::before {
    opacity: 1;
}

.spec-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(201, 169, 110, 0.3);
}

.featured-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    transform: scale(1.05);
    border-color: #C9A96E;
}

.featured-card::before {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, transparent 100%);
}

.popular-badge {
    position: absolute;
    top: -16px;
    right: 32px;
    background: linear-gradient(135deg, #C9A96E 0%, #D4AF37 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.spec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.featured-card .spec-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.spec-type {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.featured-card .spec-type {
    color: #C9A96E;
}

.spec-area {
    font-size: 18px;
    font-weight: 600;
    color: #C9A96E;
    background: rgba(201, 169, 110, 0.1);
    padding: 8px 16px;
    border-radius: 12px;
}

.spec-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    position: relative;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #C9A96E 0%, #D4AF37 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Amenities Section */
.amenities-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.amenities-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-card-large {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.amenity-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
}

.amenity-visual {
    font-size: 64px;
    margin-bottom: 24px;
    position: relative;
}

.amenity-card-large h3 {
    font-size: 32px;
    font-weight: 700;
    color: #C9A96E;
    margin-bottom: 16px;
    position: relative;
}

.amenity-card-large p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

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

.amenity-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

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

.amenity-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

/* Quality Section */
.quality-section {
    background: #ffffff;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.quality-card {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.quality-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.quality-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.quality-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.quality-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

/* Credibility Section */
.credibility-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.credibility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
}

.credibility-section .section-title,
.credibility-section .section-subtitle {
    color: #ffffff;
    position: relative;
}

.awards-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.award-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.3);
}

.award-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.award-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #C9A96E;
    margin-bottom: 12px;
    line-height: 1.4;
}

.award-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-table {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    padding: 32px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #C9A96E;
}

.pricing-body {
    padding: 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pricing-row:hover {
    background: rgba(201, 169, 110, 0.05);
}

.pricing-row:last-child {
    border-bottom: none;
}

.milestone {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
}

.percentage {
    font-size: 18px;
    font-weight: 700;
    color: #C9A96E;
    background: rgba(201, 169, 110, 0.1);
    padding: 8px 16px;
    border-radius: 12px;
}

/* Contact Section */
.contact-section {
    background: #ffffff;
    padding: 120px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

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

.form-group input,
.form-group select {
    padding: 16px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #C9A96E;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #C9A96E 0%, #D4AF37 100%);
    color: #ffffff;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 169, 110, 0.3);
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-arrow {
    transform: translateX(4px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    background: rgba(201, 169, 110, 0.05);
    transform: translateX(8px);
}

.contact-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #C9A96E 0%, #D4AF37 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #C9A96E;
}

.privacy-assurance {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.privacy-assurance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
}

.privacy-icon {
    font-size: 32px;
    flex-shrink: 0;
    position: relative;
}

.privacy-content {
    position: relative;
}

.privacy-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #C9A96E;
    margin-bottom: 8px;
}

.privacy-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 48px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-text {
    text-align: right;
}

.footer-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-highlight {
        flex-direction: column;
        gap: 8px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .location-hero-card,
    .amenity-card-large {
        padding: 40px 24px;
    }
    
    .spec-card {
        padding: 32px 24px;
    }
    
    .specifications-grid,
    .location-benefits,
    .amenities-grid,
    .quality-grid,
    .awards-showcase {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 700px;
    }
    
    .brand-name {
        font-size: 20px;
    }
    
    .brand-subtitle {
        font-size: 12px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}