/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(6, 5, 19, 0.16); /* semi-transparent dark */
    transition: background 0.3s, color 0.3s;
}

.header .container {
    display: flex;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.header-logo {
    padding-right: 20px;
    padding: .5rem;
    
   
}

.header-logo img {
    height: 50px;
    transition: filter 0.3s;
}



.header-menu ul {
    display: flex;
    gap: 40px;
    padding: 0 20px;
    list-style: none;
    margin: 0;
    
    
}

.header-menu li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
}

.header-menu li a:hover {
    color: #2853A0;
}

/* Active Menu Item */
.header-menu li a.active {
    color: #4c66af;
    font-weight: 600;
}

.header-menu {
    flex: 1;
}

/* Hamburger menu - hidden by default on desktop */
.hamburger {
    display: none;
}



.header-menu li a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
    text-decoration: none;
}

.header-menu li a:hover {
    color: #2853A0;
}

/* Header styles */
.hero01 {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/gracklepool.jpg');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    color: white;
    padding: 2rem;
}

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

.logo img {
    height: 40px;
}

.hero {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    overflow: hidden;
}

.hero-bg img {
    width: 100vw;
    min-height: 800px;
    object-fit: cover;
    filter: brightness(50%);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    max-width: 540px;
    margin: 4rem auto;
    text-align: center;
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0);
}

.hero-content h1 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    color: #ffffff;
    text-align: center;

}

/* Search form styles */
.search-container {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.search-input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.search-btn {
    background: linear-gradient(to right, #393185, #C31E56);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background: #0A1833;
}

/* Experience section styles */
.experience {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.experience h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.experience-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.experience-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    background-color: #0A1833;
    border-radius: 15px;
}

.phone-image {
    flex: 1;
   
}

.phone-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    
}

.features-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background-color: #0A1833;
    padding: 2rem;
    border-radius: 15px;
}

.feature-card {
    background-color: #0A1833;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    color: white;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/* Spaces section styles */
.spaces {
    padding: 4rem 2rem;
    background: #0A1833;
    color: white;
}

.spaces-header {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.spaces-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.spaces-header p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.space-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.space-card:hover {
    transform: translateY(-5px);
}

.space-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.space-card:hover img {
    transform: scale(1.05);
}

.space-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
}

.space-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.space-card:hover .arrow {
    transform: translateX(5px);
}

.space-content p {
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.4;
}

/* Map section styles */
.map-section {
    padding: 4rem 2rem;
    text-align: center;
}

.map-container {
    height: 400px;
    background: #e2e8f0;
    border-radius: 10px;
    margin: 2rem 0;
}

.explore-btn {
    
    background: linear-gradient(to right, #393185, #C31E56);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}


.explore-btn:hover {
    background: #0A1833;
}

/* Testimonials section styles */
.testimonials {
    padding: 4rem 2rem;
    background: #f8fafc;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rating {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
}

/* Mobile app section styles */
.mobile-app {
    padding: 4rem 2rem;
    text-align: center;
    background: #000000;
    color: white;
}

.app-buttons {
    margin-top: 2rem;
}

.app-store-btn {
    background: linear-gradient(to right, #393185, #C31E56);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.app-store-btn:hover {
    background: #0A1833;
}

/* Footer styles */
.footer {
    background: #0A1833;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    padding: 0;
}

.footer-section h3 {
    margin: 0 0 1rem 0;
    padding: 0;
    text-align: left;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    margin-left: 0;
    padding-left: 0;
    text-align: left;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #334155;
}


.locations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.5rem;
    color: #b3c0d1;
    font-size: 0.98rem;
}



/* Responsive design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .spaces-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .header {
        min-height: unset;
        padding: 0.5rem 0;
        position: relative;
    }
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        position: relative;
    }
    .header-menu {
        position: relative;
    }
    .header-menu ul {
        display: none;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 32px;
        height: 32px;
        cursor: pointer;
        position: absolute;
        right: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1100;
        background: transparent;
        border: none;
        padding: 0;
    }
    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background: #fff;
        margin: 3px 0;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    .header.header-scrolled .hamburger span {
        background: #393185;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    .header-menu.active ul {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 10px;
        background: rgba(255,255,255,0.98);
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        border-radius: 10px;
        padding: 1rem 2rem;
        gap: 1.5rem;
        z-index: 1001;
        min-width: 200px;
        width: auto;
    }
    .header-menu.active ul li a {
        color: #393185;
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .experience-container {
        flex-direction: column;
        gap: 2rem;
    }

    .phone-image {
        position: static;
        left: unset;
        bottom: unset;
        transform: none;
        width: 250px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .features-grid {
        width: 100%;
        margin: 0;
    }

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

@media (max-width: 640px) {
    .experience-container {
        padding-bottom: 40px;
    }

    .phone-image {
        width: 200px;
        position: static;
        left: unset;
        bottom: unset;
        transform: none;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        min-height: 150px;
    }

    .spaces-grid {
        grid-template-columns: 1fr;
    }
    
    .spaces-header h2 {
        font-size: 2rem;
    }
    
    .space-card {
        aspect-ratio: 16/9;
    }
}

/* Get inspired section styles */
.inspired-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.inspired-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.inspired-header h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0;
}

.inspired-header p {
    color: #666;
    margin: 0;
}

.slider-controls {
    display: flex;
    gap: 1rem;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e2e8f0;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.inspired-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding-bottom: 1rem;
}

.inspired-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.property-card-link {
    text-decoration: none;
    color: inherit;
    width: 280px; /* Fixed width */
    flex-shrink: 0;
    display: block;
}

.property-card {
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    scroll-snap-align: start;
    width: 100%;
}

.property-card:hover {
    transform: translateY(-5px);
}

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

.property-info {
    padding: 1rem;
}

.property-info h3 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.property-info p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

@media (max-width: 1024px) {
    .inspired-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .inspired-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

@media (max-width: 480px) {
    .inspired-slider {
        grid-template-columns: 1fr;
    }

    .property-card img {
        height: 180px;
    }
}

/* Header scroll effect styles */
.header.header-scrolled {
    background-color: rgba(255,255,255,0.95); /* white 95% */
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header.header-scrolled .header-logo img {
    transition: filter 0.3s;
}

.header.header-scrolled .header-menu li a {
    color: #222;
}

.header.header-scrolled .header-menu li a:hover {
    color: #393185;
}

/* --- PORTFOLIO SECTION --- */
.portfolio-section {
    background: #0a1833;
    color: #fff;
    padding: 3.5rem 0 2.5rem 0;
    text-align: center;
}

.portfolio-section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.portfolio-section p {
    color: #b3c0d1;
    margin-bottom: 2rem;
}

.portfolio-map-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
}

.portfolio-map img {
    width: 100%;
    max-width: 800px;
    border-radius: 10px;
    
}

.portfolio-stats {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1.2rem 2.2rem;
    font-size: 1.1rem;
    min-width: 110px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4ea1f7;
    margin-bottom: 0.2rem;
}

/* --- MISSION SECTION --- */
.vision-section {
    background: #f7fafd;
    padding: 4.5rem 0 4rem 0;
    text-align: center;
}

.vision-section h3 {
    font-size: 1.5rem;
    color: #0a1833;
    margin-bottom: 0.5rem;
}

.vision-section p {
    color: #222b45;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- CORE TEAM SECTION --- */
.coreteam-section {
    background: #fff;
    padding: 3rem 0 2.5rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coreteam-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #0a1833;
}

.coreteam-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-left: 25px;
    margin-right: 25px;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.coreteam-member {
    background: #f7fafd;
    border-radius: 12px;
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coreteam-member img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 0.7rem;
    background: #e2e8f0;
}

.coreteam-member strong {
    display: block;
    font-size: 1.08rem;
    color: #0a1833;
    margin-bottom: 0.2rem;
}

.coreteam-member span {
    color: #4ea1f7;
    font-size: 0.98rem;
}

/* --- LEADERSHIP SECTION (HotelOpsAI style) --- */
.leadership-section {
    background: #0A1833;
    padding: 3rem 0 3rem 0;
    display: flex;
    justify-content: center;
}
.leadership-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    
    flex-wrap: wrap;
}
.leadership-image img {
    width: 370px;
    max-width: 90vw;
    border-radius: 5px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    display: block;
}
.leadership-content {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: none;
    padding: 0;
    color: #fff;
}
.leadership-content h3 {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-family: 'Segoe UI', sans-serif;
}
.leadership-content p {
    font-size: 1.13rem;
    color: #eaf6ff;
    margin-bottom: 1.5rem;
}
.leadership-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.leadership-checklist li {
    display: flex;
    align-items: center;
    font-size: 1.08rem;
    color: #eaf6ff;
    margin-bottom: 1.1rem;
    font-weight: 500;
}
.check-icon {
    width: 26px;
    height: 26px;
    margin-right: 0.7em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.check-icon svg {
    width: 22px;
    height: 22px;
    color: #2ecc71;
    display: block;
}
.check-icon svg circle {
    fill: #1a2a4a;
}
.check-icon svg path {
    stroke: #2ecc71;
}
@media (max-width: 900px) {
    .leadership-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .leadership-image img {
        width: 90vw;
        max-width: 400px;
    }
    .leadership-content {
        max-width: 98vw;
        align-items: flex-start;
    }
    .leadership-content h3 {
        font-size: 1.2rem;
    }
}

/* --- INVESTORS SECTION --- */
.investors-section {
    background: #fff;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
}

.investors-section h3 {
    font-size: 1.3rem;
    color: #0a1833;
    margin-bottom: 1.5rem;
}

.investors-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
}

.investors-logos img {
    height: 38px;
    width: auto;
    filter: grayscale(1) contrast(1.1);
    opacity: 0.8;
    transition: filter 0.2s, opacity 0.2s;
}

.investors-logos img:hover {
    filter: none;
    opacity: 1;
}

/* --- TECH-ENABLED HOSPITALITY SECTION --- */
.tech-section {
    background: #f7fafd;
    padding: 3rem 0 2.5rem 0;
    text-align: center;
}

.tech-section h3 {
    font-size: 1.3rem;
    color: #0a1833;
    margin-bottom: 2rem;
}

.tech-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.tech-feature {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 260px;
    min-width: 200px;
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tech-feature img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.tech-feature h4 {
    font-size: 1.08rem;
    color: #0a1833;
    margin-bottom: 0.5rem;
}

.tech-feature p {
    color: #222b45;
    font-size: 0.98rem;
}

.cta-partner {
    margin-top: 1.5rem;
}

.btn-primary {
    background: #2853A0;
    color: #fff;
    padding: 0.9rem 2.2rem;
    border-radius: 8px;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: #1a376b;
}

/* --- AWARDS SECTION --- */
.awards-section {
    background: #e6f2f7;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
}

.award-card {
    background: #0A1833;
    color: #fff;
    border-radius: 18px;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    max-width: 80%;
    margin: 0 auto;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.award-card img {
    height: 48px;
    margin-bottom: 1rem;
}

.award-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.btn-secondary {
    background: #fff;
    color: #2853A0;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background: #2853A0;
    color: #fff;
}



/* CTA Section */
.hotel-cta-section {
    background: #f8f6ea;
    padding: 3.5rem 0 3.5rem 0;
    color: #0A1833;
    text-align: center;
}
.hotel-cta-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0A1833;
}
.hotel-cta-section .btn-primary {
    background: #2853A0;
    color: #fff;
    padding: 0.7rem 1.7rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: background 0.2s;
    display: inline-block;
    width: auto;
    min-width: 120px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.hotel-cta-section .btn-primary:hover {
    background: #1a376b;
}
/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .portfolio-map-stats {
        flex-direction: column;
        gap: 2rem;
    }
    .portfolio-stats {
        flex-direction: row;
        gap: 1.2rem;
    }
    .footer-main {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .hero-content {
        text-align: center;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-content h1,
    .hero-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .portfolio-map img {
        width: 98vw;
        min-width: 0;
    }
    .portfolio-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .leadership-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    .tech-features {
        flex-direction: column;
        gap: 1.2rem;
    }
    .award-card {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    .leadership-content h3 {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* About Grackle Section */
.about-grackle-section {
    background: #faf7ec;
    padding: 3.5rem 0 2.5rem 0;
    display: flex;
    justify-content: center;
}
.about-grackle-container {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    max-width: 1100px;
    margin: 0 auto;
    
    flex-wrap: wrap;
}
.about-grackle-image img {
    width: 370px;
    max-width: 90vw;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    display: block;
}
.about-grackle-content {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.about-grackle-content h2 {
    font-size: 2.5rem;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    color: #162447;
    margin-bottom: 1rem;
}
.about-grackle-subtitle {
    font-size: 1.1rem;
    color: #222b45;
    margin-bottom: 1.2rem;
}
.about-grackle-content p {
    font-size: 1.08rem;
    color: #222b45;
    margin-bottom: 1.2rem;
}
.about-grackle-content .btn-primary {
    background: #2853A0;
    color: #fff;
    padding: 0.7rem 1.7rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: background 0.2s;
    display: inline-block;
}
.about-grackle-content .btn-primary:hover {
    background: #1a376b;
}
@media (max-width: 900px) {
    .about-grackle-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .about-grackle-image img {
        width: 90vw;
        max-width: 400px;
    }
    .about-grackle-content {
        max-width: 98vw;
        align-items: flex-start;
    }
    .about-grackle-content h2 {
        font-size: 2rem;
    }
}

/* Leadership Section Enhancements */
.leadership-intro {
    font-size: 1.13rem;
    color: #222b45;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    text-align: center;
}
.leadership-differentiators {
    list-style: disc inside;
    color: #2853A0;
    font-size: 1.05rem;
    margin: 0 auto 1.5rem auto;
    max-width: 700px;
    padding-left: 1.2em;
    text-align: left;
}
.leadership-differentiators li {
    margin-bottom: 0.5em;
    color: #2853A0;
    font-weight: 500;
}
.leadership-quote {
    font-style: italic;
    color: #4ea1f7;
    background: #f7fafd;
    border-left: 4px solid #4ea1f7;
    padding: 1rem 1.5rem;
    margin: 1.5rem auto 2rem auto;
    max-width: 600px;
    font-size: 1.15rem;
}
.core-team-heading {
    font-size: 1.4rem;
    color: #162447;
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
}
.core-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 0 auto 2.5rem auto;
    justify-items: center;
    max-width: 1200px;
}
.core-team-member {
    background: #f7fafd;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    max-width: 350px;
    min-width: 260px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    text-align: center;
}
.core-team-member strong {
    font-size: 1.13rem;
    color: #0a1833;
    margin-bottom: 0.2rem;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
}
.core-team-member img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 0.7rem;
    background: #e2e8f0;
}
.core-team-member span {
    color: #4ea1f7;
    font-size: 1rem;
    margin-bottom: 0.7rem;
    display: block;
    font-weight: 500;
}
.core-team-member p {
    color: #222b45;
    font-size: 1.01rem;
    margin-bottom: 0.5rem;
}
.core-team-member ul {
    margin: 0.5em 0 0.5em 1.2em;
    padding: 0;
    font-size: 0.98rem;
    color: #2853A0;
}
.core-team-member ul li {
    margin-bottom: 0.3em;
    font-weight: 400;
}
@media (max-width: 900px) {
    .core-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 0 auto 2.5rem auto;
        justify-items: center;
        max-width: 800px;
    }
    .core-team-member {
        max-width: 100%;
        min-width: 0;
    }
}
@media (max-width: 600px) {
    .core-team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0 auto 2.5rem auto;
        justify-items: center;
        max-width: 400px;
    }
    .core-team-member {
        max-width: 98vw;
        min-width: 0;
        padding: 1.2rem 0.5rem 1rem 0.5rem;
        margin-left: auto;
        margin-right: auto;
    }
    .core-team-member img {
        width: 120px;
        height: 120px;
    }
}
@media (max-width: 400px) {
    .core-team-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0 auto 2.5rem auto;
        justify-items: center;
        max-width: 350px;
    }
    .core-team-member {
        min-width: 0;
        max-width: 100%;
    }
}

/* --- RESPONSIVE ENHANCEMENTS FOR ABOUT PAGE --- */
@media (max-width: 900px) {
    .about-grackle-container,
    .leadership-container,
    .portfolio-map-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .about-grackle-image img,
    .leadership-image img {
        width: 95vw;
        max-width: 400px;
    }
    .about-grackle-content,
    .leadership-content {
        max-width: 98vw;
        align-items: flex-start;
    }
    .about-grackle-content h2,
    .leadership-content h3 {
        font-size: 2rem;
    }
    .portfolio-map img {
        width: 95vw;
        min-width: 0;
    }
    .portfolio-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .core-team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 0 auto 2.5rem auto;
        justify-items: center;
        max-width: 400px;
    }
    .core-team-member {
        max-width: 98vw;
        min-width: 0;
    }
}
@media (max-width: 600px) {
    .about-grackle-container {
        align-items: center;
        text-align: center;
        justify-content: center;
        flex-direction: column;
    }
    .about-grackle-content,
    .about-grackle-content h2,
    .about-grackle-content .about-grackle-subtitle,
    .about-grackle-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .about-grackle-image img {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .about-grackle-content .btn-primary {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .about-grackle-section,
    .leadership-section,
    .coreteam-section,
    .portfolio-section,
    .vision-section,
    .awards-section {
        padding: 1.5rem 0 1.5rem 0;
    }
    .about-grackle-content h2,
    .leadership-content h3 {
        font-size: 1.3rem;
    }
    .core-team-member {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
    }
    .award-card {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
        max-width: 98vw;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-section h3 {
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    .about-grackle-content h2,
    .leadership-content h3 {
        font-size: 1.1rem;
    }
    .core-team-member strong {
        font-size: 1rem;
    }
    .core-team-member span {
        font-size: 0.9rem;
    }
    .core-team-member p {
        font-size: 0.95rem;
    }
    .award-card h4 {
        font-size: 1rem;
    }
    .footer-section h3 {
        font-size: 1rem;
    }
    .footer-bottom {
        font-size: 0.9rem;
    }
}

/* --- WHY GRACKLE SECTION --- */
.why-grackle-section {
    background: #0A1833;
    padding: 4rem 0 4rem 0;
    color: #fff;
    text-align: center;
}
.why-grackle-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.why-grackle-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}
.why-grackle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    justify-content: center;
    
}
.why-grackle-card {
    background: rgba(46, 133, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 220px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.why-grackle-card:hover {
    box-shadow: 0 6px 32px rgba(46,133,255,0.18), 0 2px 16px rgba(0,0,0,0.12);
    transform: translateY(-4px) scale(1.02);
}
.why-grackle-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    background: rgba(255,255,255,0.10);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-grackle-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}
.why-grackle-card p {
    font-size: 1.05rem;
    color: #eaf6ff;
    font-weight: 400;
}
@media (max-width: 900px) {
    .why-grackle-section {
        padding: 2.5rem 0 2.5rem 0;
    }
    .why-grackle-section h2 {
        font-size: 2rem;
    }
    .why-grackle-card {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
}
@media (max-width: 600px) {
    .why-grackle-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .why-grackle-section h2 {
        font-size: 1.3rem;
    }
    .why-grackle-card h3 {
        font-size: 1rem;
    }
    .why-grackle-card p {
        font-size: 0.98rem;
    }
}

/* --- BRAND NARRATIVE SECTION --- */
.brand-narrative-section {
    background: #f8f6ea;
    padding: 3.5rem 0 3.5rem 0;
    color: #0A1833;
    text-align: center;
}
.brand-narrative-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}
.brand-narrative-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #0A1833;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 0.02em;
}
.brand-narrative-intro {
    font-size: 1.05rem;
    color: #222b45;
    margin-bottom: 1.2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.brand-narrative-values {
    font-size: 1.18rem;
    color: #222b45;
    margin-bottom: 2.2rem;
    font-weight: 400;
}
.brand-narrative-grid {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 1.2rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}
.brand-narrative-left {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    align-items: flex-end;
}
.brand-narrative-right {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    align-items: flex-start;
}
.brand-narrative-row {
    font-size: 1.45rem;
    font-weight: 700;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
}
.brand-narrative-letter {
    color: #ff7a1a;
    font-size: 2rem;
    font-weight: 700;
    margin-right: 0.18em;
    font-family: 'Segoe UI', sans-serif;
}
.brand-narrative-word {
    color: #0A1833;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Segoe UI', sans-serif;
}
.brand-narrative-desc {
    font-size: 1.13rem;
    color: #222b45;
    font-weight: 400;
    text-align: left;
}
@media (max-width: 900px) {
    .brand-narrative-section {
        padding: 2rem 0 2rem 0;
    }
    .brand-narrative-section h2 {
        font-size: 1.5rem;
    }
    .brand-narrative-row {
        font-size: 1.1rem;
    }
    .brand-narrative-letter {
        font-size: 1.3rem;
    }
    .brand-narrative-word {
        font-size: 1rem;
    }
    .brand-narrative-desc {
        font-size: 1rem;
    }
    .brand-narrative-grid {
        gap: 0.7rem 1.2rem;
    }
}
@media (max-width: 600px) {
    .brand-narrative-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem 0;
    }
    .brand-narrative-left,
    .brand-narrative-right {
        align-items: center;
        text-align: center;
    }
    .brand-narrative-row,
    .brand-narrative-desc {
        text-align: center;
        justify-content: center;
    }
}

/* --- BRAND NARRATIVE LIST (single line style) --- */
.brand-narrative-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    
    max-width: 900px;
    margin: 0 auto;
}
.brand-narrative-item {
    font-size: 1.35rem;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 400;
    color: #0A1833;
    letter-spacing: 0.01em;
    text-align: center;
}
.brand-narrative-letter {
    color: #ff7a1a;
    font-size: 1.7rem;
    font-weight: 700;
    margin-right: 0.08em;
    font-family: 'Segoe UI', sans-serif;
}
.brand-narrative-word {
    color: #0A1833;
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 0.3em;
    font-family: 'Segoe UI', sans-serif;
}
@media (max-width: 900px) {
    .brand-narrative-item {
        font-size: 1.1rem;
    }
    .brand-narrative-letter {
        font-size: 1.2rem;
    }
    .brand-narrative-word {
        font-size: 1rem;
    }
}
@media (max-width: 600px) {
    .brand-narrative-list {
        gap: 0.7rem;
    }
    .brand-narrative-item {
        font-size: 1rem;
    }
    .brand-narrative-letter {
        font-size: 1rem;
    }
    .brand-narrative-word {
        font-size: 0.98rem;
    }
}

/* Ensure all headings and paragraphs use the same font as index.html */
h1, h2, h3, h4, h5, h6, p {
    font-family: 'Segoe UI', sans-serif !important;
}

/* Center align headings and paragraphs */
h1, h2, h3, h4, h5, h6 {
    text-align: center;
    margin-bottom: 0.5rem;
}

p {
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Specific styling for h2 and p alignment */
h2 + p {
    margin-top: 0;
    margin-bottom: 2rem;
}

/* Remove flex display for inspired-header */
.inspired-header {
    display: block !important;
}

/* Center align the inspired-slider */
.inspired-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Center align property cards */
.property-card {
    text-align: center;
}

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

.property-info h3 {
    text-align: center;
}

.property-info p {
    text-align: center;
} 