/* ============================================
   Ma Maison Assisted Living - Homepage Styles
   ============================================ */

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

html {
    font-size: 112.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Vollkorn', serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65em;
    color: #303030;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Volkhov', serif;
    font-weight: 400;
    color: #3a3a3a;
    text-transform: capitalize;
}

h1 {
    font-size: 45px;
    line-height: 1.4em;
}

h2 {
    font-size: 42px;
    line-height: 1.3em;
}

h3 {
    font-size: 35px;
    line-height: 1.3em;
}

h4 {
    font-size: 24px;
    line-height: 1.2em;
}

h5 {
    font-size: 20px;
    line-height: 1.2em;
}

h6 {
    font-size: 16px;
    line-height: 1.25em;
}

a {
    color: #cc9a42;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #474747;
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: #cc9a42;
    color: #000000;
}

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

/* ============================================
   Header
   ============================================ */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    transition: background 0.3s ease;
}

.site-header.transparent-header {
    background: rgba(10, 10, 10, 0);
}

.site-header.scrolled {
    position: absolute;
    background: rgba(10, 10, 10, 0);
}

.header-container {
    max-width: 1503px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.header-logo {
    flex: 0 0 25%;
}

.header-logo img {
    max-width: 65%;
    height: auto;
    transition: all 0.2s linear;
}

.header-nav {
    flex: 0 0 50%;
    display: flex;
    justify-content: center;
}

.header-social {
    flex: 0 0 25%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-social a {
    color: #ffffff;
    font-size: 16px;
    transition: color 0.3s;
}

.header-social a:hover {
    color: #cc9a42;
}

/* Navigation */
.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 25px 18px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 18px;
    right: 18px;
    height: 3px;
    background: #cc9a42;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after {
    transform: scaleX(1);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
    color: #cc9a42;
}

/* Dropdown */
.submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #f2f2f2;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 12px 20px;
    color: #cc9a42;
    font-size: 14px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.submenu li a:hover {
    background: #ededed;
    color: #cc9a42;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/central-scottsdale-assisted-living-entryway.jpg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #272a31;
    opacity: 0.67;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.hero-spacer {
    height: 100px;
}

.hero-content h1 {
    color: #ffffff;
    margin-bottom: 15px;
    animation: zoomIn 0.6s ease;
}

.hero-subtitle {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3.2px;
    font-size: 14px;
    margin-bottom: 40px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: #cc9a42;
    color: #ffffff;
    padding: 20px 35px;
    border: 2px solid #cc9a42;
}

.btn-primary:hover {
    background: #ffffff;
    color: #cc9a42;
    border-color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    padding: 20px 35px;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #cc9a42;
}

.btn-tour {
    background: #cc9a42;
    color: #ffffff;
    padding: 17px 28px;
    border: 2px solid #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.btn-tour:hover {
    background: #ffffff;
    color: #cc9a42;
}

/* Zoom In Animation */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   Welcome Section
   ============================================ */
.welcome-section {
    padding: 80px 0 60px;
}

.two-col {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.two-col.align-middle {
    align-items: center;
}

.two-col .col {
    flex: 1;
}

.welcome-text h3 {
    margin-bottom: 20px;
    color: #3a3a3a;
}

.welcome-text p {
    color: #636363;
    margin-bottom: 20px;
}

.divider {
    width: 26%;
    height: 3px;
    background: #cc9a42;
    margin: 20px 0 0;
    max-width: 200px;
}

.call-us {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.call-us h5 {
    margin: 0;
    color: #3a3a3a;
}

.phone-number {
    margin: 0;
}

.phone-number a {
    color: #cc9a42;
    font-size: 42px;
    transition: color 0.3s;
}

.phone-number a:hover {
    color: #474747;
}

.welcome-image img {
    width: 100%;
    box-shadow: 14px 14px 11px -4px rgba(0, 0, 0, 0.5);
}

.section-spacer {
    height: 60px;
}

/* ============================================
   Magazine Section
   ============================================ */
.magazine-section {
    padding: 60px 0;
}

.magazine-image img {
    max-width: 300px;
    box-shadow: 14px 14px 11px -4px rgba(0, 0, 0, 0.5);
}

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

.magazine-text h3 {
    margin-bottom: 15px;
}

.magazine-text p {
    margin-bottom: 10px;
}

/* ============================================
   Facebook Section
   ============================================ */
.facebook-section {
    padding: 40px 0;
}

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

.facebook-content p {
    font-size: 18px;
    margin-bottom: 15px;
}

.facebook-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #659ed3;
    font-size: 30px;
    transition: color 0.3s;
}

.facebook-icon:hover {
    color: #4267B2;
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    background: #f8f8f8;
    padding: 80px 0;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-header h2 {
    margin-bottom: 15px;
}

.services-header p {
    color: #303030;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.service-box {
    text-align: center;
    padding: 20px;
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 50px;
    color: #cc9a42;
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.service-box p {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 28px;
    color: #111111;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 112px;
}

/* ============================================
   Tour Section
   ============================================ */
.tour-section {
    background: #cc9a42;
    margin-top: -86px;
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.page-content + .tour-section {
    margin-top: 0;
    margin-bottom: 60px;
}

.tour-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.tour-image {
    flex: 0 0 300px;
}

.tour-image img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.tour-content {
    flex: 1;
}

.tour-content h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 28px;
}

.tour-content p {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: #3a3a3a;
    border-top: 1px solid #cc9a42;
    color: #ffffff;
    font-family: 'Vollkorn', serif;
    font-size: 18px;
    line-height: 1.65em;
}

.footer-widgets {
    padding: 50px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.widget-title {
    font-family: 'Vollkorn', serif;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-widget p {
    font-size: 14px;
    line-height: 1.85714;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    gap: 8px;
    margin: 15px 0;
}

.footer-social-icons img {
    width: 38px;
    height: 38px;
    border-radius: 2px;
}

/* Reviews Badge */
.reviews-badge {
    margin-top: 15px;
    padding: 15px;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: left;
    transition: all 1s;
}

.reviews-badge:hover {
    box-shadow: none;
    transform: none;
}

.reviews-badge .stars {
    color: gold;
    font-size: 18px;
    margin-bottom: 5px;
}

.reviews-badge .reviews-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
}

.reviews-badge .reviews-count {
    font-size: 12px;
    color: #cccccc;
    margin: 0;
}

.reviews-badge a {
    text-decoration: none;
    color: inherit;
}

/* Contact List */
.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #ffffff;
}

.contact-list li i {
    color: #cc9a42;
    font-size: 16px;
    margin-top: 4px;
    min-width: 20px;
}

.contact-list li a {
    color: #ffffff;
}

.contact-list li a:hover {
    color: #cc9a42;
}

/* Blog Posts List */
.blog-posts-list {
    list-style: none;
}

.blog-posts-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.blog-posts-list li:last-child {
    border-bottom: none;
}

.blog-posts-list li a {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
}

.blog-posts-list li a:hover {
    color: #cc9a42;
}

/* Site Links */
.site-links {
    list-style: none;
}

.site-links li {
    margin-bottom: 8px;
}

.site-links li a {
    font-size: 14px;
    color: #ffffff;
}

.site-links li a:hover {
    color: #cc9a42;
}

/* Copyright */
.footer-copyright {
    background: #3a3a3a;
    border-top: 1px solid #cc9a42;
    padding: 20px 0;
    text-align: center;
}

.footer-copyright p {
    font-size: 13px;
    color: #ffffff;
}

.footer-copyright a {
    color: #cc9a42;
}

/* ============================================
   Inner Page Styles
   ============================================ */

.page-header {
    background: #3a3a3a;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: #ffffff;
    font-size: 42px;
    margin: 0;
}

.page-content {
    padding: 60px 0;
}

.page-content h2 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.page-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.page-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3a3a3a;
}

.page-content h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3a3a3a;
}

.page-content p {
    margin-bottom: 18px;
    color: #636363;
    line-height: 1.65em;
}

.page-content a {
    color: #cc9a42;
}

.page-content a:hover {
    color: #3a3a3a;
}

.page-content .btn-primary {
    color: #ffffff;
}

.page-content .btn-primary:hover {
    color: #cc9a42;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-content ul li {
    margin-bottom: 8px;
    color: #636363;
    line-height: 1.65em;
}

.page-content img {
    max-width: 100%;
    height: auto;
}

.page-content .two-col {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.page-content .two-col .col {
    flex: 1;
}

/* Services Page */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.services-page-grid .service-item h5 {
    color: #3a3a3a;
    margin-bottom: 8px;
}

.services-page-grid .service-item p {
    font-size: 15px;
}

.activities-breakdown {
    margin: 40px 0;
}

.activities-breakdown .two-col {
    align-items: center;
}

.activities-breakdown ul {
    list-style: disc;
    padding-left: 25px;
}

.activity-lists {
    display: flex;
    gap: 40px;
}

.activity-lists ul {
    flex: 1;
}

.calendar-section {
    text-align: center;
    margin: 40px 0;
}

.calendar-section img {
    max-width: 600px;
    width: 100%;
}

.page-cta {
    background: #cc9a42;
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.page-cta h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.page-cta h5 {
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 30px;
}

.page-cta .btn {
    background: #ffffff;
    color: #cc9a42;
    border: 2px solid #ffffff;
    padding: 20px 40px;
    font-size: 16px;
}

.page-cta .btn:hover {
    background: transparent;
    color: #ffffff;
}

/* Testimonials Page */
.testimonial-item {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.testimonial-item:last-child {
    border-bottom: none;
}

.testimonial-item p {
    font-style: italic;
    font-size: 17px;
    line-height: 1.8;
}

.testimonial-item .attribution {
    font-style: normal;
    font-weight: 600;
    color: #3a3a3a;
    margin-top: 15px;
}

.testimonial-item .source {
    font-style: normal;
    font-size: 14px;
}

.testimonial-item .source a {
    color: #cc9a42;
}

/* Gallery Page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 40px 0;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Gallery Filter */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background: transparent;
    border: 2px solid #cc9a42;
    color: #cc9a42;
    padding: 10px 24px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: #cc9a42;
    color: #ffffff;
}

.gallery-grid a.gallery-hidden {
    display: none;
}

/* FAQ Page */
.faq-item {
    margin-bottom: 30px;
}

.faq-item h4 {
    color: #3a3a3a;
    margin-bottom: 10px;
}

.faq-item p {
    color: #636363;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    text-align: center;
}

.contact-card {
    padding: 30px;
}

.contact-card i {
    font-size: 40px;
    color: #cc9a42;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-card a {
    color: #cc9a42;
}

.contact-form-section {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-section h3 {
    text-align: center;
    margin-bottom: 10px;
}

.contact-form-section > p {
    text-align: center;
    margin-bottom: 30px;
}

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

.contact-form label {
    font-weight: 500;
    color: #3a3a3a;
    margin-bottom: 4px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-family: 'Vollkorn', serif;
    font-size: 16px;
    box-sizing: border-box;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    align-self: flex-start;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

/* Blog Listing Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.blog-card {
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-card-content h3 a {
    color: #3a3a3a;
}

.blog-card-content h3 a:hover {
    color: #cc9a42;
}

.blog-card-content .blog-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.blog-card-content p {
    font-size: 15px;
}

.blog-card-content .read-more {
    display: inline-block;
    margin-top: 10px;
    color: #cc9a42;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Blog Single Post */
.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-content img {
    margin: 20px 0;
}

.blog-post-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.blog-post-content ul li {
    margin-bottom: 12px;
}

/* Reviews Page */
.review-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e5e5e5;
}

.review-item:last-child {
    border-bottom: none;
}

.review-item .reviewer-name {
    font-weight: 600;
    color: #3a3a3a;
    margin-bottom: 5px;
}

.review-item .review-source {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
}

.review-item .review-stars {
    color: gold;
    margin-bottom: 10px;
}

/* Presidential Magazine Page */
.magazine-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.magazine-grid a {
    display: block;
}

.magazine-grid img {
    width: 100%;
    height: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.magazine-grid a:hover img {
    transform: scale(1.02);
}

/* Review Us Page */
.review-us-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.review-us-content .review-stars {
    font-size: 40px;
    color: gold;
    margin-bottom: 20px;
}

/* Inner page non-transparent header */
.site-header.solid-header {
    position: relative;
    background: #3a3a3a;
}

/* ============================================
   Locations Pages
   ============================================ */

.locations-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.locations-intro {
    text-align: center;
    margin-bottom: 50px;
}

.locations-intro p {
    max-width: 700px;
    margin: 0 auto;
    color: #636363;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.location-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.location-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.location-card {
    display: flex;
    flex-direction: column;
}

.location-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.location-card-content .btn {
    align-self: center;
    margin-top: auto;
}

.location-card-content h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.location-card-content h3 a {
    color: #3a3a3a;
    text-decoration: none;
}

.location-card-content h3 a:hover {
    color: #cc9a42;
}

.location-card-address {
    color: #636363;
    font-size: 16px;
    margin-bottom: 15px;
}

.location-card-address i {
    color: #cc9a42;
    margin-right: 5px;
}

.location-card-highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.location-card-highlights li {
    padding: 4px 0;
    font-size: 16px;
    color: #303030;
}

.location-card-highlights li i {
    color: #cc9a42;
    margin-right: 8px;
}

.homepage-locations .location-card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #636363;
    margin-bottom: 20px;
}

.placeholder-image {
    background: #f0ece4;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    color: #999;
    font-style: italic;
    font-size: 18px;
}

.location-detail .two-col {
    margin-bottom: 60px;
}

.location-info-section {
    margin: 60px 0;
}

.location-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.location-info-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f8f8;
    border-radius: 4px;
}

.location-info-card i {
    font-size: 36px;
    color: #cc9a42;
    margin-bottom: 15px;
}

.location-info-card h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.location-info-card p {
    font-size: 16px;
    color: #636363;
}

.location-info-card a {
    color: #cc9a42;
    text-decoration: none;
}

.location-info-card a:hover {
    text-decoration: underline;
}

.location-about-section,
.location-services-section,
.location-gallery-section,
.location-reviews-section {
    margin: 60px 0;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.location-gallery-section .gallery-grid {
    margin-top: 30px;
}

.location-reviews-section .review-item {
    margin-bottom: 30px;
}

/* ============================================
   Team Section (About Page)
   ============================================ */

.team-section {
    margin: 60px 0;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

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

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    min-height: 200px;
    overflow: hidden;
}

.team-member h4 {
    margin-bottom: 5px;
}

.team-role {
    color: #cc9a42;
    font-style: italic;
    margin-bottom: 10px;
}

.team-member p:last-child {
    font-size: 16px;
    color: #636363;
}

/* ============================================
   Responsive Styles
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .header-logo {
        flex: 0 0 30%;
    }

    .header-nav {
        flex: 0 0 40%;
    }

    .header-social {
        flex: 0 0 30%;
    }

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

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

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

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 102.6%;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 20px;
    }

    .phone-number a {
        font-size: 28px;
    }

    .header-container {
        padding: 10px 20px;
    }

    .header-nav {
        flex: 0 0 auto;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a0a0a;
        flex-direction: column;
        padding: 20px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li > a {
        padding: 12px 20px;
    }

    .nav-menu > li > a::after {
        display: none;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #1a1a1a;
        box-shadow: none;
    }

    .header-social {
        display: none;
    }

    .hero-section {
        background-attachment: scroll;
    }

    .hero-spacer {
        height: 50px;
    }

    .hero-subtitle {
        letter-spacing: 2px;
        font-size: 12px;
    }

    .two-col {
        flex-direction: column;
    }

    .magazine-section .two-col {
        flex-direction: column-reverse;
    }

    .call-us {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .tour-inner {
        flex-direction: column;
        text-align: center;
    }

    .tour-section {
        margin-top: 0;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-content .two-col {
        flex-direction: column;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .activity-lists {
        flex-direction: column;
        gap: 10px;
    }

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

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

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

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

    .form-row {
        flex-direction: column;
    }

    .tour-image {
        flex: 0 0 auto;
    }

    .tour-image img {
        width: 100%;
        height: auto;
    }

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

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

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

    .locations-section {
        padding: 50px 0;
    }
}

@media (max-width: 544px) {
    .header-logo img {
        max-width: 80%;
    }

    .btn-primary,
    .btn-outline {
        padding: 15px 25px;
        font-size: 13px;
    }
}
