/* ============================================================
   style.css — All styles for The Tasty Garnished Kitchen
   ============================================================ */

/* ----- RESET & BASE ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E8751A;
    --primary-dark: #C95F0E;
    --primary-light: #F59A4A;
    --secondary: #FFF8F0;
    --cream: #FDF5E6;
    --dark: #1A0E05;
    --brown: #2C1810;
    --brown-light: #4A2C1A;
    --accent-green: #4CAF50;
    --accent-yellow: #FFD700;
    --white: #FFFFFF;
    --gray-100: #F7F3EF;
    --gray-300: #D4C9BE;
    --gray-500: #8A7A6A;
    --shadow: 0 8px 30px rgba(26, 14, 5, 0.12);
    --shadow-hover: 0 12px 40px rgba(26, 14, 5, 0.20);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--secondary);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
ul {
    list-style: none;
}

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

/* ----- BUTTONS ----- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(232, 117, 26, 0.35);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 117, 26, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}
.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
}
.btn-white:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ----- SECTION TITLES ----- */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(232, 117, 26, 0.10);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--dark);
}
.section-title span {
    color: var(--primary);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 560px;
    margin-top: 8px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 14, 5, 0.06);
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    color: var(--dark);
    flex-shrink: 0;
}
.navbar .logo .logo-icon {
    font-size: 1.8rem;
}
.navbar .logo span {
    color: var(--primary);
}

.navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.navbar .nav-links a {
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--brown);
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
}
.navbar .nav-links a:hover,
.navbar .nav-links a.active {
    color: var(--primary);
    background: rgba(232, 117, 26, 0.08);
}
.navbar .nav-links .btn-order {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    font-weight: 700;
}
.navbar .nav-links .btn-order:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--dark);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(26, 14, 5, 0.40);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    z-index: 1000;
    background: var(--white);
    padding: 100px 32px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}
.mobile-menu.active {
    right: 0;
}
.mobile-menu a {
    padding: 14px 20px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--brown);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border-bottom: 1px solid rgba(26, 14, 5, 0.04);
}
.mobile-menu a:hover {
    background: rgba(232, 117, 26, 0.08);
    color: var(--primary);
}
.mobile-menu .btn-order-mobile {
    margin-top: 16px;
    background: var(--primary);
    color: var(--white) !important;
    text-align: center;
    border-radius: 50px;
    border-bottom: none;
}
.mobile-menu .btn-order-mobile:hover {
    background: var(--primary-dark);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    padding: 180px 0 90px;
    min-height: 80vh;
    background: linear-gradient(170deg, #FFF8F0 0%, #FDF0E4 100%);
    position: relative;
    overflow: hidden;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: inherit;
}

.hero-content h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1.05;
    letter-spacing: -1px;
    color: var(--dark);
    margin-bottom: 12px;
}
.hero-content h1 .highlight {
    color: var(--primary);
    display: inline-block;
    position: relative;
}
.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(232, 117, 26, 0.25);
    border-radius: 4px;
}
.hero-content .hero-sub {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 440px;
    margin: 8px 0 32px;
    line-height: 1.7;
}
.hero-content .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-image .img-wrapper {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(232, 117, 26, 0.20);
    background: var(--cream);
    position: relative;
}
.hero-image .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.hero-image .floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
}
.hero-image .floating-badge:nth-child(2) {
    top: 10%;
    right: -5%;
    animation-delay: 0.5s;
}
.hero-image .floating-badge:nth-child(3) {
    bottom: 15%;
    left: -8%;
    animation-delay: 1s;
}
.hero-image .floating-badge .badge-icon {
    font-size: 1.2rem;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero quick stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid rgba(26, 14, 5, 0.06);
}
.hero-stats .stat {
    display: flex;
    flex-direction: column;
}
.hero-stats .stat .number {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    color: var(--primary);
}
.hero-stats .stat .label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ============================================================
   FEATURED FOOD — image-based cards
   ============================================================ */
.featured {
    padding: 80px 0 60px;
    background: var(--white);
}
.featured .section-header {
    text-align: center;
    margin-bottom: 48px;
}
.featured .section-header .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.featured-card {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 20px 20px 24px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
}
.featured-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.featured-card .featured-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--cream);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.featured-card .featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.featured-card:hover .featured-image-wrapper img {
    transform: scale(1.05);
}

.featured-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    color: var(--dark);
}
.featured-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-top: 2px;
}
.featured-card .price-tag {
    display: inline-block;
    margin-top: 10px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(232, 117, 26, 0.10);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* ============================================================
   WHY TASTY GARNISHED
   ============================================================ */
.why {
    padding: 80px 0;
    background: var(--secondary);
}
.why .section-header {
    text-align: center;
    margin-bottom: 48px;
}
.why .section-header .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

.why-card {
    background: var(--white);
    padding: 36px 24px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}
.why-card:hover {
    transform: translateY(-4px);
    border-bottom-color: var(--primary);
    box-shadow: var(--shadow-hover);
}
.why-card .why-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    display: block;
}
.why-card h4 {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.why-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
}

/* ============================================================
   THE ROOM
   ============================================================ */
.the-room {
    padding: 80px 0;
    background: var(--white);
}
.the-room .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.the-room-content .section-label {
    margin-bottom: 8px;
}
.the-room-content .section-title {
    margin-bottom: 16px;
}
.the-room-content p {
    color: var(--gray-500);
    font-size: 1.05rem;
    margin-bottom: 24px;
    max-width: 440px;
}

.the-room-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    background: var(--cream);
}
.the-room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   CUSTOMER REVIEWS
   ============================================================ */
.reviews {
    padding: 80px 0;
    background: var(--secondary);
}
.reviews .section-header {
    text-align: center;
    margin-bottom: 48px;
}
.reviews .section-header .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.review-card {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.review-card .stars {
    color: var(--accent-yellow);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.review-card blockquote {
    font-size: 1rem;
    color: var(--brown);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 12px;
}
.review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-card .reviewer .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
}
.review-card .reviewer .name {
    font-weight: 600;
    font-size: 0.95rem;
}
.review-card .reviewer .role {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '🍽️';
    position: absolute;
    font-size: 18rem;
    opacity: 0.06;
    top: -30%;
    right: -10%;
    transform: rotate(10deg);
    pointer-events: none;
}
.cta::after {
    content: '🥘';
    position: absolute;
    font-size: 12rem;
    opacity: 0.05;
    bottom: -20%;
    left: -5%;
    transform: rotate(-15deg);
    pointer-events: none;
}
.cta .container {
    position: relative;
    z-index: 1;
}
.cta h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.cta p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.cta .btn-white {
    font-size: 1.1rem;
    padding: 16px 44px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.70);
    padding: 60px 0 32px;
}
.footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand .logo {
    font-family: 'Anton', sans-serif;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 8px;
}
.footer-brand .logo span {
    color: var(--primary);
}
.footer-brand p {
    font-size: 0.95rem;
    max-width: 300px;
    line-height: 1.7;
}
.footer-brand .socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-brand .socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.1rem;
}
.footer-brand .socials a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer h4 {
    color: var(--white);
    font-family: 'Anton', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.footer ul li {
    margin-bottom: 8px;
}
.footer ul li a {
    transition: var(--transition);
    font-size: 0.95rem;
}
.footer ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.40);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablets & small laptops */
@media (max-width: 1024px) {
    .hero .container {
        gap: 40px;
    }
    .hero-image .floating-badge {
        display: none;
    }
    .the-room .container {
        gap: 40px;
    }
    .footer .container {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Tablets & mobile landscape */
@media (max-width: 900px) {
    .hero {
        padding: 140px 0 80px;
    }
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-content .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-image .img-wrapper {
        max-width: 420px;
    }

    .the-room .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .the-room-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .the-room-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .navbar .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu-overlay {
        display: block;
        pointer-events: none;
    }
    .mobile-menu-overlay.active {
        pointer-events: all;
    }

    .footer .container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile phones */
@media (max-width: 600px) {
    .navbar .container {
        height: 64px;
    }
    .navbar .logo {
        font-size: 1.1rem;
    }
    .navbar .logo .logo-icon {
        font-size: 1.4rem;
    }

    .hero {
        padding: 120px 0 60px;
    }
    .hero-content h1 {
        font-size: clamp(2.4rem, 10vw, 3.2rem);
    }
    .hero-content .hero-sub {
        font-size: 1rem;
    }
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    .hero-stats .stat .number {
        font-size: 1.4rem;
    }
    .hero-image .img-wrapper {
        max-width: 320px;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    .featured-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .featured-card {
        padding: 16px 14px 18px;
    }
    .featured-card .featured-image-wrapper {
        max-width: 120px;
        margin-left: auto;
        margin-right: auto;
    }
    .featured-card h3 {
        font-size: 1rem;
    }
    .featured-card p {
        font-size: 0.8rem;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .why-card {
        padding: 24px 16px;
    }
    .why-card .why-icon {
        font-size: 2.2rem;
    }
    .why-card h4 {
        font-size: 1rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cta h2 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .cta p {
        font-size: 1rem;
    }
    .cta .btn-white {
        padding: 14px 32px;
        font-size: 1rem;
    }

    .footer .container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .footer-brand .socials {
        justify-content: center;
    }

    .mobile-menu {
        width: 280px;
        padding: 80px 24px 32px;
    }
}

@media (max-width: 420px) {
    .featured-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .featured-card .featured-image-wrapper {
        max-width: 90px;
    }
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .hero-content .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ============================================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================================ */

/* About Hero */
.about-hero {
    padding: 140px 0 60px;
    background: linear-gradient(170deg, #FFF8F0 0%, #FDF0E4 100%);
    text-align: center;
}
.about-hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--dark);
    margin-bottom: 12px;
}
.about-hero h1 span {
    color: var(--primary);
}
.about-hero p {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 680px;
    margin: 8px auto 0;
    line-height: 1.7;
}
.about-hero p + p {
    margin-top: 12px;
}

/* About Features (Food + Restaurant images) */
.about-features {
    padding: 60px 0 80px;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-image-card {
    text-align: center;
}
.about-image-card .about-image-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    background: var(--cream);
    margin-bottom: 18px;
    transition: var(--transition);
}
.about-image-card .about-image-wrapper:hover {
    transform: scale(1.01);
    box-shadow: var(--shadow-hover);
}
.about-image-card .about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-image-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 4px;
}
.about-image-card p {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.6;
}

/* What Makes Us Different */
.about-different {
    padding: 80px 0;
    background: var(--secondary);
}
.about-different .section-header {
    text-align: center;
    margin-bottom: 48px;
}
.about-different .section-header .section-sub {
    margin-left: auto;
    margin-right: auto;
}

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

.different-card {
    background: var(--white);
    padding: 32px 24px 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}
.different-card:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--primary);
    box-shadow: var(--shadow-hover);
}
.different-card .different-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    display: block;
}
.different-card h4 {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 4px;
}
.different-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Responsive tweaks for about page */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-card .about-image-wrapper {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    .about-hero {
        padding: 120px 0 40px;
    }
}

@media (max-width: 600px) {
    .about-hero {
        padding: 100px 0 30px;
    }
    .about-hero h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }
    .about-hero p {
        font-size: 1rem;
    }
    .about-features {
        padding: 40px 0 60px;
    }
    .about-image-card .about-image-wrapper {
        max-width: 100%;
    }
    .different-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



/* ============================================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================================ */

/* Contact Hero */
.contact-hero {
    padding: 140px 0 60px;
    background: linear-gradient(170deg, #FFF8F0 0%, #FDF0E4 100%);
    text-align: center;
}
.contact-hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--dark);
    margin-bottom: 8px;
}
.contact-hero h1 span {
    color: var(--primary);
}
.contact-hero p {
    font-size: 1.15rem;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Contact Info Grid */
.contact-info {
    padding: 60px 0 40px;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
}

.contact-card {
    background: var(--secondary);
    padding: 32px 24px 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow);
}
.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-hover);
}
.contact-card .contact-icon {
    font-size: 2.6rem;
    margin-bottom: 8px;
    display: block;
}
.contact-card h4 {
    font-family: 'Anton', sans-serif;
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 6px;
}
.contact-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}
.contact-card p strong {
    color: var(--dark);
}
.contact-card .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
    font-size: 0.95rem;
}
.contact-card .contact-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}
.contact-card .contact-link i {
    font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
    padding: 60px 0 40px;
    background: var(--gray-100);
}
.contact-form .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 32px;
}
.contact-form .section-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark);
    margin: 12px 0 10px;
}
.contact-form .section-header p {
    color: var(--gray-500);
    line-height: 1.7;
}
.contact-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}
.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-form .form-group-full {
    grid-column: 1 / -1;
}
.contact-form label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(26, 14, 5, 0.12);
    background: var(--white);
    color: var(--dark);
    font-size: 1rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(232, 117, 26, 0.10);
}
.contact-form .form-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form .btn-submit {
    width: max-content;
}
.contact-form .form-note {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Actions (Buttons + Map) */
.contact-actions {
    padding: 40px 0 80px;
    background: var(--white);
}
.actions-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.actions-buttons h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 6px;
}
.actions-buttons p {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    max-width: 400px;
}
.actions-buttons .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.actions-buttons .btn-group .btn {
    padding: 14px 32px;
    font-size: 1rem;
    min-width: 200px;
}
.actions-buttons .btn-group .btn i {
    font-size: 1.1rem;
}

.actions-map .map-placeholder {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    background: var(--cream);
    min-height: 260px;
    transition: var(--transition);
}
.actions-map .map-placeholder:hover {
    box-shadow: var(--shadow-hover);
}
.actions-map .map-placeholder iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

/* Responsive tweaks for contact page */
@media (max-width: 900px) {
    .contact-hero {
        padding: 120px 0 40px;
    }
    .actions-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .actions-buttons {
        text-align: center;
    }
    .actions-buttons p {
        margin-left: auto;
        margin-right: auto;
    }
    .actions-buttons .btn-group {
        justify-content: center;
    }
    .actions-map .map-placeholder {
        min-height: 220px;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        padding: 100px 0 30px;
    }
    .contact-hero h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }
    .contact-hero p {
        font-size: 1rem;
    }
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .contact-card {
        padding: 24px 16px 22px;
    }
    .contact-card .contact-icon {
        font-size: 2rem;
    }
    .contact-card h4 {
        font-size: 1rem;
    }
    .contact-card p {
        font-size: 0.85rem;
    }
    .actions-buttons .btn-group .btn {
        min-width: 160px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .actions-map .map-placeholder {
        min-height: 180px;
    }
}

@media (max-width: 420px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .actions-buttons .btn-group {
        flex-direction: column;
        align-items: center;
    }
    .actions-buttons .btn-group .btn {
        width: 100%;
        max-width: 280px;
    }
}