/* ========== VARIABLES & RESET ========== */
:root {
    --blue: #1A3E6F;
    --blue-dark: #0F2A4A;
    --gold: #C4922E;
    --gold-light: #D4A84B;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-light: #E9ECEF;
    --gray: #ADB5BD;
    --gray-dark: #495057;
    --text: #343A40;
    --text-dark: #212529;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 6px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
    --max: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--blue);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
a { text-decoration: none; color: var(--blue); transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* ========== UTILITY ========== */
.bg-light { background: var(--off-white); }
.text-center { text-align: center; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'Open Sans', sans-serif;
}
.btn-primary {
    background: var(--gold);
    color: var(--blue-dark);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(196,146,46,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(196,146,46,0.4); }
.btn-secondary {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}
.btn-secondary:hover { background: var(--blue); color: var(--white); }
.btn-outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }
.btn-text {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.btn-text:hover { color: var(--blue); }

/* ========== BENEFIT BAR ========== */
.benefit-bar {
    background: var(--blue-dark);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.8rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1001;
}
.benefit-bar .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}
.benefit-bar i { color: var(--gold); }
.benefit-bar .sep { color: rgba(255,255,255,0.3); }
.benefit-bar a { color: var(--gold-light); font-weight: 600; }

/* ========== HEADER ========== */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 2rem;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0;
    gap: 1rem;
}
.logo-area { display: flex; align-items: center; gap: 0.6rem; }
.logo-img { height: 55px; width: auto; }
.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--blue);
    font-size: 1.1rem;
    line-height: 1.2;
}
.logo-text small {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--gray-dark);
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}
.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
}
.main-nav a:hover { color: var(--blue); border-bottom-color: var(--gold); }
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--blue);
    cursor: pointer;
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    background-image: url('../images/photos/hero-hotel.avif');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15,42,74,0.7);
}
.hero-content { position: relative; z-index: 1; max-width: 750px; margin: 0 auto; }
.hero-label {
    display: inline-block;
    background: var(--gold);
    color: var(--blue-dark);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; }
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
}
.hero-features span {
    background: rgba(255,255,255,0.12);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-features i { color: var(--gold); }

/* ========== PILLAR SECTIONS ========== */
.pillar-section { padding: 5rem 0; }
.pillar-header { text-align: center; margin-bottom: 3rem; }
.pillar-number {
    display: inline-block;
    background: var(--gold);
    color: var(--blue-dark);
    padding: 0.2rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}
.pillar-subtitle { color: var(--gray-dark); max-width: 600px; margin: 0.5rem auto 0; }

/* Pillar Grids */
.pillar-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.pillar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}
.pillar-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gold); }
.pillar-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}
.pillar-card h3 { margin-bottom: 0.5rem; }
.pillar-card p { font-size: 0.9rem; margin-bottom: 1rem; }

.pillar-cta-box {
    background: var(--off-white);
    border-left: 4px solid var(--gold);
    padding: 1.2rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    text-align: center;
    margin-top: 2rem;
}
.pillar-cta-box p { margin: 0; }

/* SMERF Grid */
.smerf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.smerf-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}
.smerf-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.smerf-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.smerf-card h3 { margin-bottom: 0.4rem; font-size: 1.1rem; }
.smerf-card p { font-size: 0.85rem; margin-bottom: 0.8rem; }

/* Nearby Grid */
.nearby-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.nearby-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.nearby-card:hover { box-shadow: var(--shadow-md); }
.nearby-img { width: 100%; height: 180px; object-fit: cover; }
.nearby-body { padding: 1.5rem; }
.nearby-distance {
    display: inline-block;
    background: var(--gold);
    color: var(--blue-dark);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.nearby-body h3 { margin-bottom: 0.4rem; }
.nearby-body ul { list-style: none; padding: 0; font-size: 0.9rem; }
.nearby-body ul li { padding: 0.3rem 0; }

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); }
.service-card img { width: 100%; height: 180px; object-fit: cover; }
.service-card h3 { padding: 1.2rem 1rem 0; }
.service-card p { padding: 0.5rem 1rem 1.5rem; font-size: 0.9rem; }

/* Little Things Grid */
.little-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.little-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}
.little-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.little-img img { width: 100%; height: 160px; object-fit: cover; border-radius: 8px; margin-bottom: 1rem; }
.little-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.little-card h3 { margin-bottom: 0.5rem; }
.little-card p { font-size: 0.9rem; }

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}
.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.contact-card i { font-size: 1.8rem; color: var(--gold); margin-bottom: 0.8rem; }
.contact-card h3 { margin-bottom: 0.3rem; }
.contact-card a { font-weight: 700; font-size: 1.1rem; display: block; margin-bottom: 0.3rem; }
.contact-card p { font-size: 0.85rem; color: var(--gray-dark); margin: 0; }

/* ========== CTA BAR ========== */
.cta-bar {
    background: var(--blue);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
}
.cta-bar h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-bar p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.cta-bar .btn-outline { color: var(--white); border-color: var(--white); }
.cta-bar .btn-outline:hover { background: var(--white); color: var(--blue); }

/* ========== FOOTER ========== */
.site-footer {
    background: var(--blue-dark);
    color: var(--white);
    padding: 3rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.site-footer h4 {
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.site-footer a { color: rgba(255,255,255,0.8); }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: 0.4rem; }
.footer-logo { height: 150px; width: auto; vertical-align: middle; margin-right: 0.3rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.8); }
.footer-contact { margin-top: 0.5rem; }
.footer-contact a { color: var(--gold-light); font-weight: 600; }
.social-icons { display: flex; gap: 0.8rem; font-size: 1.2rem; }
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
}
.social-icons a:hover { background: var(--gold); color: var(--blue-dark); }
.footer-bottom {
    text-align: center;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.2);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom p { margin: 0; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        box-shadow: var(--shadow-md);
        padding: 1rem;
        border-top: 2px solid var(--gold);
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0.8rem; }
    .smerf-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .little-grid { grid-template-columns: 1fr; }
    .logo-img { height: 40px; }
    .hero { padding: 4rem 0 3rem; }
}

@media (min-width: 769px) {
    .pillar-grid { grid-template-columns: repeat(2, 1fr); }
    .nearby-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

@media (min-width: 1024px) {
    .pillar-grid { grid-template-columns: repeat(4, 1fr); }
    .nearby-grid { grid-template-columns: repeat(4, 1fr); }
    .service-grid { grid-template-columns: repeat(4, 1fr); }
    .little-grid { grid-template-columns: repeat(4, 1fr); }
}