/* CSS Variables for Color Scheme */
:root {
    --light-green: #FFB74D; /* light/deep orange tint */
    --grass-green: #E65100; /* deep orange */
    --gold: #FFD700;
    --dark-gold: #B8860B;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --black: #000000;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mouse Light Effect */
.mouse-light {
    position: fixed;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 183, 77, 0.5) 0%, rgba(230, 81, 0, 0.25) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    opacity: 0;
    box-shadow: 0 0 30px rgba(230, 81, 0, 0.35);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--grass-green);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--grass-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--grass-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://cdn.prod.website-files.com/63ea1ff57d9ea36151270d3b/63ed1a2d744efa12efbcedf4_pexels-pavel-danilyuk-7317754-p-1600.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: slideInDown 1.2s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInUp 1.4s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1.6s ease-out;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-gray);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--grass-green);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--grass-green);
    border: 2px solid var(--grass-green);
}

.btn-outline:hover {
    background: var(--grass-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--grass-green);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(144, 238, 144, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--grass-green);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--grass-green);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: url('https://cdn.prod.website-files.com/63ea1ff57d9ea36151270d3b/63ed1f7b9cbb5f013096fb0f_adrianna-geo-JWlZS708L1Y-unsplash-p-800.webp');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Info */
.contact-info {
    padding: 80px 0;
    background: var(--light-gray);
    color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

/* Make the title clear and readable */
.contact-info h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--grass-green);
    text-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
}

/* Decorative orange blobs with subtle crack texture */
.contact-info::before,
.contact-info::after {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    /* Layer 1: glowing blob; Layer 2: crack-like thin lines */
    background:
        radial-gradient(circle at 50% 50%, rgba(230,81,0,0.35) 0%, rgba(230,81,0,0.18) 45%, rgba(230,81,0,0) 70%),
        repeating-linear-gradient(45deg, rgba(230,81,0,0.10) 0 2px, transparent 2px 16px);
    background-blend-mode: screen;
    filter: blur(2px);
    opacity: 1;
    z-index: 0;
}

.contact-info::before {
    top: -180px;
    left: -180px;
}

.contact-info::after {
    bottom: -200px;
    right: -200px;
}

/* Keep contact content above blobs */
.contact-info .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(34,139,34,0.10);
    transition: box-shadow 0.3s, transform 0.3s;
    min-height: 180px;
    width: 100%;
    max-width: 350px;
}

.contact-item:hover {
    box-shadow: 0 16px 48px rgba(34,139,34,0.16);
    transform: translateY(-4px) scale(1.02);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 1.7rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255,215,0,0.10);
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--grass-green);
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--dark-gray);
    font-size: 1rem;
    margin-bottom: 0;
    word-break: break-word;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        background-attachment: scroll;
    }

    .services-hero {
        background-attachment: scroll;
    }

    .services-hero-content h1 {
        font-size: 2.5rem;
    }

    .services-hero-content p {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-placeholder {
        width: 100%;
        height: 300px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--light-green), var(--grass-green));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Services Page Hero */
.services-hero {
    height: 100vh;
    background: url('https://aubreykirkhamfuneraldirector.co.uk/wp-content/uploads/2022/05/family-visiting-grave-loved-one-1024x683.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.services-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: slideInDown 1.2s ease-out;
}

.services-hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInUp 1.4s ease-out;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.service-card.detailed {
    text-align: left;
    padding: 2.5rem;
}

.service-card.detailed .service-image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card.detailed .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card.detailed:hover .service-image {
    transform: scale(1.02);
}

.service-card.detailed:hover .service-image img {
    transform: scale(1.05);
}

.service-card.detailed ul {
    list-style: none;
    margin: 1rem 0;
}

.service-card.detailed ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card.detailed ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--grass-green);
    font-weight: bold;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.feature {
    background: var(--light-green);
    color: var(--grass-green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #e0e0e0; /* deeper grey card background */
    border: 2px solid var(--light-green);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    background: #d9d9d9; /* slightly deeper for featured */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--grass-green);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features i {
    color: var(--grass-green);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--grass-green), var(--light-green));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Story */
.about-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--grass-green);
    margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.image-placeholder.large {
    width: 400px;
    height: 400px;
    font-size: 5rem;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
    background: var(--light-gray);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-green), var(--grass-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.mission-card h3 {
    color: var(--grass-green);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.mission-card ul {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.mission-card ul li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.mission-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--grass-green);
    font-weight: bold;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    opacity: 0.8;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--grass-green);
    box-shadow: 0 6px 18px rgba(230, 81, 0, 0.08);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(230, 81, 0, 0.18);
    border-color: var(--light-green);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    box-shadow: 0 0 0 4px var(--light-green), 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.member-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.member-photo:hover img {
    transform: scale(1.1);
}

.team-member h3 {
    color: var(--grass-green);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

/* Statistics */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--grass-green), var(--light-green));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--light-green);
    font-family: 'Playfair Display', serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: var(--dark-gray);
}

.testimonial-author h4 {
    color: var(--grass-green);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--dark-gray);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Contact Details */
.contact-details {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-card h3 {
    color: var(--grass-green);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--grass-green);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--gold);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--grass-green);
    margin-bottom: 1rem;
}

.contact-form-container p {
    margin-bottom: 2rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--grass-green);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--light-green);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--grass-green);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Map Container */
.map-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--grass-green);
    margin-bottom: 1rem;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--light-green), var(--grass-green));
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.map-info h3 {
    color: var(--grass-green);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.map-info ul {
    list-style: none;
}

.map-info ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-info ul li i {
    color: var(--grass-green);
    width: 20px;
}

/* Emergency Section */
.emergency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--grass-green), var(--light-green));
    color: var(--white);
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: center;
    justify-content: center;
}

.emergency-icon {
    font-size: 4rem;
    color: var(--gold);
}

.emergency-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.emergency-phone {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-gray);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1rem 0;
    transition: all 0.3s ease;
}

.emergency-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.emergency-note {
    opacity: 0.9;
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-green);
}

.faq-question h3 {
    color: var(--grass-green);
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.faq-question i {
    color: var(--grass-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
} 

.services-large {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: flex-start;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.service-large {
	flex: 1 1 350px;
	max-width: 500px;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: none;
	box-shadow: none;
	border-radius: 0;
	padding: 0;
	text-align: center;
}

.service-large img {
	width: 100%;
	max-width: 500px;
	height: 320px;
	object-fit: cover;
	border-radius: 18px;
	margin-bottom: 1.5rem;
	box-shadow: 0 8px 32px rgba(34,139,34,0.10);
	transition: transform 0.3s;
}

@media (max-width: 1100px) {
	.service-large {
		max-width: 90vw;
	}
	.service-large img {
		height: 220px;
	}
} 

.benefits-section {
	padding: 80px 0;
	background: var(--light-gray);
	color: var(--dark-gray);
}

.benefits-section .section-title {
	color: var(--grass-green);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

.benefit-item {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(34,139,34,0.08);
    padding: 2rem 1.5rem 2.5rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-item:hover {
    box-shadow: 0 16px 48px rgba(34,139,34,0.16);
    transform: translateY(-6px) scale(1.03);
}

.benefit-image {
    width: 100%;
    max-width: 320px;
    height: 180px;
    margin-bottom: 1.2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(34,139,34,0.10);
}

.benefit-image img {
    width: 100%;
    height: auto;
    max-height: 1200px; /* 2x larger */
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.benefit-item:hover .benefit-image img {
    transform: scale(1.05);
}

.benefit-item h3 {
    color: var(--grass-green);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    margin-top: 0;
}

.benefit-item p {
    color: var(--dark-gray);
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    .benefit-image img {
        max-height: 600px; /* larger on mobile too */
    }
} 

.benefits-3d-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-3d-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.benefit-3d-image {
    width: 100%;
    height: 340px;
    max-width: 520px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(230, 81, 0, 0.25), 0 2px 16px rgba(0,0,0,0.10);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    display: flex;
    align-items: flex-end;
}

.benefit-3d-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.3s;
    box-shadow: none;
}

.benefit-3d-image:hover {
    transform: scale(1.04) rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 32px 64px rgba(34,139,34,0.22), 0 4px 24px rgba(0,0,0,0.13);
}

.benefit-3d-image:hover img {
    transform: scale(1.07);
}

.benefit-3d-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(230,81,0,0.92) 0%, rgba(230,81,0,0.65) 60%, rgba(230,81,0,0.0) 100%);
    color: #fff;
    padding: 2.2rem 1.5rem 1.2rem 1.5rem;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    text-align: left;
    z-index: 2;
    transition: background 0.3s;
}

.benefit-3d-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    text-shadow: 1px 1px 8px rgba(0,0,0,0.18);
}

.benefit-3d-overlay p {
    margin: 0;
    font-size: 1.08rem;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.13);
}

@media (max-width: 900px) {
    .benefits-3d-grid {
        grid-template-columns: 1fr 1fr;
    }
    .benefit-3d-image {
        height: 220px;
        max-width: 95vw;
    }
}
@media (max-width: 600px) {
    .benefits-3d-grid {
        grid-template-columns: 1fr;
    }
    .benefit-3d-image {
        height: 180px;
        max-width: 98vw;
    }
    .benefit-3d-overlay {
        padding: 1.2rem 0.7rem 0.7rem 0.7rem;
    }
} 

.about-hero {
    height: 100vh;
    width: 100vw;
    background: url('https://www.funeralbasics.org/wp-content/uploads/2016/07/shutterstock_1507022456-min.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
    margin-top: 70px; /* offset for navbar */
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease-out;
}

.about-hero::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.45);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	background: rgba(0,0,0,0.35);
	padding: 16px 24px;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.hero-title {
	color: #fff;
	text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

.hero-subtitle {
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.about-hero-content,
.services-hero-content,
.contact-hero-content {
	position: relative;
	z-index: 2;
	background: rgba(0,0,0,0.35);
	padding: 16px 24px;
	border-radius: 12px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
	color: #fff;
	text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

.about-hero-content p,
.services-hero-content p,
.contact-hero-content p {
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .about-hero,
    .services-hero,
    .contact-hero {
        min-height: 60vh;
        padding: 80px 16px 40px; /* leave room for navbar and text */
        background-position: center;
        background-size: cover;
    }
    .about-hero-content,
    .services-hero-content,
    .contact-hero-content {
        width: 92%;
        margin: 0 auto;
        padding: 12px 16px;
    }
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    .about-hero-content p {
        font-size: 1rem;
    }
} 

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.fab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.fab-btn:hover::before {
    left: 100%;
}

.fab-btn.whatsapp {
    background: #25D366;
}

.fab-btn.whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.fab-btn.phone {
    background: var(--grass-green);
}

.fab-btn.phone:hover {
    background: #1a5f1a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 15px;
        right: 15px;
    }
    
    .fab-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
} 

/* Contact Hero */
.contact-hero {
    height: 100vh;
    width: 100vw;
    background: url('https://media2.vault.com/16366/woman_phone_h.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--white);
    margin-top: 70px; /* offset for navbar */
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease-out;
}

.contact-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    animation: slideInDown 1.2s ease-out;
}

.contact-hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: slideInUp 1.4s ease-out;
}

@media (max-width: 768px) {
    .contact-hero {
        height: 60vh;
        min-height: 350px;
        padding: 60px 10px 30px 10px;
    }
    .contact-hero-content h1 {
        font-size: 2.2rem;
    }
    .contact-hero-content p {
        font-size: 1rem;
    }
} 

.special-benefit {
	padding: 80px 0;
	background: var(--light-gray);
}

.benefit-wrapper {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 2.5rem;
	align-items: center;
}

.benefit-image img {
	width: 100%;
	height: auto;
	max-height: 560px; /* increased size */
	object-fit: contain; /* show full image without cropping */
	display: block;
	margin: 0 auto;
	border-radius: 0; /* remove card feel */
	box-shadow: none; /* remove card feel */
}

.benefit-content .section-title {
	margin-bottom: 1rem;
}

.orange-bullets {
	list-style: none;
	padding-left: 0;
}

.orange-bullets li {
	position: relative;
	padding-left: 32px;
	margin: 12px 0;
}

.orange-bullets li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--grass-green);
	box-shadow: 0 0 0 4px rgba(230,81,0,0.15);
}

@media (max-width: 900px) {
	.benefit-wrapper {
		grid-template-columns: 1fr;
	}
	.benefit-image img {
		max-height: 360px; /* larger on mobile too */
	}
} 

/* Prevent layout clipping on mobile only */
@media (max-width: 768px) {
	html, body { width: 100%; overflow-x: hidden; }
}

/* Remove broad overrides that could affect desktop */
/* (deleted) section, .container { max-width: 100vw; overflow-y: visible; } */

/* Global responsive tweaks */
@media (max-width: 768px) {
	.container { padding: 0 16px; }
	.section-title { font-size: 1.8rem; }
	.hero { min-height: 70vh; }
	.hero-content { width: 92%; margin: 0 auto; padding: 12px 16px; }
	.hero-title { font-size: 2.1rem; line-height: 1.2; }
	.hero-subtitle { font-size: 1rem; }
	
	/* Collapse grids to single column */
	.about-content,
	.story-content,
	.benefit-wrapper,
	.services-grid,
	.pricing-grid,
	.benefits-3d-grid,
	.contact-grid,
	.footer-content { grid-template-columns: 1fr !important; gap: 1.25rem; }
	
	/* Ensure cards and blocks have breathing room */
	.service-card,
	.pricing-card,
	.team-member,
	.contact-card { margin: 0 auto; width: 100%; }
	
	/* Buttons and CTA */
	.cta-buttons { flex-direction: column; gap: 0.75rem; }
	.btn { padding: 10px 22px; }
	
	/* Large media elements */
	.benefit-image img { max-height: 420px; }
	.image-placeholder.large { width: 100% !important; height: 260px !important; }
}

@media (max-width: 480px) {
	.hero-title { font-size: 1.8rem; }
	.section-title { font-size: 1.6rem; }
	.navbar { padding: 0.6rem 0; }
} 

/* Floating buttons mobile tuning */
@media (max-width: 768px) {
	.fab-container { bottom: 12px; right: 12px; gap: 8px; }
	.fab-btn { width: 48px; height: 48px; font-size: 18px; }
}

/* Card/content paddings for phone readability */
@media (max-width: 768px) {
	.service-card,
	.pricing-card,
	.mission-card,
	.contact-card,
	.team-member { padding: 1.25rem; }
	.about-text, .story-text { padding: 0; }
}

/* Ensure mission/values grid collapses and centers */
@media (max-width: 768px) {
	.mission-grid { grid-template-columns: 1fr !important; gap: 1rem; }
	.mission-card { width: 100%; margin: 0 auto; }
}

/* Consistent section spacing on mobile */
@media (max-width: 768px) {
	.services-preview,
	.about-preview,
	.benefits-section,
	.special-benefit,
	.services-section,
	.pricing-section,
	.contact-info,
	.team-section,
	.mission-values { padding: 56px 0; }
} 

@media (max-width: 768px) {
	/* Our Team */
	.team-grid { grid-template-columns: 1fr !important; gap: 1.25rem; }
	.team-member { width: 100%; margin: 0 auto; padding: 1.25rem; }
	.member-photo { width: 96px; height: 96px; }

	/* What Families Say */
	.testimonials-grid { grid-template-columns: 1fr !important; gap: 1.25rem; }
	.testimonial-card { width: 100%; margin: 0 auto; padding: 1.25rem; }
} 