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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

:root {
    --primary-gold: #C9A961;
    --accent-gold: #D4B896;
    --soft-blue: #A8C9DC;
    --light-blue: #D4E4ED;
    --cream: #F5F1E8;
    --dark-text: #2C3E50;
}

nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-text);
    text-decoration: none;
}

.logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
    background: white;
}

.logo-circle img {
    width: 150%;
    height: 150%;
    object-fit: cover;
}

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

.nav-links a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.hero {
    /* background: linear-gradient(135deg, var(--light-blue), var(--cream));
    background-image: url('/assets/How-to-Transition-a-Loved-One-to-Receiving-Home-Care-Services-2000x1200.jpg');
    background-position: 50% 5%; */
    padding: 5rem 2rem;
    position: relative;
    text-align: center;
}

.hero-bkgrnd {
    background: linear-gradient(135deg, var(--light-blue), var(--cream));
    background-image: url('/assets/How-to-Transition-a-Loved-One-to-Receiving-Home-Care-Services-2000x1200.jpg');
    background-position: 50% 5%;
    background-size: cover;
    bottom: 0;
    height: 100%;
    left: 0;
    max-height: 100%;
    max-width: 100%;
    opacity: 0.4;
    padding: 5rem 2rem;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: -1;
}

.hero-container {
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 2rem;
}

.tagline {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-style: italic;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(201, 169, 97, 0.3);
}

.cta-button:hover {
    background: #B8925C;
    transform: translateY(-2px);
}

.services-section {
    padding: 4rem 2rem;
    background: white;
}

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

.section-title {
    font-size: 2.8rem;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.service-card {
    background: linear-gradient(135deg, var(--light-blue), white);
    border: 2px solid var(--soft-blue);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.8rem;
}

.service-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-details {
    background: white;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-gold);
    margin-top: 1rem;
    border-radius: 0.3rem;
    color: #555;
    line-height: 1.8;
}

.about-section {
    padding: 4rem 2rem;
    background: var(--light-blue);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.about-check {
    color: var(--primary-gold);
    font-size: 2rem;
    flex-shrink: 0;
}

.about-item h4 {
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.about-item p {
    color: #666;
    line-height: 1.8;
}

.about-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.about-card .emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-section {
    padding: 4rem 2rem;
    background: white;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.8rem;
    text-align: center;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-info-item .icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.contact-info-item h4 {
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-form {
    background: var(--light-blue);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 2px solid var(--soft-blue);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #ccc;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 8px rgba(201, 169, 97, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    background: var(--primary-gold);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 4px 8px rgba(201, 169, 97, 0.3);
}

.submit-btn:hover {
    background: #B8925C;
    transform: translateY(-2px);
}

footer {
    background: linear-gradient(135deg, var(--dark-text), #1a1a1a);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.footer-tagline {
    color: var(--primary-gold);
    font-style: italic;
    font-weight: 600;
    margin-top: 1rem;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    /* .nav-links {
        display: none;
    } */
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}

.nav-links a.active {
    color: var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
}
/* Blog Styles */
.blog-section {
    padding: 4rem 2rem;
    background: white;
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border: 2px solid var(--soft-blue);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.blog-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.blog-card-title a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--primary-gold);
}

.blog-card-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-card-meta span {
    margin: 0 0.5rem;
}

.blog-card-meta span:first-child {
    margin-left: 0;
}

.blog-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-read-more {
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-read-more:hover {
    color: #B8925C;
}

/* Blog Post Detail */
.blog-post-detail {
    padding: 4rem 2rem;
    background: white;
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-title {
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.blog-post-meta {
    color: #888;
    font-size: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--soft-blue);
}

.blog-post-meta span {
    margin: 0 0.5rem;
}

.blog-post-meta span:first-child {
    margin-left: 0;
}

.blog-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.blog-post-content h2 {
    color: var(--dark-text);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.blog-post-content h3 {
    color: var(--dark-text);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.4rem;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-content ul, .blog-post-content ol {
    margin: 1rem 0 1.5rem 2rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--primary-gold);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 102px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        padding: 0 0 2rem;
        z-index: 100;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        text-align: left;
    }
    
    .nav-links a.active {
        background: var(--light-blue);
        border-left: 4px solid var(--primary-gold);
    }
}
