@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --axis-blue: #0d47a1;
    --axis-blue-hover: #0a3578;
    --axis-light-blue: #e3f2fd;
    --axis-dark-blue: #092c63;
    --axis-deep-slate: #0b1329;
    --axis-slate-blue: #1e293b;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --header-height: 104px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--axis-blue);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

/* ==========================================================================
   Header Layout Controls
   ========================================================================== */
.site-header.pinned-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 0.85) 90%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.015);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.nav-logo {
    height: 84px;
    width: auto;
    display: block;
    filter: drop-shadow(0px 2px 8px rgba(0,0,0,0.12));
}

.header-left { display: flex; align-items: center; gap: 30px; }
.header-social-icons { display: flex; align-items: center; gap: 15px; }
.social-icon-link { color: var(--axis-blue); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth); border-radius: 50%; background: var(--axis-light-blue); padding: 7px; }
.social-icon-link:hover { background-color: var(--axis-blue); color: #ffffff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(13, 71, 161, 0.2); }
.social-icon-link svg { width: 100%; height: 100%; }

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 4px 0;
    transition: var(--transition-smooth);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--axis-blue);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--axis-blue);
    transition: var(--transition-smooth);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* ==========================================================================
   Hero Section Layout
   ========================================================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: var(--bg-white);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.8) 100%),
                linear-gradient(to top, rgba(13, 71, 161, 0.4) 0%, transparent 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding: 0 32px;
}

.animate-on-load {
    animation: heroEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
}

.hero-title .highlight {
    color: #ffffff;
    background: linear-gradient(to right, #38bdf8, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 48px;
    letter-spacing: -0.01em;
}

.fade-text {
    display: inline-block;
    font-weight: 700;
    color: #38bdf8;
    text-shadow: 0 2px 10px rgba(56, 189, 248, 0.2);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-out { opacity: 0; transform: translateY(-12px); }
.fade-in { opacity: 1; transform: translateY(0); }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.mouse-wheel {
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    position: relative;
}

.mouse-wheel::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 2px;
    animation: dropScroll 1.8s infinite ease-in-out;
}

@keyframes heroEntrance {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes dropScroll {
    0% { opacity: 0; top: 6px; }
    30% { opacity: 1; }
    100% { opacity: 0; top: 18px; }
}

/* ==========================================================================
   Buttons Framework
   ========================================================================== */
.hero-ctas { display: flex; gap: 20px; justify-content: center; }

.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--axis-blue);
    color: var(--bg-white);
    border: 2px solid var(--axis-blue);
    box-shadow: 0 4px 14px rgba(13, 71, 161, 0.3);
}

.btn-primary:hover {
    background-color: var(--axis-blue-hover);
    border-color: var(--axis-blue-hover);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--axis-blue);
    border-color: var(--bg-white);
    transform: translateY(-3px);
}

/* ==========================================================================
   General Components
   ========================================================================== */
.section-lead { font-size: 1.4rem; color: var(--text-muted); max-width: 850px; font-weight: 400; }
.section-tagline { display: inline-block; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--axis-blue); margin-bottom: 12px; }
.grid-2col { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.info-column .address { font-size: 1.35rem; margin: 20px 0; }
.info-column .phone { font-size: 1.75rem; font-weight: 700; color: var(--axis-blue); margin-bottom: 32px; }

/* ==========================================================================
   Capabilities Section Ticker Track
   ========================================================================== */
.capabilities-split { align-items: center; }
.capabilities-right { position: relative; width: 100%; }

.capabilities-ticker-window {
    position: relative; height: 380px; overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    border-radius: 16px; padding: 24px; border: 1px solid rgba(13, 71, 161, 0.08);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.02);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.capabilities-track { display: flex; flex-direction: column; gap: 16px; }

.ticker-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.ticker-item {
    background-color: var(--bg-white); color: var(--text-main); padding: 18px 24px;
    border-radius: 10px; font-weight: 600; font-size: 1.15rem; border-left: 4px solid var(--axis-blue);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03); transition: transform 0.3s ease, background-color 0.3s ease;
}
.ticker-item:hover { transform: translateX(6px); background-color: var(--axis-light-blue); }

/* ==========================================================================
   CINEMATIC ADAPTIVE JOBSITES SLIDER
   ========================================================================== */
.jobsites-slider-wrapper {
    position: relative;
    background-color: var(--bg-light);
    padding: 20px 0 40px 0;
    overflow: hidden;
}

.slider-static-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 16px auto;
    padding: 0 32px;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-static-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: var(--axis-dark-blue);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-static-header .tag-to-fade,
.slider-static-header .lead-to-fade {
    opacity: 1;
    max-height: 100px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-static-header.minimized-state {
    margin-bottom: 12px;
}
.slider-static-header.minimized-state .section-title {
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}
.slider-static-header.minimized-state .tag-to-fade,
.slider-static-header.minimized-state .lead-to-fade {
    opacity: 0;
    max-height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.slider-viewport {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-height) - 80px); 
    min-height: 520px;
    background: #091326;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15,23,42,0.15);
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider-viewport.first-slide-view {
    height: calc(100vh - var(--header-height) - 220px);
    min-height: 420px;
}

.job-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: 1; opacity: 0;
    will-change: transform, opacity;
}

.job-slide.enter-right { transform: translateX(100%); opacity: 0; }
.job-slide.enter-left { transform: translateX(-100%); opacity: 0; }

.job-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    transition: opacity 0.7s linear, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.job-slide.exit-left {
    opacity: 0; transform: translateX(-100%); z-index: 1;
    transition: opacity 0.7s linear, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.job-slide.exit-right {
    opacity: 0; transform: translateX(100%); z-index: 1;
    transition: opacity 0.7s linear, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(15,23,42,0.1) 0%, rgba(15,23,42,0.05) 50%, rgba(9,44,99,0.7) 100%);
    z-index: 2;
}

.slide-footer-card {
    position: absolute; bottom: 0; left: 0; width: 100%; min-height: 20%;
    background: linear-gradient(135deg, rgba(9, 44, 99, 0.95) 0%, rgba(11, 19, 41, 0.97) 100%);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    z-index: 3; border-top: 2px solid rgba(56, 189, 248, 0.3);
    padding: 24px 64px;
    display: grid; grid-template-columns: 1.1fr 0.5fr 0.4fr;
    gap: 32px; align-items: center;
    transform: translateY(100%); transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.job-slide.active .slide-footer-card { transform: translateY(0); }

.slide-card-left h3, .slide-card-left h4, .slide-card-left p, .slide-card-center, .slide-card-right * {
    opacity: 0; transform: translateY(15px); transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

.job-slide.active .slide-footer-card h3, .job-slide.active .slide-footer-card h4 {
    opacity: 1; transform: translateY(0); transition-delay: 0.4s;
}

.job-slide.active .slide-footer-card .slide-description,
.job-slide.active .slide-footer-card .slide-card-center,
.job-slide.active .slide-footer-card .slide-card-right * {
    opacity: 1; transform: translateY(0); transition-delay: 0.6s;
}

.slide-card-left h3 { color: #ffffff; font-size: 1.6rem; font-weight: 800; margin-bottom: 2px; }
.slide-card-left h4 { color: #38bdf8; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.slide-card-left .slide-description { color: #cbd5e1; font-size: 0.9rem; line-height: 1.4; }

.slide-card-center { text-align: center; }

/* Persistent Button Color State Logic (Prevents Purple Visited Shifting) */
.btn-slider-cta, 
.btn-slider-cta:visited {
    background-color: #38bdf8;
    color: var(--axis-dark-blue);
    border: 1px solid #38bdf8;
    padding: 12px 24px;
    font-size: 0.95rem;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-slider-cta:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--axis-blue);
    transform: translateY(-2px);
}

.slide-card-right { border-left: 1px solid rgba(255,255,255,0.1); padding-left: 40px; text-align: right; }
.location-label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: #94a3b8; margin-bottom: 2px; }
.location-text { color: #ffffff; font-size: 1.35rem; font-weight: 700; }

.slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.6); border: 1px solid rgba(255,255,255,0.15);
    color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 1.8rem;
    line-height: 1; cursor: pointer; z-index: 10; transition: var(--transition-smooth);
}
.slider-arrow:hover { background: var(--axis-blue); border-color: #38bdf8; scale: 1.05; }
.arrow-left { left: 24px; }
.arrow-right { right: 24px; }

.slider-thumbnails-container {
    position: absolute;
    bottom: 23%; 
    left: 50%; transform: translateX(-50%);
    z-index: 15; display: flex; gap: 20px;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.first-slide-view .slider-thumbnails-container { bottom: 26%; }
.thumb-wrapper { display: flex; flex-direction: column; gap: 6px; width: 75px; cursor: pointer; }
.thumb-progress-bar { width: 100%; height: 3px; background: rgba(255,255,255,0.25); border-radius: 2px; overflow: hidden; }
.thumb-progress-fill { width: 0%; height: 100%; background: #38bdf8; transition: width 0.1s linear; }
.thumb-dot { width: 100%; height: 48px; border-radius: 4px; background-size: cover; background-position: center; border: 2px solid rgba(255,255,255,0.4); pointer-events: none; box-shadow: 0 4px 10px rgba(0,0,0,0.3); transition: var(--transition-smooth); }
.thumb-wrapper.active .thumb-dot { border-color: #38bdf8; scale: 1.08; box-shadow: 0 0 12px rgba(56, 189, 248, 0.4); }

/* ==========================================================================
   Image Callout Section
   ========================================================================== */
.image-panel-section {
    position: relative; padding: 160px 0; background-size: cover; background-position: center;
    background-attachment: fixed; color: #ffffff; overflow: hidden;
}
.image-panel-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(11, 19, 41, 0.92) 0%, rgba(13, 71, 161, 0.65) 100%); z-index: 1;
}

/* ==========================================================================
   CAREERS LAYOUT: OFFSET MOSAIC FRAMEWORK (WITH SLOW DRIFT MOTION)
   ========================================================================== */
.careers-showcase-section {
    background-color: var(--bg-white);
    padding: 140px 0;
    overflow: hidden;
}

.grid-careers {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.section-lead-careers {
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Double Dual Action Layout Blocks */
.careers-action-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.action-card {
    background: var(--bg-light);
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 28px;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.action-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--axis-dark-blue);
    margin-bottom: 6px;
}

.action-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Button Custom Settings */
.btn-career-primary {
    display: inline-block;
    background-color: var(--axis-blue);
    color: #ffffff;
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}
.btn-career-primary:hover {
    background-color: var(--axis-blue-hover);
    transform: translateX(4px);
}

.btn-career-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: 2px solid var(--axis-blue);
    color: var(--axis-blue);
    padding: 10px 26px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}
.btn-career-outline:hover {
    background-color: var(--axis-blue);
    color: #ffffff;
}

.download-icon {
    width: 18px;
    height: 18px;
}

/* Mosaic Grid Container */
.careers-mosaic-grid {
    position: relative;
    width: 100%;
    height: 560px;
}

.mosaic-item {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(11, 19, 41, 0.12);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), z-index 0.3s steps(1), box-shadow 0.5s ease;
    z-index: 2;
}

/* Individual Coordinates */
.mosaic-item.frame-1 {
    top: 0; left: 10%;
    width: 50%; height: 260px;
}
.mosaic-item.frame-2 {
    top: 40px; right: 0;
    width: 36%; height: 180px;
}
.mosaic-item.frame-3 {
    top: 290px; left: 0;
    width: 32%; height: 230px;
}
.mosaic-item.frame-4 {
    top: 280px; left: 36%;
    width: 38%; height: 260px;
}
.mosaic-item.frame-5 {
    top: 240px; right: 0;
    width: 22%; height: 160px;
}

/* Hover Effects */
.mosaic-item:hover {
    transform: scale(1.06) translateY(-5px);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(11, 19, 41, 0.22);
}

/* ==========================================================================
   CONTACT SECTION: METICULOUS LOCATION GRAPHIC GRADIENT SYSTEM
   ========================================================================== */
.contact-location-grid {
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--axis-light-blue) 100%);
    position: relative;
    z-index: 1;
}

/* Immersive Frame Container for Map Component */
.map-container-frame {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(13, 71, 161, 0.12);
    border: 1px solid rgba(13, 71, 161, 0.1);
    background-color: var(--bg-light);
}

.map-container-frame iframe {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* ==========================================================================
   Direction Reveal Transitions
   ========================================================================== */
.direction-reveal {
    opacity: 0; transform: translateY(40px) scale(0.98);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}
.direction-reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

/* ==========================================================================
   PREMIUM SIGNATURE BLUE FOOTER
   ========================================================================== */
.site-footer { 
    background-color: #051d45; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 60px 0; 
    color: #ffffff;
}

.footer-container { 
    max-width: 1280px; 
    margin: 0 auto; 
    padding: 0 32px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 40px;
}

.footer-left p { 
    color: #94a3b8; 
    font-size: 0.95rem; 
}

.footer-middle {
    text-align: center;
}

.license-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    padding: 6px 16px;
    border-radius: 4px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    display: inline-block;
}

.footer-right {
    display: flex;
    align-items: center;
}

.back-to-top { 
    display: flex; 
    align-items: center; 
    text-decoration: none; 
    gap: 20px; 
    transition: var(--transition-smooth);
}

.back-to-top .back-text {
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.back-to-top:hover .back-text {
    color: #38bdf8;
}

.footer-logo { 
    height: 90px; 
    width: auto; 
    display: block;
    max-width: 100%;
    background-color: #ffffff;
    padding: 10px 14px;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    opacity: 0.95;
    transition: var(--transition-smooth);
}

.back-to-top:hover .footer-logo {
    opacity: 1;
    transform: translateY(-3px);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 960px) {
    .section-title { font-size: 2rem; }
    .opener-content h1 { font-size: 2.5rem; }
    .values-grid { grid-template-columns: 1fr; }
    .footer-container { flex-direction: column; gap: 32px; text-align: center; }
    .back-to-top { align-items: center; }
    
    .facebook-feed-wrapper {
        padding: 0 16px;
    }
    
    .mini-facebook-feed {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-container { flex-direction: column; gap: 24px; }
    .header-container { flex-direction: column; gap: 20px; }
    .main-nav ul { gap: 20px; font-size: 0.95rem; }
    .opener-content h1 { font-size: 2rem; }
    .opener-content p { font-size: 1.1rem; }
    .section-title { font-size: 1.75rem; }
    .section-padding { padding: 60px 0; }
    
    .facebook-feed-wrapper {
        padding: 0;
    }
    
    .facebook-feed-wrapper .fb-page {
        width: 100%;
        max-width: 100%;
    }
    
    .mini-facebook-feed {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .fb-page-cover {
        height: 150px;
    }
    
    .fb-page-info {
        padding: 16px;
    }
    
    .fb-page-info h3 {
        font-size: 1.5rem;
    }
    
    .fb-post {
        padding: 12px 16px;
    }
    
    .fb-cta-footer {
        padding: 16px;
    }
}

