:root {
    --charcoal: #1A2420;
    --charcoal2: #2D4A3E;
    --gold: #5C8C72;
    --cream: #B8D4C4;
    --linen: #EEF5F1;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Jost', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--linen);
    color: var(--charcoal);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .logo {
    font-family: var(--font-heading);
}

.label {
    font-family: var(--font-body);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.section-padding {
    padding: 100px 5%;
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 900;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.floating-wa svg {
    width: 32px;
    height: 32px;
}

.floating-wa:hover {
    transform: scale(1.1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--charcoal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

.logo {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links li a {
    color: var(--cream);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--gold);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-links li a:hover::after, .nav-links li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--gold);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    padding-top: 80px; /* nav height offset */
    display: flex;
    background-size: cover;
    background-position: center;
}

.hero-content {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 5%;
}

.hero-text .label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 16px;
}

.hero-text h1 {
    font-size: 56px;
    color: var(--charcoal);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero-text .subheading {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-text .body-text {
    font-size: 16px;
    font-weight: 300;
    color: var(--charcoal2);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    background-color: var(--charcoal);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 2px;
    padding: 14px 32px;
    border-radius: 2px;
    align-self: flex-start;
    transition: 0.3s;
}

.btn:hover {
    background-color: var(--gold);
    color: var(--charcoal);
}

.hero-image {
    flex: 1;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Value Strip */
.value-strip {
    background-color: var(--charcoal);
    padding: 28px 0;
    width: 100%;
}

.value-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.value-item {
    flex: 1;
    text-align: center;
}

.value-item .icon {
    color: var(--gold);
    width: 24px;
    height: 24px;
    margin: 0 auto 12px;
}

.value-item h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.value-item p {
    font-size: 12px;
    font-weight: 300;
    color: var(--cream);
}

.value-strip .divider {
    width: 1px;
    height: 40px;
    background-color: var(--gold);
    margin: 0 4%;
}

/* About Section */
.about {
}

.about-container {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 5%;
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text .label {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-text h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--charcoal);
}

.gold-rule {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 20px 0;
}

.about-text p {
    font-size: 16px;
    font-weight: 300;
    color: var(--charcoal2);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-text blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 16px;
    color: var(--gold);
    border-left: 3px solid var(--gold);
    padding-left: 16px;
    margin-top: 10px;
}

.about-image {
    flex: 1;
    display: flex;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Classes Section */
.classes {
    background-color: var(--charcoal);
}

/* Faster scroll-in for class cards */
.class-card.animate-card {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 16px;
    font-weight: 300;
    color: var(--cream);
    text-align: center;
    margin-bottom: 60px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(min-content, max-content);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.large-card {
    grid-column: span 2;
}

.bento-card {
    background-color: var(--charcoal2);
    border: 1px solid rgba(92, 140, 114, 0.2);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bento-placeholder {
    height: 180px;
    background-color: #2E1E14;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bento-placeholder span {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 20px;
}

.bento-content {
    padding: 24px 24px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bento-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
}

.bento-content p {
    font-size: 13px;
    font-weight: 300;
    color: var(--cream);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tags {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.tag {
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    border-radius: 20px;
    padding: 4px 12px;
}

.enquire-link {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1px;
    align-self: flex-start;
}

.enquire-link:hover {
    text-decoration: underline;
}

/* Why Choose Us Section */
.why-container h2 {
    font-size: 38px;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background-color: #fff;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 28px 24px;
}

.why-card .icon {
    color: var(--gold);
    width: 32px;
    height: 32px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 13px;
    font-weight: 300;
    color: var(--charcoal2);
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    background-color: var(--charcoal);
}

.pricing-container h2 {
    font-size: 38px;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-bottom: 16px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.price-card {
    background-color: var(--charcoal2);
    border: 1px solid rgba(92, 140, 114, 0.25);
    border-radius: 4px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.04);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--charcoal);
    font-family: var(--font-heading);
    font-size: 10px;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
}

.price-text {
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    color: var(--cream);
    margin-bottom: 24px;
}

.price-divider {
    height: 1px;
    background-color: rgba(92, 140, 114, 0.2);
    margin-bottom: 24px;
}

.features {
    text-align: left;
    margin-bottom: 32px;
}

.features li {
    font-size: 13px;
    font-weight: 300;
    color: var(--cream);
    line-height: 2;
    position: relative;
    padding-left: 20px;
}

.features li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
}

.price-btn {
    display: block;
    width: 100%;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 2px;
    padding: 12px;
    border-radius: 2px;
    transition: 0.3s;
}

.price-btn:hover {
    background-color: var(--gold);
    color: var(--charcoal);
}

/* Gallery Section */
.gallery-container h2 {
    font-size: 38px;
    font-weight: 600;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 16px;
}

.gallery-container .section-sub {
    color: var(--charcoal2);
}

.masonry-grid {
    column-count: 3;
    column-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.masonry-item {
    background-color: var(--cream);
    border-radius: 4px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    break-inside: avoid;
}

.gallery-placeholder {
    font-size: 12px;
    font-weight: 300;
    color: var(--gold);
}

.masonry-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.masonry-item:hover .overlay {
    transform: translateY(0);
}

.masonry-item .overlay span {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 16px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
}

.lightbox-content {
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Testimonials */
.testimonials {
    background-color: var(--charcoal);
}

.test-container h2 {
    font-size: 38px;
    font-weight: 600;
    color: var(--gold);
    text-align: center;
    margin-bottom: 60px;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.test-card {
    background-color: var(--charcoal2);
    border: 1px solid rgba(92, 140, 114, 0.2);
    border-radius: 4px;
    padding: 32px 24px;
    position: relative;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 72px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 0;
    margin-top: 20px;
    margin-bottom: 24px;
}

.quote-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 15px;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 24px;
}

.test-divider {
    height: 1px;
    background-color: rgba(92, 140, 114, 0.2);
    margin-bottom: 24px;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar {
    width: 52px;
    height: 52px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--charcoal);
}

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

.author-info .name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--gold);
    margin-bottom: 4px;
}

.author-info .title {
    font-size: 11px;
    font-weight: 300;
    color: var(--cream);
}

/* CTA Band */
.cta-band {
    background-color: var(--gold);
    padding: 80px 5%;
    text-align: center;
}

.cta-band h2 {
    font-size: 48px;
    font-weight: 600;
    color: var(--charcoal);
}

.cta-band p {
    font-size: 17px;
    font-weight: 300;
    color: var(--charcoal2);
    margin: 16px 0 36px;
}

.cta-btn {
    display: inline-block;
    background-color: var(--charcoal);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 2px;
    padding: 16px 40px;
    border-radius: 2px;
    transition: 0.3s;
}

.cta-btn:hover {
    background-color: var(--charcoal2);
}

/* Contact & Footer */
.contact {
    background-color: var(--charcoal);
    padding: 80px 5%;
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 5%;
}

.contact-left {
    flex: 1;
}

.contact-left .label {
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.contact-left h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 32px;
}

.contact-left .details {
    margin-bottom: 32px;
}

.contact-left .details p {
    font-size: 14px;
    font-weight: 300;
    color: var(--cream);
    line-height: 2.2;
}

.contact-btn {
    display: inline-block;
    background-color: var(--charcoal);
    color: var(--gold);
    border: 1px solid var(--gold);
    font-family: var(--font-heading);
    font-size: 12px;
    letter-spacing: 2px;
    padding: 12px 24px;
    border-radius: 2px;
    margin-bottom: 32px;
    transition: 0.3s;
}

.contact-btn:hover {
    background-color: var(--gold);
    color: var(--charcoal);
}

.socials {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.socials a {
    color: var(--gold);
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials a:hover {
    transform: scale(1.2);
    color: #E1306C; /* Instagram brand color for more noticeability on hover */
}

.socials svg {
    width: 32px;
    height: 32px;
}

.contact-right {
    flex: 1;
}

.contact-right iframe {
    border: 1px solid rgba(92, 140, 114, 0.25) !important;
    border-radius: 4px;
}

.footer {
    background-color: var(--charcoal);
    border-top: 1px solid rgba(92, 140, 114, 0.15);
    padding: 24px 5%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--gold);
}

.footer-right {
    font-size: 11px;
    font-weight: 300;
    color: var(--cream);
}

/* Team Section */
.team-section {
    background-color: var(--charcoal);
    text-align: center;
}

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

.team-section .label {
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.team-section h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0;
}

.team-section .gold-rule {
    margin: 20px auto 48px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.team-card {
    background-color: var(--charcoal2);
    border: 1px solid rgba(92, 140, 114, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 8px 32px rgba(92, 140, 114, 0.2);
}

.team-photo-wrap {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    flex-shrink: 0;
    background-color: var(--charcoal);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cream);
    margin-top: 1rem;
    margin-bottom: 0;
}

.team-role {
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
    font-weight: 400;
}

.team-divider {
    width: 40px;
    height: 1px;
    background-color: var(--gold);
    margin: 1rem auto;
    opacity: 0.6;
}

.team-credentials {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.82rem;
    color: rgba(184, 212, 196, 0.7);
    line-height: 1.9;
    text-align: center;
    flex-grow: 1;
}

.team-exp-badge {
    display: inline-block;
    background-color: var(--gold);
    color: var(--charcoal);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-top: 1.2rem;
}

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

    .team-section h2 {
        font-size: 26px;
    }
}

/* Animations (Initial State) */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-scale {
    transform: scale(0.8);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-image img.animate-element, .about-image img.animate-element {
    opacity: 0;
    transform: none;
    transition: opacity 0.9s ease;
}

/* Animation Active Classes */
.in-view {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.scale-in-view {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.fade-in-view {
    opacity: 1 !important;
}

/* Mobile Responsiveness */
@media (max-width: 1023px) {
    .section-padding {
        padding: 60px 5%;
    }
    
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 5%;
    }

    /* Nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--charcoal);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 20px;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

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

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

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

    /* Floating WA */
    .floating-wa {
        left: auto;
        right: 24px;
    }

    /* Typography scaling */
    .hero-text h1 {
        font-size: 34px;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .section-title, .why-container h2, .pricing-container h2, .gallery-container h2, .test-container h2 {
        font-size: 24px;
    }
    
    .cta-band h2 {
        font-size: 34px;
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        padding-right: 0;
        padding-bottom: 40px;
    }

    .hero-image {
        width: 100%;
        height: 50vw;
    }

    /* Value Strip */
    .value-container {
        flex-direction: column;
        gap: 30px;
    }

    .value-strip .divider {
        display: none;
    }

    /* About */
    .about {
    }

    .about-container {
        flex-direction: column;
    }

    .about-image {
        order: -1;
        width: 100%;
        height: 70vw;
        margin-bottom: 30px;
    }

    /* Bento Grid */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .large-card {
        grid-column: span 1;
    }

    /* Why Us */
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }

    /* Gallery */
    .masonry-grid {
        column-count: 1;
    }

    /* Testimonials */
    .test-grid {
        grid-template-columns: 1fr;
    }

    /* Contact & Footer */
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

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

/* Google Reviews Badge */
.google-reviews-badge {
    background-color: var(--charcoal);
    padding: 36px 20px 28px;
    text-align: center;
    border-top: 1px solid rgba(92, 140, 114, 0.15);
}

.reviews-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.reviews-link:hover {
    transform: translateY(-3px);
}

.reviews-link .stars {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.reviews-link .star {
    color: #F4B400; /* Google star gold color */
    font-size: 26px;
    line-height: 1;
    text-shadow: 0 0 12px rgba(244, 180, 0, 0.25);
    transition: transform 0.3s ease;
}

.reviews-link:hover .star {
    transform: scale(1.1);
}

.reviews-link .review-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--cream);
    margin: 0;
    text-transform: uppercase;
    border-bottom: 1px dashed rgba(184, 212, 196, 0.3);
    padding-bottom: 4px;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.reviews-link:hover .review-text {
    color: var(--gold);
    border-bottom-color: var(--gold);
}
