/* ==========================================================================
   ULTRA-PREMIUM UI/UX CSS - DARE TO CHANGE INC.
   ========================================================================== */

:root {
    /* Refined Luxury Brand Colors */
    --brand-brown: #2d2010; 
    --brand-brown-light: #5a4835;
    --brand-tan: #e6b788; 
    --brand-tan-light: #fdf5ec;
    --brand-blue: #324c66; 
    --brand-blue-light: #f0f6fa;
    
    /* Premium Neutrals */
    --white: #ffffff;
    --bg-light: #fbfaf8; 
    --border-light: rgba(45, 32, 16, 0.06);
    --border-glass: rgba(255, 255, 255, 0.5);

    /* Typography - Clean Tech Aesthetic */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Apple-Tier Architecture */
    --radius-xl: 40px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 100px;
    
    /* Million-Dollar Micro-Interactions & Shadows */
    --transition-fast: 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-spring: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-glass: 0 8px 32px rgba(45, 32, 16, 0.08);
    --shadow-bento: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-bento-hover: 0 20px 60px rgba(45, 32, 16, 0.08);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
}

/* =========================================================
   BASE SETUP & TYPOGRAPHY
   ========================================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--brand-brown);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; 
}

h1, h2, h3, h4 { font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; }
.hero-title { font-size: clamp(3rem, 7vw, 7rem); letter-spacing: -0.05em; }
.section-title { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.04em; }
.card-title { font-size: clamp(1.5rem, 3vw, 2.2rem); letter-spacing: -0.03em; }
.hero-subtext { font-size: clamp(1.1rem, 2vw, 1.25rem); font-weight: 400; max-width: 500px; color: var(--brand-brown-light); }

.text-brown { color: var(--brand-brown) !important; }
.text-brown-light { color: var(--brand-brown-light); }
.text-tan { color: var(--brand-tan); }
.text-blue { color: var(--brand-blue); }
.text-white { color: var(--white) !important; }

.bg-brown { background-color: var(--brand-brown-light) !important; } 
.bg-tan { background-color: var(--brand-tan) !important; }
.bg-tan-light { background-color: var(--brand-tan-light); }
.bg-blue { background-color: var(--brand-blue); }
.bg-blue-light { background-color: var(--brand-blue-light); }
.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--bg-light); }

.font-semibold { font-weight: 600; }
.text-sm { font-size: 0.9rem; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.06em; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }

/* =========================================================
   LAYOUT UTILITIES
   ========================================================= */
.container { max-width: 1440px; margin: 0 auto; padding: 0 2.5rem; }
.section-padding { padding: 8rem 0; }
.pt-0 { padding-top: 0 !important; }
.pb-4 { padding-bottom: 4rem !important; }
.p-0 { padding: 0 !important; }
.p-1 { padding: 1rem !important; }
.p-3 { padding: 2.5rem; }
.p-4 { padding: 4rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mt-4 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 2.5rem; }
.mb-4 { margin-bottom: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.max-w-800 { max-width: 800px; }

/* Flexbox safe utilities */
.flex-row { display: flex; flex-direction: row; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 1rem; }
.align-center { align-items: center; }
.display-flex-center { display: flex; flex-direction: column; justify-content: center; align-items: center; }
.text-center { text-align: center; }

.border-subtle { border: 1px solid var(--border-light); }
.border-bottom { border-bottom: 1px solid var(--border-light); }
.border-top { border-top: 1px solid var(--border-light); }
.border-none { border: none !important; }
.overflow-hidden { overflow: hidden; }

/* =========================================================
   THE FLOATING GLASS NAVBAR & MOBILE MENU
   ========================================================= */
.navbar { 
    position: fixed; top: 25px; left: 0; 
    width: 100%; max-width: 100%; transform: none;
    z-index: 1000; transition: var(--transition-spring); 
    pointer-events: none;
}
.glass-panel {
    display: flex; justify-content: space-between; align-items: center;
    pointer-events: auto;
    margin: 0 auto;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0 4%;
    width: 100%;
    max-width: 1800px;
    transition: var(--transition-spring);
    position: relative;
}

.navbar.scrolled .glass-panel { 
    background: transparent; 
    box-shadow: none; 
}

/* 1. The Bulletproof Logo Sizing */
.logo { flex: 1; display: flex; align-items: center; justify-content: flex-start; }
.logo a { display: block; }
.logo img, .nav-logo-img {
    height: 28px !important; 
    max-height: 28px !important;
    width: auto !important;
    object-fit: contain;
    transition: var(--transition-fast);
    display: block;
}
.logo img:hover, .nav-logo-img:hover { transform: scale(1.05); }

/* 2. Navigation Links — True Centered with Flex */
.nav-links { 
    display: flex; gap: 0.5rem; align-items: center;
    justify-content: center;
    white-space: nowrap;
}
.nav-links a { 
    color: var(--brand-brown); text-decoration: none; 
    font-size: 0.85rem; font-weight: 600; 
    padding: 0.6rem 1.4rem;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease; 
}
.nav-links a:hover { background: rgba(255, 255, 255, 1); transform: translateY(-2px); }

/* 3. Action Buttons */
.nav-action { flex: 1; display: flex; gap: 0.5rem; align-items: center; justify-content: flex-end; } 

/* 3. Mobile Menu — Premium Glass */
.mobile-menu-btn {
    display: none; background: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.4);
    font-size: 1.5rem; color: var(--brand-brown); cursor: pointer; padding: 0.5rem 0.7rem;
    outline: none; border-radius: 12px; backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); transition: var(--transition-fast);
}
.mobile-menu-btn:hover { background: rgba(255,255,255,0.9); }

.mobile-dropdown {
    display: none; position: absolute; top: calc(100% + 12px); left: 5%; width: 90%;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255,255,255,0.3) inset;
    flex-direction: column; padding: 0.8rem;
    overflow: hidden; opacity: 0; transform: translateY(-15px) scale(0.97);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-dropdown.active { display: flex; opacity: 1; transform: translateY(0) scale(1); }

.mobile-dropdown a {
    padding: 0.9rem 1.2rem; color: var(--brand-brown); text-decoration: none;
    font-weight: 600; font-size: 1rem; border-radius: 12px;
    transition: all 0.2s ease; margin-bottom: 2px;
}
.mobile-dropdown a:last-child { margin-bottom: 0; }
.mobile-dropdown a:hover { background: rgba(230, 183, 136, 0.15); color: var(--brand-tan); padding-left: 1.6rem; }
.mobile-dropdown a:active { background: rgba(230, 183, 136, 0.25); transform: scale(0.98); }

/* =========================================================
   PREMIUM BUTTONS & INPUTS
   ========================================================= */
.btn-primary { 
    background: var(--brand-brown); color: var(--white); 
    padding: 0.9rem 1.8rem; border-radius: var(--radius-pill); 
    text-decoration: none; font-weight: 600; font-size: 0.95rem; 
    transition: var(--transition-fast); display: inline-flex; justify-content: center; align-items: center;
    box-shadow: 0 4px 14px rgba(45, 32, 16, 0.2); border: none; cursor: pointer; text-align: center;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45, 32, 16, 0.3); background: var(--brand-tan); color: var(--brand-brown); }
.btn-large { padding: 1.25rem 2.5rem; font-size: 1.1rem; }

.btn-nav-outline {
    background: rgba(45, 32, 16, 0.03); color: var(--brand-brown);
    padding: 0.9rem 1.5rem; border-radius: var(--radius-pill);
    border: 1px solid transparent; text-decoration: none;
    font-weight: 600; font-size: 0.95rem; transition: var(--transition-fast);
    display: inline-flex; justify-content: center; align-items: center; text-align: center;
}
.btn-nav-outline:hover { background: var(--brand-tan-light); color: var(--brand-tan); border-color: var(--brand-tan); }

.btn-text { color: var(--brand-brown); font-weight: 600; text-decoration: none; display: inline-block; transition: var(--transition-fast); font-size: 1.1rem; }
.btn-text:hover { color: var(--brand-tan); transform: translateX(6px); }

.pill-tag {
    display: inline-block; padding: 0.6rem 1.2rem; 
    border-radius: var(--radius-pill); font-size: 0.85rem; 
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}

.premium-input {
    background: var(--bg-light); border: 1px solid var(--border-light);
    padding: 1.2rem 1.5rem; border-radius: var(--radius-pill);
    font-family: var(--font-sans); font-size: 1rem; color: var(--brand-brown);
    outline: none; transition: var(--transition-fast); width: 100%; box-sizing: border-box;
}
.premium-input:focus { border-color: var(--brand-tan); background: var(--white); box-shadow: 0 0 0 4px var(--brand-tan-light); }

/* =========================================================
   HERO ARCHITECTURE
   ========================================================= */
.hero { 
    position: relative; padding-top: 220px; padding-bottom: 4rem;
    overflow: hidden; border-bottom-left-radius: var(--radius-xl); border-bottom-right-radius: var(--radius-xl);
}
.hero-bg-art { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
.art-grid {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(var(--brand-tan) 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.15;
    mask-image: radial-gradient(ellipse at center, black 10%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 80%);
}
.hero-bento { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; min-height: 70vh; }
.hero-text-card { display: flex; flex-direction: column; justify-content: center; z-index: 10; }
.hero-image-wrapper { position: relative; width: 100%; height: 100%; max-height: 75vh; display: flex; justify-content: center; align-items: center; z-index: 1; }
.hero-backdrop-art {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-15deg);
    width: 200%; height: 100%; z-index: 1; display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 3rem; pointer-events: none; 
}
.static-banner {
    width: 100%; padding: 1.5rem 0; text-align: center; font-size: clamp(2rem, 3.5vw, 4rem); 
    text-transform: uppercase; font-weight: 900; letter-spacing: 0.05em; white-space: nowrap;
    box-shadow: 0 15px 30px rgba(45, 32, 16, 0.2);
}
.banner-tan { background-color: var(--brand-tan); color: var(--brand-brown); }
.banner-brown { background-color: var(--brand-brown-light); color: var(--brand-tan); }

.slide-from-right { animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.slide-from-left { animation: slideInLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

@keyframes slideInRight { 0% { transform: translateX(100vw); opacity: 0; } 100% { transform: translateX(0); opacity: 1; } }
@keyframes slideInLeft { 0% { transform: translateX(-100vw); opacity: 0; } 100% { transform: translateX(0); opacity: 1; } }

.hero-cutout-img {
    width: 100%; height: 100%; max-height: 75vh; object-fit: contain; 
    filter: drop-shadow(-15px 25px 35px rgba(45, 32, 16, 0.25)); z-index: 5; 
    position: relative; transition: var(--transition-spring); transform-origin: bottom center;
    animation: popInGuy 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-cutout-img:hover { transform: scale(1.05) rotate(-2deg); filter: drop-shadow(-20px 30px 45px rgba(45, 32, 16, 0.35)); }

/* =========================================================
   APPLE-TIER BENTO BOX LAYOUTS
   ========================================================= */
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; grid-auto-rows: minmax(320px, auto); }
.bento-2x2 { grid-template-columns: repeat(2, 1fr); }
.col-span-2 { grid-column: span 2; }
.row-span-2 { grid-row: span 2; }

.bento-card {
    border-radius: var(--radius-xl); padding: 3.5rem; 
    display: flex; flex-direction: column; justify-content: center;
    background: var(--white); border: 1px solid var(--border-light);
    box-shadow: var(--shadow-bento); transition: var(--transition-spring); position: relative;
}
.bento-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-bento-hover); }
.bento-card.bg-brown, .bento-card.bg-blue-light, .bento-card.bg-tan-light { border: none; }

.card-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.8rem; font-weight: 300; }
.bento-inner-img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius-lg); }
.cover-img { width: 100%; height: 100%; object-fit: cover; }
.avatar-img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 4px solid var(--brand-tan); }

.stats-grid-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
.stat-item h3 { font-size: clamp(3rem, 5vw, 4.5rem); letter-spacing: -0.05em; line-height: 1; margin-bottom: 0.5rem; }
.stat-item p { font-size: 1rem; opacity: 0.85; font-weight: 500; } 

.impact-bento { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; }
.impact-text { border-radius: var(--radius-xl); display: flex; flex-direction: column; justify-content: center; box-shadow: var(--shadow-bento); }
.impact-image { border-radius: var(--radius-xl); min-height: 450px; box-shadow: var(--shadow-bento); }

.modern-list { list-style: none; }
.modern-list li { padding: 1.2rem 0; border-bottom: 1px solid var(--border-light); font-size: 1.3rem; transition: var(--transition-fast); }
.modern-list li:hover { color: var(--brand-tan); padding-left: 10px; }
.modern-list li:last-child { border-bottom: none; }

.hover-zoom { transition: var(--transition-fast); }
.hover-zoom:hover { transform: scale(1.02); }

/* Reveal Animations */
.fade-up { opacity: 0; transform: translateY(50px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@keyframes popInGuy { 0% { opacity: 0; transform: scale(0.95) translateY(20px); } 100% { opacity: 1; transform: scale(1) translateY(0); } }

/* =========================================================
   SPECIAL COMPONENT: ABOUT PAGE LOGOS & TEAM
   ========================================================= */
.logo-scroll-container { display: flex; gap: 3rem; overflow-x: auto; padding: 2rem 0; scrollbar-width: none; align-items: center; }
.logo-scroll-container::-webkit-scrollbar { display: none; }
.partner-logo { max-height: 80px; max-width: 150px; object-fit: contain; transition: var(--transition-fast); }
.partner-logo:hover { opacity: 1; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.team-card { text-align: center; padding: 2rem 1rem; background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border-light); transition: var(--transition-fast); }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-bento); border-color: var(--brand-tan); }

/* =========================================================
   SPECIAL COMPONENT: STORYTELLING VIDEO GALLERY
   ========================================================= */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px; margin-bottom: 3rem; }
.filter-btn { background: none; border: none; font-size: 0.95rem; color: var(--brand-brown-light); cursor: pointer; font-weight: 500; transition: var(--transition-fast); }
.filter-btn:hover, .filter-btn.active { color: var(--brand-blue); font-weight: 700; }
.filter-separator { color: #ccc; font-size: 0.9rem; pointer-events: none; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; }
.video-card { display: block; text-decoration: none; transition: var(--transition-fast); }
.video-card:hover { transform: translateY(-5px); }
.video-thumb-wrapper { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; margin-bottom: 1rem; border-radius: var(--radius-md); }
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-fast); }
.video-card:hover img { transform: scale(1.05); }

.play-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.2); display: flex; justify-content: center; align-items: center; opacity: 0; transition: var(--transition-fast); }
.video-card:hover .play-overlay { opacity: 1; }
.play-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--brand-blue); font-size: 1.5rem; padding-left: 4px; }

.video-meta { font-size: 0.85rem; color: var(--brand-brown-light); margin-bottom: 0.5rem; }
.video-title { font-size: 1.5rem; font-weight: 800; color: var(--brand-blue); line-height: 1.2; letter-spacing: -0.03em; }

/* =========================================================
   LIVE AI CHAT WIDGET & TYPING INDICATOR
   ========================================================= */
.chat-widget { position: fixed; bottom: 100px; right: 32px; width: 360px; max-width: 90vw; border-radius: var(--radius-lg); overflow: hidden; display: none; flex-direction: column; z-index: 9999; border: 1px solid var(--border-glass); background: rgba(255,255,255,0.9); backdrop-filter: blur(24px); box-shadow: var(--shadow-bento-hover); }
.chat-header { padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; background: var(--white); border-bottom: 1px solid var(--border-light); }
.status-dot { width: 12px; height: 12px; border-radius: 50%; }
.btn-close { background: transparent; border: none; font-size: 1.8rem; cursor: pointer; color: var(--brand-brown-light); transition: var(--transition-fast); }
.btn-close:hover { color: var(--brand-brown); }
.chat-body { padding: 1.5rem; height: 350px; overflow-y: auto; display: flex; flex-direction: column; gap: 1.2rem; background: rgba(251, 250, 248, 0.6); }
.bot-msg, .user-msg { padding: 1.2rem; font-size: 1rem; max-width: 85%; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); line-height: 1.5;}
.bot-msg { background: var(--white); align-self: flex-start; border-bottom-left-radius: 4px; }
.user-msg { background: var(--brand-blue); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-footer { padding: 1rem; display: flex; align-items: center; background: var(--white); border-top: 1px solid var(--border-light); }
.btn-icon { background: var(--bg-light); border: none; cursor: pointer; padding: 0.8rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: var(--transition-fast); color: var(--brand-blue); }
.btn-icon:hover { background: var(--brand-blue-light); transform: scale(1.05); }
.chat-fab { position: fixed; bottom: 32px; right: 32px; width: 68px; height: 68px; border-radius: 50%; border: none; cursor: pointer; display: flex; justify-content: center; align-items: center; z-index: 9998; transition: var(--transition-spring); box-shadow: var(--shadow-bento-hover); }
.chat-fab:hover { transform: scale(1.08) translateY(-4px); }

.typing-indicator { display: flex; gap: 5px; align-items: center; height: 20px; justify-content: center; }
.typing-dot { width: 7px; height: 7px; background-color: var(--brand-blue); border-radius: 50%; animation: typingBounce 1.4s infinite ease-in-out both; opacity: 0.7; }
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes typingBounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

/* =========================================================
   INSTAGRAM FEED MODAL
   ========================================================= */
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.social-card { aspect-ratio: 1 / 1; position: relative; cursor: pointer; background-color: #f5f5f5; border-radius: 0; box-shadow: none; border: none;}
.social-card .cover-img { object-fit: cover; width: 100%; height: 100%; background-color: #f5f5f5; }
.social-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); display: flex; justify-content: center; align-items: center; opacity: 0; transition: var(--transition-fast); }
.social-card:hover .social-overlay { opacity: 1; }
.social-overlay-text { color: white; font-weight: bold; font-size: 1.2rem; text-align: center; padding: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.video-indicator { position: absolute; top: 1rem; right: 1rem; background: rgba(0,0,0,0.5); color: white; width: 30px; height: 30px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 0.8rem; pointer-events: none; }

.ig-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); z-index: 9999; display: flex; justify-content: center; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; backdrop-filter: blur(5px); }
.ig-modal.active { opacity: 1; pointer-events: auto; }
.close-modal { position: absolute; top: 20px; right: 30px; background: none; border: none; color: white; font-size: 3rem; font-weight: 300; cursor: pointer; transition: transform 0.2s ease; z-index: 10000; }
.close-modal:hover { transform: scale(1.1); }
.ig-modal-content { background: var(--white); width: 90%; max-width: 1000px; height: 80vh; max-height: 800px; border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: row; transform: scale(0.95); transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); position: relative;}
.ig-modal.active .ig-modal-content { transform: scale(1); }
.ig-media-container { flex: 1.5; background: var(--white); display: flex; justify-content: center; align-items: center; overflow: hidden; position: relative; }
.ig-info-container { flex: 1; padding: 2rem; display: flex; flex-direction: column; overflow-y: auto; background: var(--white); border-left: 1px solid var(--border-light); }
.ig-caption { font-size: 0.95rem; line-height: 1.5; white-space: pre-wrap; color: #111; }

.ig-carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, 0.4); color: white; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1rem; cursor: pointer; z-index: 10; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: var(--transition-fast); }
.ig-carousel-btn:hover { background: rgba(0, 0, 0, 0.8); transform: translateY(-50%) scale(1.1); }
.ig-carousel-btn.left { left: 1rem; } .ig-carousel-btn.right { right: 1rem; }
.ig-dots-container { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 10; }
.ig-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(0, 0, 0, 0.15); transition: var(--transition-fast); }
.ig-dot.active { background: rgba(0, 0, 0, 0.7); transform: scale(1.2); } 

.ig-profile-header { display: flex; max-width: 900px; margin: 0 auto 3rem; gap: 4rem; align-items: center; }
.ig-profile-avatar img { width: 160px; height: 160px; border-radius: 50%; border: 3px solid #111; padding: 4px; object-fit: cover; }
.ig-profile-info { flex: 1; }
.ig-profile-info h2 { font-size: 2.2rem; margin-bottom: 0.5rem; font-weight: 700; color: #111; letter-spacing: -1px;}
.ig-stats { margin-bottom: 1.5rem; font-size: 1.1rem; color: #111; }
.ig-stats strong { font-weight: 700; }
.ig-bio p { margin-bottom: 0.2rem; font-size: 1rem; color: #111; }
.ig-bio strong { font-weight: 600; }
.ig-tabs { display: flex; justify-content: center; border-top: 1px solid #ddd; padding-top: 1rem; margin-bottom: 2rem; gap: 3.5rem; }
.ig-tab { font-weight: 600; font-size: 0.9rem; letter-spacing: 1.5px; color: #888; cursor: pointer; display: flex; align-items: center; gap: 0.5rem; transition: var(--transition-fast);}
.ig-tab.active { color: #111; border-top: 1px solid #111; margin-top: -17px; padding-top: 16px; }

/* Admin CSS Overrides */
.ig-admin-actions { position: absolute; top: 10px; right: 10px; z-index: 10; }
.btn-3dots { background: rgba(255,255,255,0.9); border: none; border-radius: 50%; width: 32px; height: 32px; font-weight: bold; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #111; box-shadow: 0 2px 5px rgba(0,0,0,0.2);}
.admin-dropdown { display: none; position: absolute; top: 40px; right: 0; background: white; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); overflow: hidden; min-width: 150px; flex-direction: column; }
.admin-dropdown.show { display: flex; }
.admin-dropdown button, .admin-dropdown a { padding: 10px 15px; text-align: left; border: none; background: none; cursor: pointer; font-size: 0.9rem; text-decoration: none; color: #111; border-bottom: 1px solid #f0f0f0; width: 100%;}
.admin-dropdown button:hover, .admin-dropdown a:hover { background: #f9f9f9; color: var(--brand-tan); }
.edit-photo-item { display: flex; justify-content: space-between; align-items: center; background: #f9f9f9; padding: 10px; border-radius: 8px; margin-bottom: 8px; border: 1px solid #eee; }

/* =========================================================
   MEDIA QUERIES (MOBILE RESPONSIVENESS)
   ========================================================= */

/* ===== TABLET (max-width: 1200px) ===== */
@media (max-width: 1200px) {
    .container { padding: 0 1.5rem; }
    .section-padding { padding: 5rem 0; }
    
    /* Navbar Mobile Toggle */
    .nav-links, .nav-action .btn-nav-outline, .nav-action .btn-primary { display: none !important; }
    .mobile-menu-btn { display: flex !important; }
    .nav-action { display: none !important; }
    .glass-panel { padding: 0.75rem 1.5rem; }
    .navbar { width: 95%; top: 15px; }
    
    /* Layouts */
    .hero { padding-top: 180px; }
    .hero-bento { grid-template-columns: 1fr; text-align: center; gap: 2rem; min-height: auto; }
    .hero-text-card { align-items: center; }
    .hero-image-wrapper { max-height: 50vh; margin-top: 2rem; }
    .hero-backdrop-art { width: 150vw; transform: translate(-50%, -50%) rotate(-10deg); }
    
    .bento-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .bento-2x2 { grid-template-columns: 1fr !important; }
    .col-span-2, .row-span-2 { grid-column: span 1 !important; grid-row: span 1; }
    
    .impact-bento { grid-template-columns: 1fr !important; gap: 1.5rem; }
    .impact-image { min-height: 280px !important; }
    
    .bento-card { padding: 2.5rem; }
    .stats-grid-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    
    /* Forms & Buttons on Tablet/Mobile */
    .modern-form { flex-direction: column; width: 100%; }
    .modern-form .premium-input { width: 100%; margin-bottom: 1rem; }
    .modern-form .btn-primary { width: 100%; }
    
    /* Feed Page */
    .ig-profile-header { flex-direction: column; text-align: center; gap: 1.5rem; }
    .social-grid { grid-template-columns: repeat(2, 1fr); }

    /* Force inline grid-column spans to collapse */
    [style*="grid-column: span"] { grid-column: span 1 !important; }
    
    /* Stack flex-row layouts */
    .flex-row { flex-wrap: wrap; }

    /* ALL INLINE 2-COLUMN GRIDS: STACK */
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: 1.5fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    /* DARE Framework: 4-col → 2-col */
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Consulting quick-nav: 4-col → 2-col */
    .quick-grid { grid-template-columns: repeat(2, 1fr) !important; }
    
    /* Service section visuals */
    .svc-visual { min-height: 250px !important; }
    
    /* Service grids: stack + fix RTL direction */
    .svc-grid, .svc-grid.reverse {
        grid-template-columns: 1fr !important;
        direction: ltr !important;
    }
    .svc-grid.reverse > * { direction: ltr !important; }
    
    /* Team grid: 2 columns on tablet */
    .team-grid-modern { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ===== TABLET PORTRAIT (max-width: 768px) ===== */
@media (max-width: 768px) {
    .container { padding: 0 1.2rem; }
    .section-padding { padding: 3.5rem 0; }
    .hero { padding-top: 140px; }
    .static-banner { font-size: 1.5rem; padding: 1rem 0; }
    .stats-grid-inner { grid-template-columns: 1fr; }
    
    .hero-actions { display: flex; flex-direction: column; width: 100%; padding: 0 1rem; }
    .hero-actions .btn-primary, .hero-actions .btn-nav-outline { width: 100%; text-align: center; }
    .hero-actions .btn-text { margin-left: 0; margin-top: 1rem; }
    
    .bento-card { padding: 1.8rem; }
    .p-4 { padding: 2rem !important; }
    .section-title { font-size: clamp(1.6rem, 5vw, 2.5rem) !important; }
    .hero-title { font-size: clamp(2.2rem, 7vw, 4rem) !important; }
    
    /* Social/feed grid */
    .social-grid { grid-template-columns: repeat(2, 1fr) !important; }
    
    /* Modal responsive */
    .ig-modal-content {
        width: 95% !important; max-width: 95% !important;
        height: auto !important; max-height: 90vh !important;
        flex-direction: column !important;
    }
    .ig-media-container { flex: none !important; height: 40vh !important; min-height: 250px !important; }
    .ig-info-container { flex: none !important; border-left: none !important; border-top: 1px solid var(--border-light) !important; }
    
    /* Profile header stacking */
    .ig-profile-header { flex-direction: column !important; text-align: center !important; gap: 1.5rem !important; }
    
    /* Better tap targets */
    .btn-primary, .btn-nav-outline { min-height: 48px; padding: 0.9rem 1.5rem; }
    
    /* Form inputs — prevent iOS zoom */
    .premium-input { padding: 1rem 1.2rem; font-size: 16px !important; }
    
    /* Chat widget */
    .chat-widget { width: 92vw !important; right: 4vw !important; bottom: 85px !important; }
    .chat-fab { width: 56px !important; height: 56px !important; right: 16px !important; bottom: 16px !important; }

    /* Footer grid */
    .footer .bento-grid { grid-template-columns: 1fr !important; }
    .footer .col-span-2 { grid-column: span 1 !important; }
}

/* ===== MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .section-padding { padding: 3rem 0; }
    .bento-card { padding: 1.5rem; border-radius: var(--radius-lg); }
    .bento-grid { gap: 1rem; }
    
    .social-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 2px !important; }
    
    /* Stats grid */
    .stats-grid-inner { grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
    .stat-item h3 { font-size: clamp(2rem, 10vw, 3rem) !important; }
    
    /* Pill tags */
    .pill-tag { font-size: 0.75rem; padding: 0.5rem 1rem; }
    
    /* Modern list items */
    .modern-list li { font-size: 1.1rem; padding: 1rem 0; }
    
    /* Navbar */
    .navbar { top: 10px !important; width: 96% !important; }
    .glass-panel { padding: 0.6rem 1rem !important; }
    .logo img, .nav-logo-img { height: 26px !important; max-height: 26px !important; }
    
    /* Video grid */
    .video-grid { grid-template-columns: 1fr !important; }
    
    /* DARE Framework: single column */
    [style*="grid-template-columns: repeat(4, 1fr)"],
    [style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    /* Quick grid single column */
    .quick-grid {
        grid-template-columns: 1fr !important;
        max-width: 340px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Team grid: single column */
    .team-grid-modern { grid-template-columns: 1fr !important; }
    
    /* Hero actions stack */
    .hero-actions,
    [style*="display: flex"][style*="gap: 1rem"][style*="justify-content: center"] {
        flex-direction: column !important;
        align-items: center !important;
    }
    .hero-actions .btn-primary, .hero-actions .btn-nav-outline {
        width: 100% !important; max-width: 300px;
    }
    
    /* Service content padding */
    .svc-content { padding: 2rem 1.5rem !important; }
    
    /* All inputs prevent iOS zoom */
    input, select, textarea { font-size: 16px !important; }
}

/* ===== EXTRA SMALL PHONES (max-width: 375px) ===== */
@media (max-width: 375px) {
    .section-padding { padding: 2.5rem 0; }
    .bento-card { padding: 1.2rem; }
    .section-title { font-size: clamp(1.4rem, 6vw, 2rem) !important; }
    .btn-primary, .btn-nav-outline { font-size: 0.85rem; padding: 0.8rem 1.2rem; }
}

/* ===== TOUCH DEVICE HOVER FIX ===== */
@media (hover: none) {
    .bento-card:hover { transform: none; box-shadow: var(--shadow-bento); }
    .hover-zoom:hover { transform: none; }
    .nav-links a:hover { transform: none; }
}

/* =========================================================
   PREMIUM MOBILE MENU — REDESIGNED
   ========================================================= */
.mobile-menu-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    font-size: 1.3rem;
    color: var(--brand-brown);
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 0;
    line-height: 1;
}
.mobile-menu-btn:hover { background: rgba(255,255,255,0.95); }
.mobile-menu-btn.active {
    background: var(--brand-brown);
    color: var(--white);
    border-color: var(--brand-brown);
}

.mobile-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255,255,255,0.3) inset;
    flex-direction: column;
    padding: 0.5rem;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-dropdown.active {
    display: flex;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mobile-dropdown a {
    padding: 0.85rem 1.2rem;
    color: var(--brand-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mobile-dropdown a:hover {
    background: rgba(230, 183, 136, 0.15);
    color: var(--brand-tan);
    padding-left: 1.4rem;
}
.mobile-dropdown a:active {
    background: rgba(230, 183, 136, 0.25);
    transform: scale(0.98);
}
.mobile-dropdown .mobile-cta {
    margin-top: 0.25rem;
    padding: 0.9rem 1.2rem;
    background: var(--brand-brown);
    color: var(--white) !important;
    border-radius: 14px;
    text-align: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
}
.mobile-dropdown .mobile-cta:hover {
    background: var(--brand-tan);
    color: var(--brand-brown) !important;
    padding-left: 1.2rem;
}

/* =========================================================
   PREMIUM ADMIN LOGIN MODAL — REDESIGNED
   ========================================================= */
.admin-login-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
}
.admin-login-modal.active { display: flex; }

.admin-login-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    padding: 2.5rem;
    max-width: 420px;
    width: 92%;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    text-align: center;
    animation: adminModalPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.admin-login-card .admin-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(0,0,0,0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--brand-brown-light);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.admin-login-card .admin-close:hover {
    background: rgba(0,0,0,0.1);
    color: var(--brand-brown);
    transform: rotate(90deg);
}

.admin-login-card .admin-lock-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-brown), var(--brand-brown-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 20px rgba(45, 32, 16, 0.2);
}

.admin-login-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-brown);
    letter-spacing: -0.03em;
    margin-bottom: 0.4rem;
}
.admin-login-card .admin-subtitle {
    color: var(--brand-brown-light);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}

.admin-login-card input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    outline: none;
    background: var(--bg-light);
    margin-bottom: 0.65rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.admin-login-card input:focus {
    border-color: var(--brand-tan);
    box-shadow: 0 0 0 4px rgba(230, 183, 136, 0.15);
    background: var(--white);
}

.admin-login-card button[type="submit"] {
    width: 100%;
    padding: 0.9rem;
    background: var(--brand-brown);
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.25s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 14px rgba(45, 32, 16, 0.2);
}
.admin-login-card button[type="submit"]:hover {
    background: var(--brand-tan);
    color: var(--brand-brown);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 32, 16, 0.25);
}

@keyframes adminModalPop {
    0% { opacity: 0; transform: scale(0.92) translateY(16px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* =========================================================
   EVENTS CARDS — PREMIUM CARD LAYOUT
   ========================================================= */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.event-card {
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.event-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.event-card-accent {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--brand-tan), var(--brand-blue));
}
.event-card-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.event-card-date {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--brand-blue);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}
.event-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand-brown);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}
.event-card-location {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-brown-light);
    margin-bottom: 0.75rem;
}
.event-card-desc {
    font-size: 0.9rem;
    color: var(--brand-brown-light);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.2rem;
}
.event-card-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.event-card-form .event-input-row {
    display: flex;
    gap: 0.5rem;
}
.event-card-form input[type="text"],
.event-card-form input[type="email"] {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1.5px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    font-size: 0.85rem;
    font-family: var(--font-sans);
    background: var(--bg-light);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.event-card-form input:focus {
    border-color: var(--brand-tan);
    box-shadow: 0 0 0 3px rgba(230, 183, 136, 0.12);
}
.event-card-form .event-rsvp-btn {
    padding: 0.7rem;
    background: var(--brand-brown);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all 0.25s ease;
}
.event-card-form .event-rsvp-btn:hover {
    background: var(--brand-tan);
    color: var(--brand-brown);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr !important;
        max-width: 480px;
    }
    .event-card-form .event-input-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .events-grid { max-width: 100%; }
}

/* =========================================================
   GLOBAL PREMIUM POLISH
   ========================================================= */
/* Smooth scroll indicator */
::selection {
    background: var(--brand-tan);
    color: var(--brand-brown);
}

/* Premium scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: rgba(45, 32, 16, 0.15); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(45, 32, 16, 0.3); }

/* Focus rings for accessibility */
a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px solid var(--brand-tan);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Smooth image loading */
img { transition: opacity 0.3s ease; }


.hero-carousel {
    position: relative;
    width: 100%;
    height: 650px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-bento);
    overflow: hidden;
    background: var(--bg-light);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateX(100%); /* Start off-screen to the right */
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0); /* Slide into view */
}

.carousel-slide.prev {
    opacity: 0;
    transform: translateX(-100%); /* Slide out to the left */
} 
.carousel-slide.active { opacity: 1 !important; z-index: 2; } 
/* ==========================================================================
   PHASE 3 OVERRIDES: GEN Z, MOVEMENT-DRIVEN VIBE
   ========================================================================== */

/* 1. Loosen up the rigid sections for more breathing room */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
@media (max-width: 768px) {
    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

/* 2. Fluid Hover Animations for Bento Cards */
.hover-zoom {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}
.hover-zoom:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* 3. Make buttons feel more tactile */
.btn-primary, .btn-nav-outline {
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.btn-primary:active, .btn-nav-outline:active {
    transform: scale(0.97);
}

/* 4. Fix image overlays so they don't feel too dark/heavy */
.social-overlay {
    background: linear-gradient(to top, rgba(46, 41, 61, 0.9) 0%, rgba(46, 41, 61, 0) 100%);
} 
