/* Reset and Base Styles */
@font-face {
    font-family: 'ArimaKoshi';
    src: url('Fonts/ArimaKoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'ArimaKoshi';
    src: url('Fonts/ArimaKoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'ArimaKoshi';
    src: url('Fonts/ArimaKoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Quicksand';
    src: url('Fonts/Quicksand-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Quicksand';
    src: url('Fonts/Quicksand-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('Fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('Fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('Fonts/Poppins-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'BadScript';
    src: url('Fonts/BadScript-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Official Brand Colors from MMH Brand Guidelines */
    --primary-color: #23423D;      /* Primary - Deep Forest Green */
    --secondary-color: #54704F;    /* Secondary - Sage Green */
    --accent-color: #EDAB29;       /* Accent - Warm Gold */
    --additional-color: #BB6C29;   /* Additional - Terra Cotta */
    --bg-light: #F8F2E5;           /* Background - Warm Cream */
    --text-dark: #23423D;          /* Using primary for dark text */
    --text-light: #54704F;         /* Using secondary for light text */
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(35, 66, 61, 0.15);
    --shadow-hover: 0 8px 30px rgba(35, 66, 61, 0.25);
}

body {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADINGS - Arima Koshi Medium; Sentence Case */
h1, h2, h3, h4, h5, h6 {
    font-family: 'ArimaKoshi', serif;
    font-weight: 500;
    text-transform: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SUBHEADINGS - Poppins Medium; All Caps */
.subheading {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* HIGHLIGHTS - Bad Script Regular; Sentence Case */
.highlight {
    font-family: 'BadScript', cursive;
    font-weight: 400;
    text-transform: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--accent-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Header Icons */
.header-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header-icon {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.8;
    text-decoration: none;
}

.header-icon:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-2px);
}

.header-icon svg {
    width: 100%;
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(35, 66, 61, 0.85) 0%, rgba(237, 171, 41, 0.75) 100%),
                url('https://images.unsplash.com/photo-1484154218962-a197022b5858?w=1600&q=80') center/cover;
    background-attachment: fixed;
    margin-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-quote {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'BadScript', cursive;
    text-transform: none;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(237, 171, 41, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--additional-color);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(187, 108, 41, 0.4);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section:nth-child(even) {
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    font-family: 'ArimaKoshi', serif;
    font-weight: 500;
    text-transform: none;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--additional-color));
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 400;
    font-style: normal;
    font-family: 'BadScript', cursive;
    font-size: 1.2rem;
    text-transform: none;
}

/* Story Section */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.image-placeholder {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.9rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.05);
}

.image-placeholder:first-child {
    background-image: url('https://images.unsplash.com/photo-1556911220-bff31c812dba?w=800&q=80');
}

.image-placeholder:last-child {
    background-image: url('https://images.unsplash.com/photo-1595428774223-ef52624120d2?w=800&q=80');
}

.placeholder-text {
    text-align: center;
    padding: 20px;
}

/* Founders Section */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.founder-card {
    text-align: left;
    padding: 0;
    background: var(--background-color);
    border-radius: 25px;
    box-shadow: 0 5px 30px rgba(35, 66, 61, 0.08);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
}

.founder-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.founder-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        rgba(248, 242, 229, 0) 0%,
        rgba(248, 242, 229, 0.3) 30%,
        rgba(248, 242, 229, 0.7) 50%,
        rgba(248, 242, 229, 0.95) 70%,
        rgba(248, 242, 229, 1) 85%,
        rgba(248, 242, 229, 1) 100%);
}

.founder-content {
    position: relative;
    z-index: 2;
    padding: 3.5rem 4rem;
    margin-left: 50%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-content h3 {
    color: var(--primary-color);
    text-shadow: none;
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: left;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(35, 66, 61, 0.15);
}

.founder-image {
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    padding: 15px;
    background: linear-gradient(135deg, var(--background-color), var(--white));
    border-radius: 25px;
}

.founder-image::after {
    display: none;
}

.founder-photo {
    width: 260px;
    height: 300px;
    margin: 0 auto;
    border-radius: 15px;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 35px rgba(35, 66, 61, 0.2);
    border: none;
    transition: all 0.3s ease;
}

.founder-photo:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 45px rgba(35, 66, 61, 0.3);
}

.placeholder-avatar {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(35, 66, 61, 0.3);
    border: 5px solid var(--white);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.founder-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'ArimaKoshi', serif;
    font-weight: 500;
    text-transform: none;
}

.founder-card p.cert-simple {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--accent-color);
    text-align: left !important;
    margin: 0.5rem 0 2rem 0;
    letter-spacing: 0.5px;
    text-shadow: none;
    background: rgba(237, 171, 41, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(237, 171, 41, 0.3);
}

.certificate-image {
    margin-top: 2rem;
    text-align: center;
}

.cert-full-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(35, 66, 61, 0.2);
}

.founder-card p {
    color: var(--text-light);
    line-height: 1.7;
    text-align: left;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: transparent;
    height: 350px;
    cursor: pointer;
    border: none;
    padding: 0;
    position: relative;
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-card-front,
.service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow);
    border: 2px solid var(--bg-light);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-card-front {
    background: var(--white);
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.service-card:hover .service-card-front,
.service-card.flipped .service-card-front {
    border-color: var(--accent-color);
}

.service-card-back {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--additional-color) 100%);
    color: var(--white);
    opacity: 0;
    transform: scale(0.95);
    z-index: 1;
    justify-content: center;
    align-items: center;
    padding: 3rem;
}

.service-card.flipped .service-card-front {
    opacity: 0;
    transform: scale(0.95);
    z-index: 1;
}

.service-card.flipped .service-card-back {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.service-card-back p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
}



.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--secondary-color);
    transition: stroke 0.3s ease;
}

.service-card:hover .service-icon svg {
    stroke: var(--accent-color);
    transform: scale(1.1);
}

.service-card-front::after {
    content: "Click to learn more";
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card:hover .service-card-front::after {
    opacity: 1;
}

.service-card-front h3 {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 0;
    color: var(--primary-color);
    font-family: 'ArimaKoshi', serif;
    font-weight: 500;
    text-transform: none;
}

.all-inclusive {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(35, 66, 61, 0.25);
}

.all-inclusive .section-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.all-inclusive .section-title::after {
    background: linear-gradient(90deg, var(--accent-color), var(--background-color));
}

.package-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: var(--background-color);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.included-services h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.included-services ul {
    list-style: none;
    font-size: 1.1rem;
    text-align: left;
}

.included-services li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.included-services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.excluded-services {
    margin-top: 2rem;
}

.excluded-services h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--additional-color);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.excluded-services ul {
    list-style: none;
    font-size: 1.1rem;
    text-align: left;
}

.excluded-services li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.excluded-services li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--additional-color);
    font-weight: bold;
}

.not-provided-services {
    margin-top: 2rem;
}

.not-provided-services h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--additional-color);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.not-provided-services ul {
    list-style: none;
    font-size: 1.1rem;
    text-align: left;
}

.not-provided-services li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.not-provided-services li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--additional-color);
    font-weight: bold;
}

.process {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-top: 3rem;
}

.process .section-title {
    margin-bottom: 3rem;
}

.process-phase {
    margin-bottom: 3rem;
}

.process-phase:last-child {
    margin-bottom: 0;
}

.phase-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.process-phase:first-child .phase-title {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
}

.process-phase:last-child .phase-title {
    background: linear-gradient(135deg, var(--accent-color), var(--additional-color));
    color: var(--primary-color);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

.process-steps > li {
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.process-steps > li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.process-steps ul {
    list-style: none;
    margin-top: 0.8rem;
    padding-left: 1.5rem;
}

.process-steps ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.process-steps ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.rates {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.rates .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.rates .section-title::after {
    margin: 0.75rem auto 0;
}

.rates p {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0;
    text-align: left;
    color: var(--text-light);
}

.rates ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 0.9rem;
    counter-reset: rate-item;
}

.rates li {
    counter-increment: rate-item;
    margin-bottom: 0;
    padding: 0.9rem 1.1rem 0.9rem 3.75rem;
    position: relative;
    color: var(--text-light);
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 12px;
    line-height: 1.6;
}

.rates li::before {
    content: counter(rate-item, decimal-leading-zero);
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-color), var(--additional-color));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    transform: translateY(-50%);
    box-shadow: 0 8px 18px rgba(187, 108, 41, 0.18);
}

/* Testimonials Section */
/* Google Reviews Widget */
.google-reviews-widget {
    margin: 3rem 0;
    padding: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.google-reviews-widget iframe {
    display: block;
    width: 100%;
    border-radius: 12px;
}

/* Reviews Summary Bar */
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.reviews-rating-big {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.reviews-summary-right {
    flex: 1;
}

.reviews-stars-row {
    display: flex;
    gap: 2px;
    margin-bottom: 0.3rem;
}

.reviews-stars-row .star.filled {
    color: #FBBC05;
    font-size: 1.3rem;
}

.reviews-count {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.4rem;
}

.reviews-view-all {
    font-size: 0.85rem;
    color: var(--additional-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.reviews-view-all:hover {
    color: var(--primary-color);
}

.reviews-google-logo {
    margin-left: auto;
}

/* Review Cards Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    min-height: 120px;
}

/* Loading state */
.reviews-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 0.95rem;
    gap: 1rem;
}

.reviews-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(35, 66, 61, 0.15);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Reviewer photo (when Google returns one) */
.reviewer-avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Review timestamp */
.review-time {
    font-size: 0.78rem;
    color: #aaa;
    margin-top: -0.5rem;
}

.review-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--accent-color);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 1rem;
    color: #ddd;
}

.star.filled {
    color: #FBBC05;
}

.review-text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}

.review-google-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #888;
    text-decoration: none;
    margin-top: auto;
    transition: color 0.2s;
}

.review-google-link:hover {
    color: var(--additional-color);
}

/* Instagram Feed */
.instagram-cta {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 0;
}

.instagram-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-family: 'BadScript', cursive;
    font-weight: 400;
    text-transform: none;
    text-align: center;
}

.instagram-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto 2rem auto;
}

.instagram-post-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    position: relative;
}

.instagram-post-placeholder:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.instagram-post-placeholder:nth-child(2) { background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%); }
.instagram-post-placeholder:nth-child(3) { background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%); }
.instagram-post-placeholder:nth-child(4) { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.instagram-post-placeholder:nth-child(5) { background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%); }
.instagram-post-placeholder:nth-child(6) { background: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%); }

.instagram-placeholder-inner {
    color: rgba(255,255,255,0.8);
}

.instagram-feed-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Fallback Instagram Button */
.instagram-link-fallback {
    margin-top: 2rem;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #f093fb 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(245, 87, 108, 0.4);
    font-family: 'Poppins', sans-serif;
}

.instagram-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(245, 87, 108, 0.5);
}

.instagram-button svg {
    width: 24px;
    height: 24px;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    font-size: 1.1rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-details p {
    margin-bottom: 1rem;
}

.contact-details a {
    color: var(--additional-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--accent-color);
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-link {
    display: inline-block;
    margin-right: 1rem;
    padding: 0.7rem 1.8rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(84, 112, 79, 0.3);
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(237, 171, 41, 0.4);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(237, 171, 41, 0.1);
}

.submit-button {
    padding: 1.2rem 2.5rem;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(237, 171, 41, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Poppins', sans-serif;
}

.submit-button:hover {
    background: var(--additional-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(187, 108, 41, 0.4);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    box-shadow: 0 -5px 20px rgba(35, 66, 61, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-family: 'ArimaKoshi', serif;
    font-weight: 500;
    text-transform: none;
}

.footer-section p {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    font-family: 'Quicksand', sans-serif;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-logo-img {
    height: 100px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-section .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.footer-section .social-links a {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-section .social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .header-icons {
        gap: 1rem;
    }
    
    .header-icon {
        width: 20px;
        height: 20px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        margin-top: 100px;
        height: 70vh;
    }

    .logo-img {
        height: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .footer-section .social-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-section .social-links a {
        width: fit-content;
    }

    .hero-quote {
        font-size: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-card {
        display: block;
        min-height: auto;
    }
    
    .founder-background {
        position: relative;
        width: 100%;
        height: 450px;
    }
    
    .founder-background::after {
        background: linear-gradient(to bottom, 
            rgba(248, 242, 229, 0) 0%,
            rgba(248, 242, 229, 0.3) 40%,
            rgba(248, 242, 229, 0.95) 85%,
            rgba(248, 242, 229, 1) 100%);
    }
    
    .founder-content {
        margin-left: 0;
        width: 100%;
        padding: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Convert flip cards to simple block layout on mobile (fixes iOS Safari rendering) */
    .service-card {
        height: auto;
    }

    .service-card-inner {
        height: auto;
    }

    .service-card-front,
    .service-card-back {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 160px;
        padding: 1.5rem 1rem;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .service-card-back {
        display: none;
    }

    .service-card.flipped .service-card-front {
        display: none;
        opacity: 1;
        transform: none;
    }

    .service-card.flipped .service-card-back {
        display: flex;
        opacity: 1;
        transform: none;
        z-index: auto;
    }

    .service-card:hover .service-card-front {
        opacity: 1;
        transform: none;
    }

    .service-card-back p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.75rem;
    }

    .service-card-front h3 {
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    .service-card-front::after {
        display: none;
    }
    }

    .service-card-back {
        padding: 2.5rem;
    }

    .service-card-back p {
        font-size: 0.95rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .reviews-summary {
        max-width: 100%;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-quote {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section > * {
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(35, 66, 61, 0.3);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(237, 171, 41, 0.4);
}

/* Process intro paragraph */
.process-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: -1.5rem auto 2.5rem;
    font-family: 'Quicksand', sans-serif;
}

/* Contact form label styling */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    font-style: italic;
}

/* Form status messages */
.form-status {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    animation: fadeInUp 0.3s ease;
}

.form-status-success {
    background: rgba(37, 211, 102, 0.1);
    color: #1a7a3a;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.form-status-error {
    background: rgba(220, 53, 69, 0.1);
    color: #c0392b;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 52px;
        height: 52px;
    }
    
    .back-to-top {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 42px;
        height: 42px;
    }
}
