/* ========================================
   EVARIS CARE LTD - STYLESHEET
   Color Scheme:
   - Primary Navy: #003c4e
   - Secondary Green: #6f9b59
   - Light Background: #fbfbfb
   - Dark Grey: #545454
======================================== */

/* ========================================
   GLOBAL STYLES & RESET
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #2d5a4d;
    --secondary-green: #7ea876;
    --accent-gold: #d4af7a;
    --light-bg: #f9faf8;
    --cream-bg: #faf9f6;
    --dark-grey: #4a5d52;
    --text-grey: #5d6b63;
    --white: #ffffff;
    --text-dark: #3a4a42;
    --border-color: #e8ede9;
    --shadow-subtle: 0 2px 8px rgba(45, 90, 77, 0.04);
    --shadow: 0 4px 16px rgba(45, 90, 77, 0.08);
    --shadow-hover: 0 8px 24px rgba(45, 90, 77, 0.12);
    --shadow-premium: 0 12px 40px rgba(45, 90, 77, 0.15);
    --border-radius-sm: 12px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-grey);
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    margin: 0;
    padding: 0;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ========================================
   NAVIGATION
======================================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

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

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

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
}

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

.nav-menu li a {
    color: var(--dark-grey);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--secondary-green);
    background-color: #f0f7ed;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #005264 100%);
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 60, 78, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    font-weight: 400 !important;
    line-height: 1.2;
    white-space: nowrap !important;
    overflow: visible !important;
}

.hero-content h1 .bold-text {
    font-weight: 700 !important;
}

.hero-content h1 strong {
    font-weight: 700 !important;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-trust {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-green);
    color: var(--white);
    border-color: var(--secondary-green);
}

.btn-primary:hover {
    background-color: #5a7d47;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(111, 155, 89, 0.25);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-navy);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
    margin-bottom: 3rem;
}

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

.section-header h2 {
    font-size: 2.25rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.underline {
    width: 60px;
    height: 3px;
    background: var(--secondary-green);
    margin: 0.5rem 0;
    border-radius: 2px;
}

.section-header.center .underline {
    margin: 0.5rem auto;
}

/* ========================================
   WELCOME SECTION
======================================== */
.welcome {
    padding: 5rem 0;
    background-color: var(--white);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.welcome-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-grey);
}

.cqc-badge {
    background: linear-gradient(135deg, #f0f7ed 0%, var(--light-bg) 100%);
    padding: 1.5rem;
    border-left: 5px solid var(--secondary-green);
    margin-top: 2rem;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 12px rgba(111, 155, 89, 0.1);
}

.cqc-badge p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-playful);
    transition: all 0.3s ease;
}

.welcome-image img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: var(--shadow-hover);
}

/* ========================================
   FEATURES SECTION
======================================== */
.features {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

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

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 60, 78, 0.12);
    border-color: var(--secondary-green);
}

.feature-icon {
    color: var(--secondary-green);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.feature-card h3 {
    color: var(--primary-navy);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--dark-grey);
    line-height: 1.6;
}

/* ========================================
   CTA SECTION
======================================== */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #005a73 50%, var(--secondary-green) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ========================================
   PAGE HEADER
======================================== */
.page-header {
    position: relative;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #005a73 100%);
    background-image: url('../images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--white);
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 60, 78, 0.85);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ========================================
   ABOUT PAGE STYLES
======================================== */
.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-grey);
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-playful);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.mission-values {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: var(--shadow-hover);
    border-color: #e8f3e3;
}

.value-icon {
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--dark-grey);
    line-height: 1.7;
}

.why-choose {
    padding: 5rem 0;
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    padding: 1.5rem;
    border-left: 5px solid var(--secondary-green);
    background: linear-gradient(135deg, var(--light-bg) 0%, #f9fcf8 100%);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.why-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-playful);
}

.why-item h3 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.why-item p {
    color: var(--dark-grey);
    line-height: 1.7;
}

/* ========================================
   SERVICES PAGE STYLES
======================================== */
.services-intro {
    padding: 5rem 0 3rem;
    background-color: var(--white);
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-grey);
}

.services-list {
    padding: 3rem 0 5rem;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    gap: 3rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 3px solid transparent;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px) scale(1.01);
    border-color: #e8f3e3;
}

.service-image {
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    margin: 1rem;
}

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

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

.service-content {
    padding: 2rem 2rem 2rem 0;
}

.service-content h3 {
    color: var(--primary-navy);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-content > p {
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--dark-grey);
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
}

.how-it-works {
    padding: 5rem 0;
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-green) 0%, #5a7d47 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(111, 155, 89, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 6px 20px rgba(111, 155, 89, 0.4);
}

.step h3 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step p {
    color: var(--dark-grey);
    line-height: 1.6;
}

/* ========================================
   CONTACT PAGE STYLES
======================================== */
.contact-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-grey);
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--light-bg) 0%, #f9fcf8 100%);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--secondary-green);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-playful);
}

.contact-icon {
    color: var(--secondary-green);
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    margin: 0;
    font-size: 1.1rem;
}

.contact-text a {
    color: var(--secondary-green);
    font-weight: 600;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* Large phone number display in call boxes */
.phone-display-large {
    color: #ffffff !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: block !important;
    margin: 1rem 0 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3) !important;
}

.phone-display-large:hover {
    color: #ffffff !important;
    opacity: 0.9;
}

/* Ensure call box phone number is always visible */
a[href^="tel:"] {
    color: inherit !important;
}

.contact-hours {
    display: block;
    font-size: 0.9rem;
    color: var(--dark-grey);
    margin-top: 0.25rem;
    font-style: italic;
}

.emergency-notice {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-navy);
    margin-top: 2rem;
}

.emergency-notice h4 {
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.emergency-notice p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, var(--light-bg) 0%, #f9fcf8 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-playful);
    border: 3px solid #e8f3e3;
}

.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 3px rgba(111, 155, 89, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    color: var(--dark-grey);
    line-height: 1.6;
}

.form-note {
    font-size: 0.9rem;
    color: var(--dark-grey);
    margin-top: 1rem;
    font-style: italic;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background: linear-gradient(135deg, #d4edda 0%, #e8f5e9 100%);
    color: #155724;
    border: 2px solid #c3e6cb;
    box-shadow: 0 4px 12px rgba(21, 87, 36, 0.1);
}

.form-message.error {
    display: block;
    background: linear-gradient(135deg, #f8d7da 0%, #ffebee 100%);
    color: #721c24;
    border: 2px solid #f5c6cb;
    box-shadow: 0 4px 12px rgba(114, 28, 36, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: #e8f3e3;
}

.faq-item h4 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--dark-grey);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background-color: var(--primary-navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.9;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary-green);
    padding-left: 5px;
}

.cqc-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: italic;
}

.cqc-info a {
    color: var(--white);
    text-decoration: underline;
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cqc-info a:hover {
    color: var(--secondary-green);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: var(--secondary-green);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 968px) {
    html, body {
        width: 100vw;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    .container {
        max-width: 100vw;
        width: 100%;
        padding: 0 20px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    section {
        width: 100vw;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

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

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 1.6rem !important;
        white-space: normal !important;
        line-height: 1.3 !important;
        word-wrap: break-word;
    }

    .hero-content p {
        font-size: 0.95rem !important;
        line-height: 1.4;
        white-space: normal !important;
    }

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

    .contact-info {
        display: flex;
        flex-direction: column;
    }

    .contact-info > div[style*="background: linear-gradient"] {
        order: 2;
    }

    .contact-info > p {
        order: 1;
        margin-bottom: 1.5rem;
    }

    .contact-info > .section-header {
        order: 0;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .welcome-image {
        margin-top: 0;
    }

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

    .welcome-text h3 {
        font-size: 1.4rem !important;
    }

    .welcome-text p {
        font-size: 0.95rem !important;
    }

    .welcome-text div[style*="background-color"] {
        padding: 1.5rem !important;
    }

    .welcome-image div[style*="background-color"] {
        padding: 1.25rem !important;
        margin-top: 1.5rem !important;
    }

    .welcome-image div[style*="background-color"] p:nth-child(2) {
        font-size: 1.6rem !important;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-card:nth-child(even) .service-image {
        order: 1;
    }

    .service-card:nth-child(even) .service-content {
        order: 2;
    }

    .service-content {
        padding: 2rem 1.5rem;
    }

    .service-content h3 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }

    .service-content p,
    .service-content ul li {
        font-size: 0.95rem !important;
        line-height: 1.5;
    }

    .page-header h1 {
        font-size: 1.6rem !important;
        white-space: normal !important;
        line-height: 1.3;
    }

    .page-header p {
        font-size: 0.95rem !important;
    }

    .section-header h2 {
        font-size: 1.5rem !important;
        white-space: normal !important;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 0.95rem !important;
    }

    h1, h2, h3, h4, h5, h6 {
        white-space: normal !important;
        word-wrap: break-word;
    }

    p, li, span, div {
        white-space: normal !important;
        word-wrap: break-word;
    }

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

    .tab-navigation {
        flex-direction: column;
        padding: 1rem;
    }

    .tab-btn {
        min-width: 100%;
        font-size: 0.95rem;
    }

    .tab-content-wrapper {
        padding: 1.5rem;
    }

    .tab-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid,
    .values-grid,
    .why-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .feature-card h3,
    .value-card h3,
    .why-card h3 {
        font-size: 1.2rem !important;
    }

    .feature-card p,
    .value-card p,
    .why-card p {
        font-size: 0.9rem !important;
    }

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

    .step h3 {
        font-size: 1.2rem !important;
        min-height: auto;
    }

    .step p {
        font-size: 0.9rem !important;
    }

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

    .category-content h3 {
        font-size: 1.4rem !important;
    }

    .category-content p,
    .category-content ul li {
        font-size: 0.9rem !important;
    }

    .detailed-service-grid {
        grid-template-columns: 1fr;
    }

    .detailed-service-item h4 {
        font-size: 1.15rem !important;
    }

    .detailed-service-item p {
        font-size: 0.9rem !important;
    }

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

    .footer-col h4 {
        font-size: 1.1rem !important;
    }

    .footer-col p,
    .footer-col li {
        font-size: 0.85rem !important;
    }

    .feature-card,
    .value-card,
    .why-card,
    .step,
    .faq-item {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem !important;
    }

    .cta-content h2 {
        font-size: 1.4rem !important;
    }

    .cta-content p {
        font-size: 0.95rem !important;
    }

    /* Our Nature Section - Mobile Fix */
    .our-nature {
        background: var(--primary-navy) !important;
    }

    .our-nature > .container > div {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .our-nature > .container > div > div {
        padding: 2rem 1.5rem !important;
        background-color: transparent !important;
    }

    .our-nature > .container > div > div:first-child {
        background-color: var(--primary-navy) !important;
    }

    .our-nature > .container > div > div:last-child {
        background-color: var(--white) !important;
    }

    .our-nature h2 {
        font-size: 1.6rem !important;
        white-space: normal !important;
    }

    .our-nature h3 {
        font-size: 1.2rem !important;
        white-space: normal !important;
    }

    .our-nature p {
        font-size: 0.95rem !important;
        white-space: normal !important;
    }

    /* Hide decorative butterflies on mobile */
    img[src*="Butterfly Logo"] {
        display: none !important;
    }

    /* Keep stats grid in multiple columns on tablets */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem !important;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    body {
        font-size: 15px;
    }

    .hero {
        height: auto;
        min-height: 350px;
        padding: 2.5rem 0;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.4rem !important;
        white-space: normal !important;
        line-height: 1.3 !important;
        word-wrap: break-word;
    }

    .hero-content p {
        font-size: 0.85rem !important;
        line-height: 1.4;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.85rem 1.5rem;
    }

    .page-header {
        padding: 2.5rem 0;
    }

    .page-header h1 {
        font-size: 1.4rem !important;
        white-space: normal !important;
        line-height: 1.3;
    }

    .page-header p {
        font-size: 0.85rem !important;
    }

    .section-header h2 {
        font-size: 1.3rem !important;
        white-space: normal !important;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 0.85rem !important;
    }

    .cta-content h2 {
        font-size: 1.3rem !important;
    }

    .cta-content p {
        font-size: 0.85rem !important;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .category-content,
    .service-content,
    .feature-card,
    .value-card {
        padding: 1.25rem !important;
    }

    .category-content h3,
    .service-content h3 {
        font-size: 1.25rem !important;
    }

    .feature-card h3,
    .value-card h3,
    .why-card h3,
    .step h3 {
        font-size: 1.1rem !important;
    }

    .feature-card p,
    .value-card p,
    .why-card p,
    .step p {
        font-size: 0.85rem !important;
    }

    .detailed-service-item {
        padding: 1.25rem !important;
    }

    .detailed-service-item h4 {
        font-size: 1.05rem !important;
    }

    .detailed-service-item p {
        font-size: 0.85rem !important;
    }

    .footer-col h4 {
        font-size: 1rem !important;
    }

    .footer-col p,
    .footer-col li {
        font-size: 0.8rem !important;
    }

    .logo-img {
        height: 40px;
    }

    input, textarea, select {
        font-size: 15px !important;
    }

    label {
        font-size: 0.9rem !important;
    }

    /* Stack stats grid on small mobile */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .stat-number {
        font-size: 2.5rem !important;
    }

    .stat-card p {
        font-size: 0.9rem !important;
    }

    /* Our Nature Section - Smaller Mobile */
    .our-nature h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
    }

    .our-nature h3 {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
    }

    .our-nature p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    .our-nature > .container > div > div {
        padding: 1.5rem !important;
    }
}
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .category-content,
    .service-content,
    .feature-card,
    .value-card {
        padding: 1.5rem !important;
    }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pt-3 { padding-top: 3rem; }

.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-3 { padding-bottom: 3rem; }

/* ========================================
   ENHANCED VISUAL ELEMENTS
======================================== */

/* Add subtle animation to cards */
.feature-card,
.value-card,
.service-card,
.why-item,
.benefit-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover) !important;
    border-color: #e8f3e3 !important;
}

/* Service overview cards - clickable quick links */
[onclick*="scrollIntoView"] {
    cursor: pointer;
}

[onclick*="scrollIntoView"]:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-hover) !important;
    border-color: var(--secondary-green) !important;
    background: linear-gradient(135deg, #f9fcf8 0%, var(--white) 100%) !important;
}

[onclick*="scrollIntoView"]:active {
    transform: translateY(-4px) scale(1.01);
}

/* Service Category Cards (Premium Luxury Style) */
.services-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-category-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(197, 169, 97, 0.15);
    position: relative;
}

.service-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--secondary-green) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-category-card:hover::before {
    opacity: 1;
}

.service-category-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(197, 169, 97, 0.3);
}

.category-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.category-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 58, 82, 0.02) 100%);
    pointer-events: none;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-content h3 {
    color: var(--primary-navy);
    font-size: 1.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.category-content > p {
    color: var(--text-grey);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.category-links {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.category-links li {
    padding: 0.65rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.category-links li:last-child {
    border-bottom: none;
}

.category-links a {
    color: var(--primary-navy);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.category-links a:before {
    content: "→";
    margin-right: 0.6rem;
    color: var(--secondary-green);
    font-weight: 700;
    transition: margin-right 0.2s ease;
}

.category-links a:hover {
    color: var(--secondary-green);
    padding-left: 4px;
}

.category-links a:hover:before {
    margin-right: 0.8rem;
}

/* Detailed Services Grid */
.detailed-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.detailed-service-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.detailed-service-item:hover {
    border-color: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(111, 155, 89, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f0f7ed 0%, var(--light-bg) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    stroke: var(--secondary-green);
}

.detailed-service-item h4 {
    color: var(--primary-navy);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.detailed-service-item p {
    color: var(--dark-grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .category-image {
        height: 220px;
    }

    .category-content {
        padding: 2rem 1.5rem;
    }

    .category-content h3 {
        font-size: 1.5rem;
    }

    .detailed-service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .hero-content h1 {
        font-size: 2rem;
        white-space: nowrap;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .section-header h2 {
        font-size: 1.85rem;
    }
}

/* Make section headers more prominent */
.section-header h2 {
    position: relative;
    display: inline-block;
}

/* Add warmth to images */
.welcome-image img,
.about-image img,
.service-image img {
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 60, 78, 0.15);
}

/* Service cards alternate layout for visual interest */
.service-card:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.service-card:nth-child(even) .service-image {
    order: 2;
}

.service-card:nth-child(even) .service-content {
    order: 1;
    padding: 2rem 0 2rem 2rem;
}

/* Add icons/emojis support */
.intro-text em {
    color: var(--secondary-green);
    font-style: normal;
    font-weight: 600;
}

/* Make CTA sections more inviting */
.cta {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #004d5f 50%, #005a73 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(111, 155, 89, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(111, 155, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

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

/* Floating Call Button */
.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(111, 155, 89, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(111, 155, 89, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(111, 155, 89, 0.7), 0 0 0 10px rgba(111, 155, 89, 0.1);
    }
}

@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 80px;
    }
}

/* ========================================
   PREMIUM LUXURY ENHANCEMENTS
======================================== */

/* Enhanced detailed service items */
.detailed-service-item {
    box-shadow: var(--shadow-subtle) !important;
    border: 1px solid rgba(197, 169, 97, 0.12) !important;
    padding: 2.5rem 2rem !important;
    border-radius: var(--border-radius-md) !important;
    transition: var(--transition-smooth) !important;
    position: relative;
    overflow: hidden;
}

.detailed-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--secondary-green));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.detailed-service-item:hover::before {
    transform: scaleX(1);
}

.detailed-service-item:hover {
    border-color: rgba(197, 169, 97, 0.3) !important;
    transform: translateY(-6px) !important;
    box-shadow: var(--shadow-hover) !important;
}

.detailed-service-item h4 {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 0.75rem !important;
}

.detailed-service-item p {
    font-size: 1rem !important;
    color: var(--text-grey) !important;
    line-height: 1.65 !important;
}

.service-icon {
    background: linear-gradient(135deg, rgba(111, 155, 89, 0.08) 0%, rgba(201, 169, 97, 0.06) 100%) !important;
    width: 75px !important;
    height: 75px !important;
    margin-bottom: 1.5rem !important;
}

.detailed-service-grid {
    gap: 2.5rem !important;
}

/* Enhanced category content */
.category-content {
    padding: 3rem 2.5rem !important;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%) !important;
}

/* ========================================
   TAWK.TO CHAT WIDGET FIX
======================================== */
/* Ensure Tawk chat widget stays fixed and doesn't move with console */
#tawk-bubble-container,
iframe[title*="chat"],
.tawk-chat-panel {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
}

/* Keep widget button fixed */
.tawk-min-container {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
}
