/* ============================================
   NSS Uno Studio Apartments - Global Styles
   Mobile-First Responsive Design
   ============================================ */

/* Root Variables */
:root {
    --primary-color: #1F3A5C;
    --secondary-color: #D4AF37;
    --text-color: #2C3E50;
    --light-text: #6C757D;
    --bg-color: #F8F9FA;
    --white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --line-height: 1.6;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

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

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
    font-size: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.tagline {
    margin: 0;
    font-size: 0.75rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        gap: 1rem;
        width: 100%;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D5A8C 100%);
    color: var(--white);
    padding: 6rem 1.5rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease;
}

.hero-subtitle {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 0.4s both;
}

/* Mobile Hero */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
        min-height: 350px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
    }
}

/* ============================================
   PAGE HERO (Sub-pages)
   ============================================ */

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D5A8C 100%);
    color: var(--white);
    padding: 4rem 1.5rem;
    text-align: center;
}

.page-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 3rem 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

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

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

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

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================================
   SECTIONS & SECTION TITLES
   ============================================ */

section {
    padding: 4rem 1.5rem;
}

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

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.highlights-section {
    background-color: var(--white);
}

.info-section {
    background-color: var(--bg-color);
}

.contact-section {
    background-color: var(--white);
}

.amenities-section {
    background-color: var(--white);
}

.location-section {
    background-color: var(--white);
}

/* Mobile Section */
@media (max-width: 768px) {
    section {
        padding: 2.5rem 1.5rem;
    }

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

    .section-subtitle {
        margin-bottom: 2rem;
    }
}

/* ============================================
   HIGHLIGHT CARDS
   ============================================ */

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

.highlight-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.highlight-price {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.highlight-detail {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* ============================================
   INFO CARDS
   ============================================ */

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

.info-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: var(--shadow-lg);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.link-arrow {
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    gap: 1rem;
    color: var(--primary-color);
}

/* ============================================
   CONTACT CARDS
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--secondary-color);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.contact-card a {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.contact-card-desc {
    color: var(--light-text);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.contact-card-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-button {
    text-align: center;
    margin-top: 2rem;
}

/* ============================================
   AMENITIES SECTION
   ============================================ */

.amenities-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.amenities-intro p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
}

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

.amenity-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--bg-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.amenity-card:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.amenity-number {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.amenity-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.amenity-content p {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.amenity-sublist {
    list-style: none;
    margin-left: 0;
    padding-left: 1.5rem;
}

.amenity-sublist li {
    color: var(--light-text);
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.amenity-sublist li:before {
    content: "✓";
    position: absolute;
    left: -1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.amenities-highlight {
    background-color: linear-gradient(135deg, var(--primary-color) 0%, #2D5A8C 100%);
    background: linear-gradient(135deg, var(--primary-color) 0%, #2D5A8C 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 3rem;
}

.amenities-highlight h2 {
    color: var(--white);
    font-size: 2rem;
}

.amenities-highlight p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Mobile Amenities */
@media (max-width: 768px) {
    .amenity-card {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .amenity-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ============================================
   CONTACT ONLY SECTION
   ============================================ */

.contact-only-section {
    background-color: var(--white);
}

/* ============================================
   CONTACT & LOCATION SECTION (Legacy)
   ============================================ */

.contact-location-section {
    background-color: var(--white);
}

/* Quick Contact Info */
.quick-contact {
    margin-bottom: 4rem;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-method-card {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-method-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-method-card p {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.contact-method-card a {
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-method-card a:hover {
    color: var(--primary-color);
}

.method-desc {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Contact Form */
.contact-form-section {
    background-color: var(--bg-color);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 4rem;
    box-shadow: var(--shadow);
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 0.9rem;
    font-size: 1.05rem;
    margin-top: 1rem;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-message strong {
    display: block;
    margin-bottom: 0.5rem;
}

.form-message ul {
    margin: 0.5rem 0 0 1.5rem;
    padding: 0;
}

.form-message li {
    margin-bottom: 0.3rem;
}

.form-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--light-text);
    margin-top: 1.5rem;
}

/* Office Address Section */
.office-address-section {
    background-color: var(--bg-color);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: center;
}

.office-address-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-top: 4px solid var(--secondary-color);
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto;
}

.office-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.office-address-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.office-address-card p {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Contact Links */
.contact-links {
    background-color: var(--bg-color);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 4rem;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.link-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

.link-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.link-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.link-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   LOCATION SECTION
   ============================================ */

.location-address {
    margin-bottom: 3rem;
}

.address-card {
    background-color: var(--bg-color);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.address-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.address-text p {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.address-contact p,
.address-map-link p {
    color: var(--light-text);
    margin-bottom: 1rem;
}

/* Address contact styling removed - using simplified address card */

/* Mobile Address Card */
@media (max-width: 768px) {
    .address-card {
        padding: 1.5rem;
    }

    .contact-form-section {
        padding: 2rem 1.5rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
    }

    .btn-submit {
        padding: 0.75rem;
    }

    .google-map {
        height: 300px;
    }

    .contact-links {
        padding: 2rem 1.5rem;
    }

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

    .office-address-section {
        padding: 2rem 1.5rem;
    }

    .office-address-card {
        padding: 1.5rem;
    }
}

/* ============================================
   MAP SECTION
   ============================================ */

.location-map {
    margin-bottom: 3rem;
}

.map-placeholder {
    background-color: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    background-color: #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    flex-direction: column;
}

.map-container position {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.map-container p {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.map-container small {
    color: var(--light-text);
    font-size: 0.9rem;
}

.google-map {
    border-radius: 8px;
    width: 100%;
    height: 450px;
}

/* ============================================
   LANDMARKS SECTION
   ============================================ */

.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.landmark-card {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.landmark-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.landmark-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.landmark-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.distance {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.landmark-desc {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   WHY LOCATION SECTION
   ============================================ */

.why-location {
    background-color: var(--bg-color);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.why-location .section-title {
    margin-bottom: 2rem;
}

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

.why-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.why-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.why-card p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 1.5rem;
    margin-top: 2rem;
}

.footer p {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-text {
    color: var(--secondary-color);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* ============================================
   RESPONSIVE DESIGN - TABLETS
   ============================================ */

@media (max-width: 768px) {
    .highlights-grid,
    .info-grid,
    .contact-grid,
    .landmarks-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .address-card {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================ */

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .hero {
        padding: 3rem 1rem;
        min-height: 300px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

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

    .nav {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    section {
        padding: 2rem 1rem;
    }

    .highlight-card,
    .info-card,
    .contact-card,
    .landmark-card,
    .why-card {
        padding: 1.5rem;
    }

    .amenity-card {
        grid-template-columns: 45px 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .amenity-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }

/* Print Styles */
@media print {
    .header,
    .footer {
        display: none;
    }
}
