/* assets/css/style.css */

/* ===== Core brand colors =====
   Gold tones: #b19c4b, #947919, #f3d472
   Black:      #000000
   Dark bg:    #050608, #0b0e13, #04060b
   Off white:  #fcfcfb
*/

/* Global reset & basics */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #fcfcfb;
    background-color: #050608;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Layout helpers */
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== Header & navigation ===== */
.site-header {
    background: #000000;
    color: #fcfcfb;
    padding: 12px 0 22px; /* extra bottom space for lights overlap */
    position: sticky;
    top: 0;
    z-index: 1200;
    border-bottom: 1px solid rgba(177, 156, 75, 0.45);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #b19c4b;
    background: #000;
}

.logo-text h1 {
    font-size: 1.1rem;
    margin-bottom: 2px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #fcfcfb;
}

.logo-text p {
    font-size: 0.8rem;
    color: #b19c4b;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 16px;
}

.main-nav a {
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border: 1px solid transparent;
}

.main-nav a:hover {
    border-color: rgba(177, 156, 75, 0.6);
    background: rgba(177, 156, 75, 0.15);
    color: #fcfcfb;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid #b19c4b;
    color: #fcfcfb;
    font-size: 1.1rem;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
}

/* ===== Hero section ===== */
.hero-section {
    padding: 48px 0 32px;
    background:
        radial-gradient(circle at 0% 0%, rgba(177, 156, 75, 0.2) 0, transparent 55%),
        radial-gradient(circle at 100% 0%, rgba(148, 121, 25, 0.22) 0, transparent 55%),
        #000000;
    color: #fcfcfb;
    position: relative; /* for ornaments */
    overflow: hidden;
}

/* Floating ornaments in hero */
.is-holiday-season .hero-section::before,
.is-holiday-season .hero-section::after {
    position: absolute;
    pointer-events: none;
    opacity: 0.12;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.75));
    animation: ornament-float 9s ease-in-out infinite;
}

.is-holiday-season .hero-section::before {
    content: "🎄";
    font-size: 78px;
    left: 2%;
    top: 5.5rem;
}

.is-holiday-season .hero-section::after {
    content: "⭐";
    font-size: 70px;
    right: 3%;
    top: 2.5rem;
    animation-delay: 1.4s;
}

.hero-inner {
    display: grid;
    grid-template-columns: 2fr 1.3fr;
    gap: 24px;
    align-items: stretch;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(243, 212, 114, 0.4);
    color: #f3d472;
    margin-bottom: 10px;
}

.hero-kicker i {
    font-size: 0.9rem;
}

/* extra chip in hero for holiday season */
.hero-season-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(243, 212, 114, 0.6);
    font-size: 0.8rem;
    color: #f3f4f6;
    margin-bottom: 10px;
}

.is-holiday-season .hero-season-chip {
    animation: hero-chip-pulse 3s ease-in-out infinite;
}

.hero-season-emoji {
    font-size: 1rem;
}

.hero-text h2 {
    font-size: 2.1rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.hero-text p {
    max-width: 550px;
    margin-bottom: 20px;
    color: #e4e4e4;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.hero-subnote {
    font-size: 0.85rem;
    color: #c4c4c4;
    margin-bottom: 10px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(177, 156, 75, 0.35);
}

.stat-item i {
    color: #f3d472;
}

.stat-number {
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-label {
    font-size: 0.8rem;
    color: #d0d0d0;
}

.hero-side {
    display: grid;
    gap: 12px;
}

.hero-card {
    background: linear-gradient(135deg, #111316, #1a1e24);
    color: #fcfcfb;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(177, 156, 75, 0.35);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(243, 212, 114, 0.25), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.hero-card:hover::before {
    opacity: 1;
}

.hero-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    background: rgba(177, 156, 75, 0.15);
    color: #f3d472;
}

.hero-card h3 {
    margin-bottom: 6px;
    color: #f3d472;
}

.hero-card-btn {
    margin-top: 8px;
    display: inline-flex;
}

/* ===== Buttons ===== */
.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.06s ease, box-shadow 0.1s ease;
    position: relative;            /* for snow caps */
    overflow: hidden;              /* hide snow spill */
}

.btn-primary {
    background: linear-gradient(135deg, #b19c4b, #947919);
    color: #000;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.6);
}

.btn-outline {
    background: transparent;
    color: #f3d472;
    border-color: #b19c4b;
}

.btn-outline:hover {
    background: rgba(177, 156, 75, 0.12);
}

/* ===== Sections ===== */
.section {
    padding: 52px 0;
    background: #050608;
    position: relative;   /* for ornaments */
    overflow: hidden;
}

.section .container {
    position: relative;
    z-index: 1;           /* keep content above ornaments */
}

.section:nth-of-type(even) {
    background: #0b0e13;
}

.section h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #f3d472;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-subtitle {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 24px;
    color: #cccccc;
}

/* ornaments on every section */
.is-holiday-season .section::before,
.is-holiday-season .section::after {
    position: absolute;
    pointer-events: none;
    opacity: 0.05;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.7));
}

.is-holiday-season .section::before {
    content: "🎄";
    font-size: 54px;
    left: 2%;
    top: 1.2rem;
}

.is-holiday-season .section::after {
    content: "⭐";
    font-size: 50px;
    right: 3%;
    bottom: 0.8rem;
}

/* ===== About ===== */
.about-section p {
    max-width: 700px;
    margin: 0 auto 24px;
    text-align: center;
    color: #dddddd;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-box {
    background: #11141a;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(177, 156, 75, 0.25);
    position: relative;
    overflow: hidden;
}

.about-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(243, 212, 114, 0.18), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.about-box:hover::after {
    opacity: 1;
}

.about-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background: rgba(177, 156, 75, 0.15);
    color: #f3d472;
}

.about-box h3 {
    margin-bottom: 8px;
    color: #f3d472;
}

.about-box p,
.about-box ul {
    font-size: 0.92rem;
    color: #e3e3e3;
}

.about-box ul {
    list-style: disc;
    margin-left: 18px;
}

/* ===== Services ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.service-card {
    background: #11141a;
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(177, 156, 75, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.75);
    border-color: rgba(243, 212, 114, 0.5);
}

.service-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    background: rgba(177, 156, 75, 0.15);
    color: #f3d472;
}

.service-card h3 {
    margin-bottom: 8px;
    color: #f3d472;
    font-size: 1rem;
}

.service-card p {
    font-size: 0.92rem;
    color: #e3e3e3;
}

/* ===== Jobs ===== */
.jobs-section {
    background: #04060b;
    border-top: 1px solid rgba(177, 156, 75, 0.25);
    border-bottom: 1px solid rgba(177, 156, 75, 0.18);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.job-category {
    background: #101318;
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(177, 156, 75, 0.25);
    border-top: 3px solid rgba(243, 212, 114, 0.7);
}

.job-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    background: rgba(177, 156, 75, 0.15);
    color: #f3d472;
}

.job-category h3 {
    margin-bottom: 8px;
    color: #f3d472;
    font-size: 1rem;
}

.job-category ul {
    list-style: disc;
    margin-left: 18px;
    font-size: 0.9rem;
    color: #e3e3e3;
}

/* ===== Our Current Partners ===== */
.partners-section {
    background: #050609;
    border-top: 1px solid rgba(177, 156, 75, 0.25);
}

.partners-intro {
    max-width: 650px;
    margin: 0 auto 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #d0d3dc;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
    justify-items: center;
    margin-top: 8px;
}

.partner-card {
    background: #101318;
    border-radius: 12px;
    padding: 14px 12px;
    border: 1px solid rgba(177, 156, 75, 0.28);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-height: 110px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.9);
    border-color: rgba(243, 212, 114, 0.55);
}

.partner-logo {
    max-width: 120px;
    max-height: 56px;
    object-fit: contain;
    filter: saturate(1.05);
}

.partner-name {
    font-size: 0.8rem;
    text-align: center;
    color: #e5e7ef;
    opacity: 0.95;
}

/* ===== Gallery / Slider ===== */
.gallery-section {
    position: relative;
}

.slider-wrapper {
    margin-top: 12px;
    border-radius: 16px;
    overflow: hidden;
    background: #11141a;
    border: 1px solid rgba(177, 156, 75, 0.3);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.8);
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    align-items: stretch;
}

.slide-image {
    min-height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-caption {
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-caption h3 {
    color: #f3d472;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.slide-caption h3 i {
    margin-right: 6px;
}

.slide-caption p {
    font-size: 0.92rem;
    color: #e3e3e3;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 0 14px;
}

.slider-arrow {
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: #f3d472;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.slider-arrow:hover {
    background: rgba(177, 156, 75, 0.65);
    transform: translateY(-1px);
}

.slider-dots {
    display: flex;
    gap: 6px;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(243, 212, 114, 0.6);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease, width 0.2s ease;
}

.slider-dot.active {
    background: #f3d472;
    width: 18px;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr;
    gap: 24px;
    margin-top: 16px;
}

.contact-details p,
.contact-details ul {
    font-size: 0.95rem;
    color: #e3e3e3;
}

.contact-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-list i {
    margin-top: 4px;
    color: #f3d472;
}

.contact-list a {
    color: #f3d472;
}

.contact-list a:hover {
    text-decoration: underline;
}

.contact-form-wrapper h3 {
    margin-bottom: 10px;
    color: #f3d472;
}

.form-kicker {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a0a4ae;
    margin-bottom: 4px;
    border-radius: 999px;
    padding: 3px 10px;
    border: 1px solid rgba(177, 156, 75, 0.25);
    background: rgba(0, 0, 0, 0.4);
}

.contact-form .form-group {
    margin-bottom: 10px;
}

.contact-form label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: #e3e3e3;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #343942;
    font-size: 0.9rem;
    background: #050608;
    color: #fcfcfb;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #777b84;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #b19c4b;
    outline: none;
}

.contact-submit-btn {
    margin-top: 6px;
}

/* Alerts */
.alert {
    background: rgba(22, 101, 52, 0.3);
    color: #bbf7d0;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    border: 1px solid rgba(22, 101, 52, 0.7);
}

/* ===== Footer ===== */
.site-footer {
    background: #000000;
    color: #b5b9c2;
    padding: 16px 0;
    margin-top: 24px;
    border-top: 1px solid rgba(177, 156, 75, 0.45);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.85rem;
}

.footer-brand-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-brand {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f3d472;
    font-size: 0.9rem;
}

.footer-subbrand {
    font-size: 0.8rem;
    color: #d0d0d0;
}

.footer-center {
    text-align: center;
    flex: 1 1 220px;
}

.footer-note {
    font-size: 0.78rem;
    color: #9ca0aa;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    justify-content: flex-end;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #d6d9e0;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.footer-link i {
    font-size: 0.8rem;
    color: #f3d472;
}

.footer-link:hover {
    border-color: rgba(177, 156, 75, 0.45);
    background: rgba(177, 156, 75, 0.12);
    color: #ffffff;
}

.footer-social i {
    color: #1877f2;
}

/* === CHRISTMAS / HOLIDAY SEASON STYLES === */

/* Big banner at the top – darker, red → green */
.seasonal-banner {
    position: relative;
    overflow: hidden;
    padding: 1.75rem 0;
    background:
        linear-gradient(115deg, #3b0f0f 0%, #7f1d1d 32%, #065f46 100%);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    animation: seasonal-banner-glow 6s ease-in-out infinite;
    z-index: 5;
}

.seasonal-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(248, 250, 252, 0.2), transparent 60%),
        radial-gradient(circle at 80% 100%, rgba(15, 23, 42, 0.7), transparent 65%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.seasonal-banner-inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.seasonal-message {
    max-width: 640px;
}

.seasonal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(0, 0, 0, 0.35);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 0.6rem;
}

.seasonal-kicker i {
    font-size: 1rem;
}

.seasonal-title {
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

.seasonal-text {
    margin: 0.2rem 0;
    font-size: 0.95rem;
}

.seasonal-text.secondary {
    opacity: 0.9;
    font-style: italic;
}

/* row of emojis 🎄🎅🎁❄️ */
.seasonal-emoji-row {
    display: inline-flex;
    gap: 0.5rem;
    font-size: 1.4rem;
    margin-top: 0.75rem;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
}

.seasonal-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 360px;
}

.seasonal-pillar {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    padding: 0.65rem 0.75rem;
    border-radius: 0.9rem;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    animation: seasonal-pillar-float 7s ease-in-out infinite;
}

.seasonal-pillar:nth-child(2) {
    animation-delay: 0.8s;
}

.seasonal-pillar:nth-child(3) {
    animation-delay: 1.4s;
}

.seasonal-pillar-icon {
    font-size: 1.4rem;
    margin-top: 0.15rem;
}

.seasonal-pillar h3 {
    font-size: 0.95rem;
    margin: 0 0 0.1rem;
}

.seasonal-pillar p {
    font-size: 0.85rem;
    margin: 0;
}

/* Snow / star animation */

.snow-container {
    pointer-events: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 9999;
}

.snowflake {
    position: absolute;
    top: -10vh;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    animation: snow-fall 18s linear infinite;
}

/* FALLING snow keyframes (single animation) */
@keyframes snow-fall {
    0% {
        transform: translate3d(0, -10vh, 0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translate3d(10vw, 110vh, 0) rotate(360deg);
        opacity: 0;
    }
}

@keyframes seasonal-banner-glow {
    0%, 100% {
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }
    50% {
        box-shadow: 0 20px 48px rgba(127, 29, 29, 0.7);
    }
}

@keyframes seasonal-pillar-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes ornament-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes hero-chip-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(248, 250, 252, 0.18);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(248, 250, 252, 0);
    }
}

/* RESPONSIVE for banner */
@media (max-width: 768px) {
    .seasonal-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .seasonal-title {
        font-size: 1.3rem;
    }

    .seasonal-highlights {
        width: 100%;
    }
}

/* === FAIRY LIGHTS UNDER HEADER === */
.xmas-lights {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    pointer-events: none;
    height: 38px;
}

.xmas-lights-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.xmas-lights-inner::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    border-top: 2px solid rgba(248, 250, 252, 0.25);
    border-radius: 50%;
    opacity: 0.7;
}

.xmas-bulb {
    position: relative;
    width: 10px;
    height: 16px;
    border-radius: 50% 50% 60% 60%;
    background: #facc15;
    box-shadow: 0 0 6px rgba(250, 204, 21, 0.8);
    transform-origin: top center;
    animation:
        xmas-bulb-swing 2.8s ease-in-out infinite,
        xmas-bulb-glow 1.8s ease-in-out infinite alternate;
}

/* small cap on top of bulb */
.xmas-bulb::before {
    content: "";
    position: absolute;
    top: -4px;
    left: 2px;
    right: 2px;
    height: 4px;
    border-radius: 3px 3px 0 0;
    background: #111827;
}

/* color variations */
.xmas-bulb:nth-child(4n+1) {
    background: #facc15;
    box-shadow: 0 0 8px rgba(250, 204, 21, 0.9);
}
.xmas-bulb:nth-child(4n+2) {
    background: #f97316;
    box-shadow: 0 0 8px rgba(248, 113, 113, 0.9);
}
.xmas-bulb:nth-child(4n+3) {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.9);
}
.xmas-bulb:nth-child(4n+4) {
    background: #38bdf8;
    box-shadow: 0 0 8px rgba(56, 189, 248, 0.9);
}

/* swing + glow animations */
@keyframes xmas-bulb-swing {
    0% { transform: rotate(3deg); }
    50% { transform: rotate(-4deg); }
    100% { transform: rotate(3deg); }
}

@keyframes xmas-bulb-glow {
    0% { opacity: 0.8; filter: brightness(0.9); }
    100% { opacity: 1; filter: brightness(1.25); }
}

/* === GLOBAL CHRISTMAS THEME WHEN BODY HAS CLASS === */

.is-holiday-season .btn-primary {
    background: linear-gradient(135deg, #facc15, #f97316, #ef4444);
    color: #0b0e13;
}

.is-holiday-season .btn-primary:hover {
    box-shadow: 0 12px 24px rgba(248, 113, 113, 0.6);
}

.is-holiday-season .btn-outline {
    border-color: #facc15;
    color: #facc15;
}

.is-holiday-season .btn-outline:hover {
    background: rgba(248, 113, 113, 0.15);
}

/* Snow caps on buttons – chunkier like sample */
.is-holiday-season .btn-primary::before,
.is-holiday-season .btn-outline::before {
    content: "";
    position: absolute;
    left: -4px;
    right: -4px;
    top: -12px;
    height: 26px;
    background:
        radial-gradient(circle at 10% 120%, #ffffff 0 26%, transparent 27%) 0 0 / 22px 18px repeat-x,
        radial-gradient(circle at 35% 120%, #f9fafb 0 26%, transparent 27%) 11px 2px / 22px 18px repeat-x,
        linear-gradient(to bottom, #ffffff, #e5f0ff 65%, transparent 100%);
    border-radius: 999px 999px 60% 60%;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.55);
    opacity: 0.97;
    pointer-events: none;
}

/* Section headings with Christmas icon */
.is-holiday-season .section h2 {
    position: relative;
    padding-top: 0.5rem;
}

.is-holiday-season .section h2::before {
    content: "🎄";
    display: block;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

/* Light red/green glow under cards */
.is-holiday-season .hero-card,
.is-holiday-season .about-box,
.is-holiday-season .service-card,
.is-holiday-season .job-category,
.is-holiday-season .partner-card,
.is-holiday-season .slider-wrapper,
.is-holiday-season .contact-form-wrapper,
.is-holiday-season .contact-details {
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.2), 0 0 0 1px rgba(74, 222, 128, 0.12);
}

/* Slight tint on sections */
.is-holiday-season .services-section {
    background: radial-gradient(circle at top, rgba(34, 197, 94, 0.16), transparent 60%), #04060b;
}

.is-holiday-season .jobs-section {
    background: radial-gradient(circle at top, rgba(239, 68, 68, 0.18), transparent 60%), #050609;
}

/* Footer top border red/green */
.is-holiday-season .site-footer {
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, #22c55e, #facc15, #ef4444) 1;
}

/* ===== Responsive design ===== */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .services-grid,
    .jobs-grid,
    .partners-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .slide {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .header-inner {
        align-items: flex-start;
    }

    .main-nav {
        display: none;
        width: 100%;
        margin-top: 12px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-top: 1px solid rgba(177, 156, 75, 0.25);
    }

    .main-nav a {
        display: block;
        padding: 10px 0;
    }

    .nav-toggle {
        display: inline-block;
    }

    .about-grid,
    .services-grid,
    .jobs-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .logo-text h1 {
        font-size: 0.96rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-center {
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
    }
}
