/* ========================================
   CSS RESET & BASE STYLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #C6A247;
    --charcoal: #4A4A4A;
    --cream: #F5F3EE;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-light: #F8F8F8;
    --gray-medium: #666666;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--charcoal);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

.text-large {
    font-size: 1.25rem;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

/* ========================================
   LAYOUT UTILITIES
======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-cream {
    background-color: var(--cream);
}

/* ========================================
   HEADER & NAVIGATION
======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}




.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
}

.logo-text-sub {
    font-family: 'Playfair Display', serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-medium);
    line-height: 1.2;
}





.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--charcoal);
    transition: var(--transition);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #B89237;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--charcoal);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #3A3A3A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-secondary-outline:hover {
    background-color: var(--charcoal);
    color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, #E8E4DA 100%);
    background-image: url('../images/hero-home-care.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 88px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(198, 162, 71, 0.85) 0%, rgba(74, 74, 74, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   PAGE HERO
======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--cream) 0%, #E8E4DA 100%);
    padding: 140px 0 80px;
    margin-top: 88px;
}

.page-hero-content {
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray-medium);
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-medium);
    max-width: 700px;
    margin: 0 auto;
}

.section-intro {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: var(--gray-medium);
}

/* ========================================
   CARDS & GRIDS
======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), #D4B562);
    border-radius: 50%;
    color: var(--white);
}



.who-we-serve .card-icon {
    width: 120px;
    height: 120px;
    background: transparent;
    overflow: hidden;
}

.who-we-serve .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}







.card-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card-text {
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 3px solid var(--gold);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--black);
}

.service-card-text {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* Highlight Cards */
.highlight-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: left;
}

.highlight-card:hover {
    box-shadow: var(--shadow-md);
}

.highlight-number {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.highlight-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.highlight-text {
    color: var(--gray-medium);
}

/* ========================================
   TWO COLUMN LAYOUT
======================================== */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.column-content {
    padding-right: 20px;
}

.column-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Feature List */
.feature-list {
    margin: 32px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-medium);
}

.feature-list svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 4px;
}

/* ========================================
   SERVICE DETAIL CARDS
======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-detail-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), #D4B562);
    border-radius: 12px;
    color: var(--white);
    margin-bottom: 24px;
}

.service-detail-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.service-detail-text {
    color: var(--gray-medium);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-features {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--charcoal);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.service-features li::before {
    content: "✓";
    color: var(--gold);
    font-weight: bold;
    font-size: 1.125rem;
}

/* ========================================
   FORMS
======================================== */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 40px;
}

.form-section-title {
    font-size: 1.5rem;
    margin: 32px 0 24px;
    color: var(--black);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(198, 162, 71, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 400;
    color: var(--charcoal);
}

.checkbox-label input,
.radio-label input {
    width: auto;
    cursor: pointer;
    accent-color: var(--gold);
}

.consent-checkbox {
    margin-top: 16px;
    align-items: flex-start;
}

.consent-checkbox input {
    margin-top: 4px;
}

.form-actions {
    margin-top: 32px;
    text-align: center;
}

/* ========================================
   CTA SECTIONS
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, #B89237 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--gold);
}

.cta-section .btn-primary:hover {
    background-color: var(--cream);
}

.cta-section .btn-secondary-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-secondary-outline:hover {
    background-color: var(--white);
    color: var(--gold);
}

/* ========================================
   ABOUT PAGE STYLES
======================================== */
.value-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.value-text {
    color: var(--gray-medium);
    line-height: 1.7;
}

/* Approach Section */
.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.approach-item:last-child {
    border-bottom: none;
}

.approach-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), #D4B562);
    color: var(--white);
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    border-radius: 50%;
}

.approach-text h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.approach-text p {
    color: var(--gray-medium);
    line-height: 1.8;
}

/* Team Stats */
.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray-medium);
    font-size: 1rem;
}

/* Commitment Section */
.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.commitment-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.commitment-item span {
    font-weight: 500;
    color: var(--charcoal);
}

/* ========================================
   CONTACT PAGE STYLES
======================================== */
.contact-info-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.contact-info-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), #D4B562);
    border-radius: 50%;
    color: var(--white);
}

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-info-text {
    font-size: 1.125rem;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-info-detail {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* Map Section */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
    background-color: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.footer-text {
    line-height: 1.7;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in.visible {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .column-content {
        padding-right: 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text-main {
        font-size: 1rem;
    }
    
    .logo-text-sub {
        font-size: 0.75rem;
    }
}




@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .hero {
        margin-top: 72px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .page-hero {
        padding: 100px 0 60px;
        margin-top: 72px;
    }

    .page-title {
        font-size: 2.25rem;
    }

    .section {
        padding: 60px 0;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background-color: var(--white);
        flex-direction: column;
        gap: 32px;
        padding: 40px 24px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .main-nav.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-cta {
        flex-direction: column;
        width: 100%;
    }

    .nav-cta .btn {
        width: 100%;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .cards-grid,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 32px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .approach-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-stats {
        grid-template-columns: 1fr 1fr;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .team-stats {
        grid-template-columns: 1fr;
    }
}