/* ==========================================================================
   Base & Variables
   ========================================================================== */
:root {
    /* Colors */
    --primary: #97d2da; /* Light blue from card */
    --primary-dark: #7abcc4;
    --primary-light: #e4f4f6;
    --text-main: #333333; /* Charcoal */
    --text-light: #666666;
    --bg-main: #ffffff;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1200px;
    --section-padding: 80px 0;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky header */
}

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

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

a {
    text-decoration: none;
    color: var(--text-main);
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-dark);
}

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

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

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

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary);
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}
.section-divider.align-left {
    margin-left: 0;
}

/* ==========================================================================
   Components
   ========================================================================== */
   
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-main);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}
.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--text-main);
    transform: translateY(-3px);
}

/* ==========================================================================
   Header & Nav
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
    height: 80px;
}

.header.scrolled {
    height: 70px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-main);
}

.nav-menu {
    display: flex;
    align-items: center;
}

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

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-phone {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
}

.header-phone:hover {
    color: var(--primary-dark);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e4f4f6 0%, #c8eaee 50%, #97d2da 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.2) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease forwards;
}

.hero-image-wrapper {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-team-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid rgba(255, 255, 255, 0.5);
    max-height: 500px;
    object-fit: cover;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}
.hero-buttons .btn-outline-light {
    border-color: var(--text-main);
    color: var(--text-main);
}
.hero-buttons .btn-outline-light:hover {
    background-color: var(--text-main);
    color: var(--white);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.feature-card {
    background: var(--white);
    padding: 1.4rem 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--primary-light);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.feature-title {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.feature-desc {
    color: var(--text-light);
    font-size: 0.88rem;
    margin: 0;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-layout {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    flex: 1;
}

.consultation-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 2rem;
    padding: 2rem 1.5rem;
    width: 180px;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.consultation-bubble-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.consultation-bubble-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.consultation-bubble-desc {
    font-size: 0.8rem;
    line-height: 1.4;
    opacity: 0.85;
    margin: 0;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-light), transparent);
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before {
    height: 100%;
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--primary-dark);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.service-name {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    position: relative;
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.placeholder-img-1 { background-image: url('images/gallery_1.png'); }
.placeholder-img-2 { background-image: url('images/gallery_2.png'); }
.placeholder-img-3 { background-image: url('images/gallery_3.png'); }
.placeholder-img-4 { background-image: url('images/gallery_4.png'); }

.appointment-only-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light);
    color: var(--text-main);
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
}

.appointment-only-note i {
    color: var(--primary-dark);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-light);
}

.pricing-card-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.pricing-card-title {
    font-size: 1.3rem;
    margin: 0;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px dashed #e0e0e0;
    font-size: 0.98rem;
    color: var(--text-main);
}

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

.pricing-list .price {
    font-weight: 600;
    color: var(--primary-dark);
    white-space: nowrap;
}

.pricing-banner {
    margin-top: 2.5rem;
    background: var(--primary-light);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

.pricing-banner i {
    color: var(--primary-dark);
    font-size: 1.3rem;
}

.pricing-banner p {
    margin: 0;
    font-size: 1.1rem;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
}

.stars {
    color: #f39c12;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    margin: 0;
}

.testimonial-date {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-map {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.info-content h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.info-content p {
    color: var(--text-light);
    margin: 0;
}

.phone-link {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-dark);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0.4rem 0 0;
    font-style: italic;
}

.map-placeholder {
    background-color: var(--bg-light);
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    border: 2px dashed #ddd;
}
.map-placeholder i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--text-main);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo-text {
    color: var(--white);
}

.tagline {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--primary);
    margin: 1rem 0 1.5rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--text-main);
    transform: translateY(-3px);
}

.footer-links h3, .footer-contact h3 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
}
.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    background-color: #222;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
}

.footer-legal-link {
    color: #bbb;
    text-decoration: underline;
    transition: color 0.2s;
}

.footer-legal-link:hover {
    color: #fff;
}

/* ==========================================================================
   Mobile Sticky Booking Button
   ========================================================================== */
.mobile-sticky-booking {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: var(--white);
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Careers Section (Inline)
   ========================================================================== */
.careers-section {
    position: relative;
    background: linear-gradient(135deg, #333333 0%, #1a1a2e 50%, #16213e 100%);
    padding: 80px 0;
    overflow: hidden;
}

.careers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(151, 210, 218, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.careers-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.5;
}

.careers-section-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Column */
.careers-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(151, 210, 218, 0.15);
    border: 1px solid rgba(151, 210, 218, 0.3);
    color: var(--primary);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
}

.careers-section-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.careers-section-subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Perks Row */
.careers-perks-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.careers-perk {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.careers-perk:hover {
    background: rgba(151, 210, 218, 0.12);
    border-color: rgba(151, 210, 218, 0.25);
    transform: translateY(-2px);
}

.careers-perk-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary-light), rgba(151, 210, 218, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.careers-perk span {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Requirements */
.careers-requirements {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.careers-req-heading {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.careers-req-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.careers-req-list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.4;
}

.careers-req-list li i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Right Column - CTA Card */
.careers-cta-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.careers-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(151, 210, 218, 0.18), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: careers-pulse-glow 4s ease-in-out infinite;
}

@keyframes careers-pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.careers-cta-content {
    position: relative;
    z-index: 1;
}

.careers-cta-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    animation: careers-ring-pulse 2s ease-in-out infinite;
}

@keyframes careers-ring-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(151, 210, 218, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(151, 210, 218, 0);
    }
}

.careers-cta-title {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.careers-cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.careers-cta-phone-btn {
    font-size: 1.2rem;
    padding: 0.9rem 2.5rem;
    margin-bottom: 1rem;
    width: 100%;
}

.careers-cta-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    font-style: italic;
    margin: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-overlay {
        background: linear-gradient(to right, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.75) 100%);
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .careers-section-container {
        grid-template-columns: 1fr;
    }
    .careers-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 700px) {
    .services-layout {
        flex-direction: column;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .consultation-bubble {
        width: 100%;
        border-radius: var(--radius-md);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .btn-book-header, .header-phone {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }

    .hero {
        padding-top: 80px;
        box-sizing: border-box;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        margin-top: 2rem;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        margin-top: 2rem;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .section-divider.align-left {
        margin: 1rem auto 1.5rem;
    }
    
    /* Enable mobile sticky booking */
    .mobile-sticky-booking {
        display: block;
    }
    
    /* Add padding to body to prevent content hidden behind sticky footer */
    body {
        padding-bottom: 80px;
    }

    .careers-perks-row {
        grid-template-columns: 1fr;
    }
    .careers-section-title {
        font-size: 1.8rem;
    }
    .careers-cta-card {
        padding: 2rem 1.5rem;
    }
}

/* Appointment Sign Image */
.appointment-sign-wrapper {
    margin: 1.2rem 0 1.5rem;
}

.appointment-sign-img {
    max-width: 280px;
    width: 100%;
    border-radius: var(--radius-lg, 12px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: block;
    border: 1px solid #e8dcc8;
}

/* Blue scissors website icon in footer */
.social-scissors {
    background-color: #1a73e8 !important;
    color: #fff !important;
}
.social-scissors:hover {
    background-color: #1558b0 !important;
    color: #fff !important;
}
.social-scissors i {
    color: #fff !important;
}

/* Responsive map */
@media (max-width: 500px) {
    .contact-map {
        width: 100%;
        height: 320px;
    }
}

/* ── Branded Appointment Sign ── */
.appt-sign {
    background: #ffffff;
    border: 2px solid var(--primary-dark);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem 1.8rem;
    text-align: center;
    max-width: 280px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.appt-sign-top {
    margin-bottom: 0.6rem;
}

.appt-icon {
    font-size: 1.4rem;
    color: var(--primary-dark);
    transform: rotate(-45deg);
    display: inline-block;
}

.appt-line-main {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.1;
    margin-bottom: 0.1rem;
}

.appt-line-script {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

.appt-divider {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.3rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.appt-divider::before,
.appt-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--primary-dark);
    opacity: 0.5;
}

.appt-divider-star {
    color: var(--primary-dark);
    font-size: 1rem;
    margin: 0.4rem 0 0.8rem;
}

.appt-line-walk {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 0.3rem;
}
.appt-line-walk i {
    color: var(--primary-dark);
    margin-right: 0.3rem;
}
.appt-line-walk em {
    font-style: italic;
}

.appt-line-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
}
