/* =============================================
   GAE EVENTS — MAIN STYLESHEET
   Version: 1.0.0
   Description: Reusable styles for G.A.E Events landing pages
   Usage: Link this stylesheet in your HTML head
   ============================================= */

/* =============================================
   GAE EVENTS — BRAND VARIABLES
   ============================================= */
:root {
    --gae-pink:        #bc6888;
    --gae-pink-light:  #DFB7C6;
    --gae-dark:        #111111;
    --gae-dark-2:      #1a1a1a;
    --gae-dark-3:      #222222;
    --gae-grey:        #424242;
    --gae-light-grey:  #f5f5f5;
    --gae-white:       #ffffff;
    --gae-text-muted:  #aaaaaa;
    --font-heading:    'Barlow Condensed', sans-serif;
    --font-body:       'Barlow Condensed', sans-serif;
    --transition:      all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gae-grey);
    background: var(--gae-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gae-dark);
}

h1 { font-size: 3.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

p {
    margin-bottom: 16px;
}

a {
    color: var(--gae-pink);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #a8294f;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

.section-pad {
    padding: 90px 0;
}

.section-pad-sm {
    padding: 60px 0;
}

.text-center { text-align: center; }
.text-white  { color: var(--gae-white); }
.text-pink   { color: var(--gae-pink); }

.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ddd;
}

.divider.dark::before,
.divider.dark::after {
    background: rgba(255,255,255,0.2);
}

.divider span {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gae-pink);
    white-space: nowrap;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--gae-pink);
    color: var(--gae-white);
}

.btn-primary:hover {
    background-color: #a8294f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(204, 51, 102, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--gae-white);
    border: 2px solid var(--gae-white);
}

.btn-outline:hover {
    background-color: var(--gae-white);
    color: var(--gae-dark);
}

.btn-outline-pink {
    background-color: transparent;
    color: var(--gae-pink);
    border: 2px solid var(--gae-pink);
}

.btn-outline-pink:hover {
    background-color: var(--gae-pink);
    color: var(--gae-white);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gae-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.85) 0%,
        rgba(204, 51, 102, 0.15) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gae-pink);
    margin-bottom: 20px;
    border-left: 3px solid var(--gae-pink);
    padding-left: 12px;
}

.hero h1 {
    color: var(--gae-white);
    margin-bottom: 24px;
    max-width: 750px;
}

.hero h1 em {
    font-style: normal;
    color: var(--gae-pink);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
    background: var(--gae-dark);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gae-pink);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gae-pink);
    margin-bottom: 12px;
}

.section-header h2 {
    color: var(--gae-dark);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gae-grey);
    max-width: 600px;
    margin: 0 auto;
}

/* =============================================
   INTRO SECTION (Two Column Layout)
   ============================================= */
.section-intro {
    background: var(--gae-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text .section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gae-pink);
    margin-bottom: 12px;
}

.intro-text h2 {
    color: var(--gae-dark);
    margin-bottom: 20px;
}

.intro-text p {
    color: var(--gae-grey);
    margin-bottom: 16px;
}

.intro-text .btn {
    margin-top: 16px;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 4px;
}

.intro-image-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--gae-pink);
    color: var(--gae-white);
    padding: 24px 28px;
    font-family: var(--font-heading);
    text-align: center;
    border-radius: 2px;
}

.intro-image-badge .number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
}

.intro-image-badge .label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* =============================================
   CARD GRIDS (Generic)
   ============================================= */
.cuisine-grid,
.services-grid,
.items-grid,
.setup-grid,
.food-type-grid {
    display: grid;
    gap: 24px;
}

.cuisine-grid {
    grid-template-columns: repeat(4, 1fr);
}

.services-grid {
    grid-template-columns: repeat(3, 1fr);
}

.items-grid {
    grid-template-columns: repeat(4, 1fr);
}

.setup-grid {
    grid-template-columns: repeat(3, 1fr);
}

.food-type-grid {
    grid-template-columns: repeat(2, 1fr);
}

/* =============================================
   CARDS (Generic)
   ============================================= */
.cuisine-card {
    background: var(--gae-white);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.cuisine-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.cuisine-card-img {
    height: 200px;
    overflow: hidden;
}

.cuisine-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cuisine-card:hover .cuisine-card-img img {
    transform: scale(1.1);
}

.cuisine-card-body {
    padding: 24px 20px;
}

.cuisine-card h3 {
    font-size: 1.1rem;
    color: var(--gae-dark);
    margin-bottom: 8px;
}

.cuisine-card p {
    font-size: 0.9rem;
    color: var(--gae-grey);
    margin-bottom: 12px;
}

.cuisine-items {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cuisine-item-tag {
    font-size: 0.75rem;
    background: var(--gae-light-grey);
    color: var(--gae-grey);
    padding: 4px 10px;
    border-radius: 2px;
}

/* =============================================
   SERVICE CARDS (Dark Background)
   ============================================= */
.section-services {
    background: var(--gae-dark);
    position: relative;
    overflow: hidden;
}

.section-services::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204,51,102,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.section-services .section-header h2,
.section-services .section-header p {
    color: var(--gae-white);
}

.section-services .section-header p {
    color: rgba(255,255,255,0.65);
}

.service-card {
    background: var(--gae-dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 36px 28px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--gae-pink);
    transform: translateY(-4px);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(204, 51, 102, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: var(--gae-pink);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.2rem;
    color: var(--gae-white);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
}

/* =============================================
   SETUP CARDS
   ============================================= */
.section-table-setup,
.section-cuisines,
.section-other-items,
.section-special-food {
    background: var(--gae-light-grey);
}

/* =============================================
   DIETARY & CERTIFIED OPTIONS
   ============================================= */
.section-dietary {
    background: var(--gae-dark);
    position: relative;
    overflow: hidden;
}

.section-dietary::before {
    content: '';
    position: absolute;
    top: -220px;
    right: -200px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(204,51,102,0.14) 0%, transparent 70%);
    pointer-events: none;
}

.dietary-header {
    text-align: center;
    margin-bottom: 22px;
}

.section-dietary .section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gae-pink);
    margin-bottom: 12px;
}

.section-dietary h2 {
    color: var(--gae-white);
}

.dietary-header p {
    color: rgba(255,255,255,0.65);
    max-width: 720px;
    margin: 0 auto;
}

.dietary-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.dietary-item {
    background: var(--gae-dark-3);
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    flex: 0 1 calc((100% - 28px) / 3);
}

.dietary-item h3 {
    margin: 8px 0 6px;
    color: var(--gae-white);
}

.dietary-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.dietary-badge {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(204, 51, 102, 0.22);
    color: var(--gae-pink);
    padding: 4px 10px;
    border-radius: 999px;
}

.dietary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dietary-tag {
    font-size: 0.72rem;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
}

.setup-card,
.item-card {
    background: var(--gae-white);
    border-radius: 4px;
    overflow: hidden;
}

.setup-card-img {
    height: 220px;
    overflow: hidden;
}

.setup-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.setup-card:hover .setup-card-img img {
    transform: scale(1.05);
}

.setup-card-body {
    padding: 28px 24px;
}

.setup-card-body h3 {
    color: var(--gae-dark);
    margin-bottom: 12px;
}

.setup-card-body p {
    color: var(--gae-grey);
    font-size: 0.95rem;
}

.setup-features {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #ddd;
}

.setup-features li {
    font-size: 0.85rem;
    color: var(--gae-grey);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.setup-features li::before {
    content: '✓';
    color: var(--gae-pink);
    font-weight: 700;
}

/* =============================================
   ITEM CARDS (Icon Based)
   ============================================= */
.item-card {
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.item-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.item-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(204, 51, 102, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gae-pink);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.item-card h4 {
    color: var(--gae-dark);
    margin-bottom: 8px;
    font-size: 1rem;
}

.item-card p {
    font-size: 0.85rem;
    color: var(--gae-grey);
}

/* =============================================
   FOOD TYPE CARDS
   ============================================= */
.food-type-card {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--gae-light-grey);
    border-radius: 4px;
    transition: var(--transition);
}

.food-type-card:hover {
    background: #eee;
}

.food-type-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    background: var(--gae-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.food-type-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.food-type-content h3 {
    color: var(--gae-dark);
    margin-bottom: 12px;
}

.food-type-content p {
    color: var(--gae-grey);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.food-type-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.food-type-item {
    font-size: 0.85rem;
    background: var(--gae-white);
    color: var(--gae-dark);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
}

/* =============================================
   KIDS SECTION
   ============================================= */
.section-kids {
    background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
}

.kids-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.kids-content .section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gae-pink);
    margin-bottom: 12px;
}

.kids-content h2 {
    color: var(--gae-dark);
    margin-bottom: 20px;
}

.kids-content p {
    color: var(--gae-grey);
    margin-bottom: 24px;
}

.kids-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.kids-option {
    background: var(--gae-white);
    padding: 20px;
    border-radius: 4px;
    border-left: 3px solid var(--gae-pink);
}

.kids-option h5 {
    color: var(--gae-dark);
    margin-bottom: 8px;
}

.kids-option p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.kids-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.section-why {
    background: var(--gae-white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
}

.why-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gae-pink);
    border-radius: 2px;
    z-index: -1;
}

.why-content .section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gae-pink);
    margin-bottom: 12px;
}

.why-content h2 {
    color: var(--gae-dark);
    margin-bottom: 20px;
}

.why-content > p {
    color: var(--gae-grey);
    margin-bottom: 32px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-item-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(204,51,102,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gae-pink);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-item-text h4 {
    font-size: 1rem;
    color: var(--gae-dark);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.why-item-text p {
    font-size: 0.9rem;
    color: var(--gae-grey);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.section-testimonials {
    background: var(--gae-dark);
}

.section-testimonials .section-header h2 {
    color: var(--gae-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Fallback: hide old grid if carousel is present */
.testimonials-carousel + .testimonials-grid,
.testimonials-carousel ~ .testimonials-grid {
    display: none;
}

.testimonial-card {
    background: var(--gae-dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 5rem;
    line-height: 1;
    color: var(--gae-pink);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    color: #ffbc33;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.75;
    margin-bottom: 16px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gae-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gae-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.author-role {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

/* =============================================
   TESTIMONIALS CAROUSEL
   ============================================= */

.testimonials-carousel {
    position: relative;
    padding: 0 60px; /* Space for navigation arrows */
}

.carousel-track {
    overflow: hidden;
    margin: 0 -12px; /* Offset for card gap */
}

.carousel-track-inner {
    display: flex;
    transition: transform 0.5s ease;
    gap: 24px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px); /* 3 cards per view, accounting for gap */
    max-width: calc(33.333% - 16px);
    background: var(--gae-dark-3);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    padding: 32px;
    position: relative;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: var(--gae-pink);
    border-color: var(--gae-pink);
    transform: translateY(-50%) scale(1.05);
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.98);
}

.carousel-nav-prev {
    left: 0;
}

.carousel-nav-next {
    right: 0;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-50%) scale(1);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255,255,255,0.4);
}

.carousel-dot.active {
    background: var(--gae-pink);
    width: 30px;
    border-radius: 5px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.section-cta {
    position: relative;
    background: var(--gae-dark);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(204,51,102,0.5) 0%, rgba(10,10,10,0.9) 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 100px 24px;
}

.cta-content .section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.cta-content h2 {
    color: var(--gae-white);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content p {
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    margin: 0 auto 40px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-contact-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.contact-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--gae-pink);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255,255,255,0.7);
}

.contact-item a:hover {
    color: var(--gae-pink);
}

/* =============================================
   TRUSTED BRANDS STRIP
   ============================================= */
.brands-strip {
    background: var(--gae-white);
    padding: 48px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.brands-label {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gae-text-muted);
    margin-bottom: 32px;
}

.brands-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.brand-placeholder {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ccc;
    transition: var(--transition);
}

.brand-placeholder:hover {
    color: var(--gae-pink);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .intro-grid,
    .why-grid,
    .kids-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .intro-image-badge {
        bottom: 16px;
        left: 16px;
    }

    .why-image-accent {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cuisine-grid,
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Carousel responsive adjustments for tablet */
    .testimonials-carousel {
        padding: 0 50px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .stat-item:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,0.08);
        border-right: none;
    }

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

    .dietary-cards {
        gap: 12px;
    }

    .dietary-item {
        flex-basis: calc((100% - 12px) / 2);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .section-pad { padding: 60px 0; }

    .services-grid,
    .cuisine-grid,
    .items-grid,
    .food-type-grid {
        grid-template-columns: 1fr;
    }

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

    /* Carousel responsive adjustments for mobile */
    .testimonials-carousel {
        padding: 0 45px;
    }

    .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .carousel-nav {
        width: 36px;
        height: 36px;
    }

    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }

    .testimonial-card {
        min-height: auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        min-height: 60vh;
    }

    .hero-content {
        padding: 100px 24px 100px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .kids-options {
        grid-template-columns: 1fr;
    }

    .food-type-card {
        flex-direction: column;
        text-align: center;
    }

    .dietary-cards {
        gap: 12px;
    }

    .dietary-item {
        flex-basis: 100%;
    }
}


/* =============================================
   PAGE-SPECIFIC OVERRIDES (CATERING REFACTORED)
   ============================================= */

.card1 {
            color: var(--gae-white);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 28px;
        }

        .card1:hover {
            filter: brightness(0.98);
        }

        .card1 .card2 {
            background: rgb(12 12 12 / 69%);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 8px;
            padding: 20px 22px;
            max-width: 520px;
            /* backdrop-filter: blur(6px); */
        }

        .card1 .card2 h3,
        .card1 .card2 p {
            color: var(--gae-white);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
        }

        .card1 .card3 {
            background: rgba(255, 255, 255, 0.2);
            color: var(--gae-white);
            border-color: rgba(255, 255, 255, 0.4);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
        }

        .section1 {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
        }

        .section1::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(800px 320px at 12% 8%, rgba(255, 198, 214, 0.45), transparent 60%),
                radial-gradient(700px 320px at 90% 20%, rgba(255, 230, 238, 0.65), transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        .section1 .container {
            position: relative;
            z-index: 1;
        }

        .grid1 {
            display: grid;
            grid-template-columns: minmax(240px, 1fr) minmax(0, 1.2fr);
            gap: 28px;
            align-items: stretch;
        }

        .card5 {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            border-radius: 18px;
            padding: 0;
            min-height: 440px;
            background: linear-gradient(135deg, #ffffff 0%, #fff2f6 100%);
            border: 1px solid rgba(255, 120, 155, 0.25);
            box-shadow: 0 18px 45px rgba(255, 160, 190, 0.2);
            overflow: hidden;
        }

        .staff-hero-media {
            position: absolute;
            inset: 0;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            transform: scale(1.02);
        }

        .staff-hero-copy {
            position: relative;
            z-index: 1;
            padding: 28px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(26, 17, 21, 0.72) 48%, rgba(26, 17, 21, 0.88) 100%);
        }

        .card5 h3 {
            font-family: "Barlow Condensed", sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            font-size: 14px;
            color: rgba(255, 235, 242, 0.88);
            margin-bottom: 10px;
        }

        .title1 {
            font-size: 28px;
            margin-bottom: 14px;
            color: var(--gae-white);
        }

        .card5 p {
            color: rgba(255, 255, 255, 0.82);
            margin-bottom: 16px;
        }

        .pillrow1 {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .pill1 {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 999px;
            border: 1px solid rgba(255, 220, 230, 0.35);
            color: var(--gae-white);
            background: rgba(255, 255, 255, 0.12);
            font-size: 13px;
            letter-spacing: 0.02em;
            backdrop-filter: blur(6px);
        }

        .pill1 span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--gae-pink);
            box-shadow: 0 0 8px rgba(255, 120, 155, 0.5);
        }

        .grid2 {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .card4 {
            position: relative;
            padding: 18px 18px 20px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(255, 120, 155, 0.2);
            min-height: 250px;
            overflow: hidden;
        }

        .staff-card-media {
            width: 100%;
            height: 118px;
            margin-bottom: 14px;
            border-radius: 14px;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            box-shadow: inset 0 -40px 60px rgba(0, 0, 0, 0.08);
        }

        .card4::after {
            content: "";
            position: absolute;
            inset: auto 0 0 0;
            height: 4px;
            background: linear-gradient(90deg, rgba(255, 150, 175, 0.85), rgba(255, 210, 225, 0.85));
            opacity: 0.8;
        }

        .card4 h4 {
            color: var(--gae-dark);
            margin: 12px 0 6px;
        }

        .card4 p {
            color: var(--gae-grey);
            font-size: 14px;
        }

        .icon1 {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: grid;
            place-items: center;
            background: rgba(255, 245, 248, 0.9);
            border: 1px solid rgba(255, 120, 155, 0.25);
        }

        .icon1 svg {
            width: 22px;
            height: 22px;
            stroke: var(--gae-pink);
        }

        .badge1 {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(255, 245, 248, 0.95);
            color: var(--gae-pink);
            font-size: 11px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .section2 {
            background: var(--gae-white);
            padding: 60px 0;
            border-top: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
        }

        .marquee1 {
            position: relative;
            overflow: hidden;
            padding: 6px 0;
        }

        .marquee1::before,
        .marquee1::after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            width: 120px;
            z-index: 2;
            pointer-events: none;
        }

        .marquee1::before {
            left: 0;
            background: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
        }

        .marquee1::after {
            right: 0;
            background: linear-gradient(270deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
        }

        .grid3 {
            display: flex;
            align-items: center;
            gap: 56px;
            width: max-content;
            animation: brand-marquee 42s linear infinite;
        }

        .marquee2 {
            flex: 0 0 auto;
        }

        .card6 {
            height: 52px;
            width: 140px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.65;
            transition: var(--transition);
        }

        .card6:hover {
            filter: grayscale(0%);
            opacity: 0.95;
            transform: translateY(-2px);
        }

        @keyframes brand-marquee {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(-50%);
            }
        }

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

            .card5 {
                min-height: 400px;
            }

            .grid2 {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .staff-hero-copy {
                padding: 22px;
            }

            .title1 {
                font-size: 24px;
            }

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

            .marquee1::before,
            .marquee1::after {
                width: 60px;
            }

            .card6 {
                height: 44px;
                width: 120px;
            }
        }

/* =============================================
   MODAL (Reusable iframe dialog)
   ============================================= */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.is-open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.modal-panel {
    position: relative;
    z-index: 1;
    width: min(480px, 95vw);
    height: 500px;
    background: #121212;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-body {
    position: relative;
    flex: 1;
    min-height: 500px;
}

.modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .modal-panel {
        width: 96vw;
        height: 500px;
    }
}
