/* Custom Global Variables */
:root {
    --primary-teal: #4b747e;
    --accent-orange: #d17a22;
    --dark-text: #2c3e50;
    --medium-text: #546e7a;
    --light-gray: #f4f7f8;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--white);
    font-size: 1.1rem;
    overflow-x: hidden;
}

h1, h2, h3, .logo-text {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 25px;
}

/* HEADER */
header {
    background: var(--primary-teal);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--white);
}

.site-logo {
    height: 55px;
    width: auto;
    margin-right: 15px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
}

nav ul { display: flex; list-style: none; align-items: center; }

nav ul li a {
    color: var(--white);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: 0.3s;
}

nav ul li a.nav-btn {
    background: var(--accent-orange);
    padding: 10px 20px;
    border-radius: 4px;
}

nav ul li a:hover:not(.nav-btn) { opacity: 0.8; }

/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.pexels.com/photos/18709059/pexels-photo-18709059.jpeg') center/cover;
    height: 75vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero-content h1 { font-size: 4rem; margin-bottom: 1rem; line-height: 1.1; }
.hero-content p { font-size: 1.4rem; margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }

.btn {
    padding: 16px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero-btns { display: flex; gap: 15px; justify-content: center; }

.btn-primary { background: var(--accent-orange); color: var(--white); border: 2px solid var(--accent-orange); }
.btn-primary:hover { background: #b8691a; border-color: #b8691a; }

.btn-secondary { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--primary-teal); }

/* SERVICES */
.services { padding: 100px 0; }
.section-title { text-align: center; font-size: 2.8rem; margin-bottom: 60px; color: var(--primary-teal); position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--accent-orange); margin: 15px auto 0; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 50px 35px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid #eee;
    text-align: center;
    transition: 0.3s;
}

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.service-icon { font-size: 3rem; color: var(--primary-teal); margin-bottom: 20px; }
.price { font-size: 2.2rem; font-weight: 700; color: var(--accent-orange); margin-bottom: 15px; }
.price span { font-size: 1rem; color: var(--medium-text); font-weight: 400; }

/* BOOKING & PORTAL SECTION */
.portal-section { background: var(--light-gray); padding: 100px 0; }

.portal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.portal-info h2 { font-size: 2.5rem; color: var(--primary-teal); margin-bottom: 20px; }
.portal-info p { margin-bottom: 25px; color: var(--medium-text); }

.portal-features { list-style: none; }
.portal-features li { margin-bottom: 12px; font-weight: 500; display: flex; align-items: center; }
.portal-features i { color: var(--accent-orange); margin-right: 12px; font-size: 0.9rem; }

.portal-card {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.portal-card h3 { margin-bottom: 30px; color: var(--primary-teal); }

#revelation_pets_booking_widget {
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.widget-fallback {
    background: var(--accent-orange);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
}

.portal-footer { margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; font-size: 0.95rem; }
.portal-footer a { color: var(--primary-teal); font-weight: 700; text-decoration: none; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; padding: 80px 0; border-top: 1px solid #eee; }
.contact-block { text-align: center; }
.contact-icon { font-size: 1.8rem; color: var(--accent-orange); margin-bottom: 15px; }
.contact-block h3 { font-size: 1.2rem; margin-bottom: 10px; }
.contact-block a { color: inherit; text-decoration: none; font-weight: 500; }

/* FOOTER */
footer { background: #1a1a1a; color: #888; padding: 40px 0; text-align: center; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .portal-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .portal-features li { justify-content: center; }
    .hero-content h1 { font-size: 3rem; }
}

@media (max-width: 480px) {
    .hero-btns { flex-direction: column; }
    .portal-card { padding: 30px 20px; }
}
