html {
    scroll-behavior: smooth;
}

:root {
    --bg: #fff;
    --card: #fff;
    --text: #111214;
    --muted: #6b6b6b;
    --accent-from: #2C3E50;
    --accent-to: #7F8C8D;
    --accent-glow: 0 6px 24px rgba(97,97,97,0.18);
    --glass: rgba(255,255,255,0.6);
    --header-height: 76px;
}
.dark {
    --bg: #0f1113;
    --card: #1E1F23;
    --text: #f3f4f6;
    --muted: #bdbdbd;
    --glass: rgba(12,12,12,0.5);
    --accent-from: #2C3E50;
    --accent-to: #7F8C8D;
    --accent-glow: 0 6px 24px rgba(176,176,176,0.18);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Inter','Segoe UI',system-ui,sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    padding-top: var(--header-height);
}

.container, .header-container, .content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--header-height);
    display: flex; align-items: center;
    background: linear-gradient(180deg,rgba(255,255,255,0.95),rgba(255,255,255,0.9));
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 0 1.5rem;
    transition: all 0.3s ease;
}
.dark header {
    background: linear-gradient(180deg,rgba(20,20,20,0.95),rgba(20,20,20,0.9));
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-container {
    display: flex; align-items: center; justify-content: space-between;
}
.logo {
    display: flex; align-items: center; gap: .8rem; font-weight: 700;
}
.logo-mark, .footer-logo .logo-mark {
    width: 44px; height: 44px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg,var(--accent-from),var(--accent-to));
    color: #fff; font-weight: 800; font-size: 18px;
}
.footer-logo .logo-mark { width: 40px; height: 40px; font-size: 16px; }
.logo-text { font-size: 18px; transition: font-size .3s; }
.logo-tagline { font-size: 12px; color: var(--muted); }

.desktop-nav { display: flex; align-items: center; gap: .5rem; }
.desktop-nav a {
    color: var(--text); text-decoration: none;
    padding: .6rem .8rem; border-radius: 8px; font-weight: 500;
    transition: all .2s; white-space: nowrap;
}
.desktop-nav a:hover, .desktop-nav a.active {
    background: var(--glass); color: var(--accent-from);
}
.desktop-nav a.active { font-weight: 600; }

.header-actions { display: flex; align-items: center; gap: .8rem; }
.theme-toggle, .menu-toggle {
    width: 44px; height: 44px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    border: none; background: transparent; cursor: pointer;
    font-size: 1.2rem; transition: background .2s;
}
.theme-toggle:hover { background: rgba(0,0,0,0.05); }
.dark .theme-toggle:hover { background: rgba(255,255,255,0.1); }
.menu-toggle {
    display: none; background: var(--accent-to); color: #fff;
}

.mobile-menu {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 320px; height: 100%;
    background: linear-gradient(135deg,var(--accent-from),var(--accent-to));
    z-index: 1001; padding: 1.5rem;
    transition: right .3s; display: flex; flex-direction: column; gap: 1.5rem;
}
.mobile-menu.open { right: 0; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav { display: flex; flex-direction: column; gap: .5rem; }
.mobile-nav a {
    color: #fff; text-decoration: none; padding: .8rem 1rem;
    border-radius: 8px; font-weight: 500; transition: background .2s;
}
.mobile-nav a:hover { background: rgba(255,255,255,0.15); }
.close-menu {
    background: transparent; border: none; color: #fff;
    font-size: 1.5rem; cursor: pointer;
}

.content { padding: 2rem 1.5rem; }
.content-section { margin-bottom: 3rem; }
h1 { font-size: 2.5rem; margin-bottom: 1rem; color: var(--text); }
h2 { font-size: 2rem; margin-bottom: 1rem; color: var(--text); }
p { margin-bottom: 1rem; color: var(--muted); }

@media (max-width:1024px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: flex; }
}
@media (max-width:768px) {
    header { padding: 0 1rem; }
    .logo-text { font-size: 16px; }
    .logo-mark, .footer-logo .logo-mark { width: 38px; height: 38px; font-size: 16px; }
    .logo-tagline { font-size: 10px; }
}
header.shrink { height: 60px; }
header.shrink .logo-text { font-size: 16px; }
header.shrink .logo-mark { width: 38px; height: 38px; font-size: 16px; }

.accent-btn {
    padding: .8rem 1.2rem; border-radius: 10px; border: none; font-weight: 600;
    background: linear-gradient(90deg,var(--accent-from),var(--accent-to));
    color: #fff !important; box-shadow: var(--accent-glow);
    text-decoration: none; display: inline-block;
}
.accent-btn:hover {
    cursor: pointer;
    background: linear-gradient(90deg,var(--accent-to),var(--accent-from)) !important;
    transition: .3s;
}

.hero {
    padding: 48px 1rem 64px;
    display: grid; grid-template-columns: 1fr; align-items: center;
}
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 1.6rem; align-items: center; }
.hero-card {
    background: linear-gradient(180deg,rgba(255,255,255,0.6),rgba(255,255,255,0.35));
    padding: 2rem; border-radius: 16px;
    box-shadow: 0 6px 30px rgba(15,15,15,0.04);
}
.dark .hero-card {
    background: linear-gradient(180deg,rgba(20,20,20,0.65),rgba(20,20,20,0.45));
}
.hero h1 { font-size: clamp(1.6rem,4vw,2.6rem); margin: 0 0 .4rem; }
.sub { color: var(--muted); margin: 0 0 1rem; }
.hero-content-wrapper {
    display: flex; gap: 1.6rem; flex-direction: row;
    align-items: center; justify-content: space-between; flex-wrap: wrap;
}
.hero-text { flex: 1; min-width: 240px; }
.hero-visual-container {
    width: 420px; max-width: 44%; min-width: 220px; position: relative;
}
.hero-visual {
    border-radius: 12px; min-height: 220px;
    background: linear-gradient(180deg,rgba(0,0,0,0.02),rgba(0,0,0,0.06));
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; overflow: hidden; width: 100%;
}
.hero-video, .video-placeholder { width: 100%; height: 100%; border-radius: 12px; }
.hero-video { object-fit: cover; }
.video-placeholder {
    background: linear-gradient(-45deg,#2c3e50,#4a65722f,#4141420f);
    background-size: 400% 400%; animation: gradientAnimation 15s ease infinite;
}
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.video-label {
    padding: 1rem 1.2rem; border-radius: 10px;
    color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.1);
    font-weight: 700; position: absolute; bottom: 20px; left: 20px;
    backdrop-filter: blur(5px); font-size: 1rem;
}
.dark .video-label { background: rgba(10,10,10,0.7); color: var(--text); }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.5rem; }
.secondary-btn {
    padding: .8rem 1rem; border-radius: 10px; background: transparent;
    border: 1px solid rgba(0,0,0,0.06); text-decoration: none; font-weight: 600;
    color: var(--text); display: inline-block;
}
.dark .secondary-btn { border: 1px solid rgba(255,255,255,0.1); }
@media (max-width:968px) {
    .hero-visual-container { width: 100%; max-width: 100%; margin-top: 1.5rem; }
    .hero-content-wrapper { flex-direction: column; }
}
@media (max-width:480px) {
    .video-label { font-size: .85rem; padding: .7rem 1rem; bottom: 15px; left: 15px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .accent-btn, .secondary-btn { width: 100%; text-align: center; }
}

/* Section Heading */
.section-heading { position: relative; margin-bottom: 1rem; }
.section-preheading {
    display: block; font-size: 1rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--accent-from); margin-bottom: .5rem;
}
.section-title {
    font-size: 2.8rem; font-weight: 800; line-height: 1.2;
    margin-bottom: 1.5rem; position: relative; display: inline-block;
    background: linear-gradient(135deg,var(--accent-from),var(--accent-to));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-title::after {
    content: ''; position: absolute; bottom: -10px; left: 0;
    width: 80px; height: 4px;
    background: linear-gradient(135deg,var(--accent-from),var(--accent-to));
    border-radius: 2px;
}
.section-subtitle {
    font-size: 1.2rem; max-width: 700px; color: var(--text); margin-top: 1.5rem;
}
.heading-border-accent { padding: 2rem; border-left: 5px solid var(--accent-from); }

/* About */
.about-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 2rem;
}
section { padding: 48px 1rem 64px; }
.about-text { padding-right: 1rem; }
.about-text p {
    margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--text); line-height: 1.8;
}
.about-stats {
    display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2rem;
}
.stat-box {
    background: var(--accent-to); padding: 1.5rem; border-radius: 10px;
    text-align: center; border: 1px solid rgba(0,0,0,0.404);
}
.stat-number { font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.stat-label { font-size: 1rem; color: #fff; }
.about-image {
    position: relative; border-radius: 12px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.about-image img, .image-placeholder { width: 100%; height: 100%; object-fit: cover; display: block; }
.image-placeholder {
    background-repeat: no-repeat; background-size: cover; background-position: center;
    align-items: center; justify-content: center; color: #fff; font-size: 1.2rem;
}
@media(max-width:968px) { .image-placeholder { display: none; } }

.values-section { margin-top: 4rem; }
.values-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
    margin-top: 2rem; padding: 48px 1rem 64px;
}
.value-card {
    background: var(--card); padding: 2rem; border-radius: 12px; text-align: center;
    transition: transform .3s; border: 1px solid rgba(213,213,213,0.5);
}
.value-card:hover { transform: translateY(-5px); border-color: #000; }
.value-icon {
    width: 70px; height: 70px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg,var(--accent-from),var(--accent-to));
    border-radius: 50%; margin: 0 auto 1.5rem; font-size: 1.8rem; color: #fff;
}
.value-title { font-size: 1.4rem; margin-bottom: 1rem; color: var(--text); }
.value-description { color: var(--muted); line-height: 1.6; }
@media (max-width:968px) {
    .about-content { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
    .section-title { font-size: 2.2rem; }
    .values-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr; }
    .heading-border-accent { padding: 1.5rem; }
}

/* Bento Grid */
.bento-grid {
    display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 250px;
    gap: 1.5rem; margin-top: 3rem;
}
.bento-item {
    position: relative; border-radius: 16px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all .3s; cursor: pointer;
}
.bento-item.large { grid-column: span 2; }
.bento-image { width: 100%; height: 100%; position: relative; }
.bento-image img {
    width: 100%; height: 100%; object-fit: cover; transition: transform .5s;
}
.bento-item:hover .bento-image img { transform: scale(1.05); }
.bento-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top,rgba(0,0,0,0.9),transparent);
    padding: 1.5rem; color: #fff; transform: translateY(10px);
    transition: transform .3s;
}
.bento-item:hover .bento-overlay { transform: translateY(0); }
.bento-overlay h3 { margin: 0 0 .5rem 0; font-size: 1.4rem; }
.bento-overlay p {
    margin: 0 0 1rem 0; opacity: 0; max-height: 0;
    transition: all .3s; color: var(--white);
}
.bento-item:hover .bento-overlay p { opacity: 1; max-height: 100px; }
.bento-btn {
    background: linear-gradient(90deg,var(--accent-from),var(--accent-to));
    color: #fff; border: none; padding: .6rem 1.2rem; border-radius: 6px;
    font-weight: 600; cursor: pointer; opacity: 0; transform: translateY(10px);
    transition: all .3s;
}
.bento-item:hover .bento-btn { opacity: 1; transform: translateY(0); }
@media (max-width:1024px) { .bento-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-item.large { grid-column: span 1; }
    .bento-overlay p, .bento-btn { opacity: 1; max-height: 100px; transform: translateY(0); }
}

/* References */
.references-filter {
    display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; margin: 2rem 0 3rem;
}
.filter-btn {
    padding: .8rem 1.5rem; background: var(--card);
    border: 1px solid rgba(0,0,0,0.1); border-radius: 50px; cursor: pointer;
    font-weight: 500; transition: all .3s; color: var(--text);
}
.dark .filter-btn { border: 1px solid rgba(255,255,255,0.1); }
.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(90deg,var(--accent-from),var(--accent-to));
    color: #fff; border-color: transparent; transform: translateY(-2px); box-shadow: var(--accent-glow);
}
.references-grid {
    display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.5rem;
}
.reference-item {
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform .3s, box-shadow .3s;
}
.reference-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.reference-image {
    position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.reference-image img {
    width: 100%; height: 100%; object-fit: cover; transition: transform .5s;
}
.reference-item:hover .reference-image img { transform: scale(1.05); }
.reference-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top,rgba(0,0,0,0.8),transparent 70%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.5rem; opacity: 0; transition: opacity .3s;
}
.reference-item:hover .reference-overlay { opacity: 1; }
.reference-category {
    color: #fff; font-weight: 600; margin-bottom: .5rem;
    font-size: .9rem; text-transform: uppercase; letter-spacing: .5px;
}
.reference-view {
    background: rgba(255,255,255,0.9); color: var(--muted); border: none;
    padding: .5rem 1rem; border-radius: 4px; cursor: pointer; font-weight: 600;
    transition: all .3s;
}
.reference-view:hover { background: #fff; transform: translateY(-2px); }
.lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); display: none; justify-content: center; align-items: center;
    z-index: 1000; opacity: 0; transition: opacity .3s;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox-content {
    position: relative; max-width: 90%; max-height: 90%;
}
.lightbox-image {
    max-width: 100%; max-height: 80vh; border-radius: 8px;
}
.lightbox-caption {
    color: #fff; text-align: center; margin-top: 1rem;
}
.lightbox-close {
    position: absolute; top: -40px; right: 0; color: #fff; font-size: 2rem;
    cursor: pointer; background: rgba(0,0,0,0.5); width: 40px; height: 40px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
@media (max-width:768px) {
    .references-filter { gap: .5rem; }
    .filter-btn { padding: .6rem 1rem; font-size: .9rem; }
    .references-grid { grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); gap: 1rem; }
    .reference-overlay { padding: 1rem; opacity: 1; }
}
@media (max-width:480px) { .references-grid { grid-template-columns: 1fr; } }

/* Career */
.career-section { position: relative; overflow: hidden; }
.career-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
}
.career-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 3rem; align-items: center;
}
.career-text { position: relative; }
.career-subheading {
    display: block; font-size: 1.2rem; font-weight: 600; color: var(--accent-from);
    margin-bottom: 1rem; font-style: italic;
}
.career-timeline { position: relative; padding-left: 3rem; }
.career-timeline::before {
    content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
    background: linear-gradient(to bottom,var(--accent-from),var(--accent-to)); border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
    content: ''; position: absolute; left: -3.4rem; top: .5rem; width: 20px; height: 20px;
    border-radius: 50%; background: linear-gradient(135deg,var(--accent-from),var(--accent-to));
    border: 4px solid #0f1113; box-shadow: 0 0 0 2px var(--accent-from);
}
.timeline-year { font-size: 1.5rem; font-weight: 700; color: var(--accent-from); margin-bottom: .5rem; }
.timeline-content {
    background: rgba(255,255,255,0.03); padding: 1.5rem; border-radius: 12px;
    border-left: 3px solid var(--accent-from); backdrop-filter: blur(10px);
}
.timeline-content p { margin: 0; color: var(--text); line-height: 1.7; }
.career-stats {
    display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-top: 2rem;
}
.career-stat {
    text-align: center; padding: 1.5rem; background: rgba(255,126,0,0.1);
    border-radius: 12px; border: 1px solid rgba(255,126,0,0.2);
}
.career-image { position: relative; }
.image-container {
    position: relative; border-radius: 16px; overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.image-container::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg,rgba(255,126,0,0.2),rgba(255,72,0,0.2));
    z-index: 1; mix-blend-mode: overlay;
}
.image-container img {
    width: 100%; height: 500px; object-fit: cover; display: block;
}
.team-quote {
    position: absolute; bottom: -20px; right: -20px;
    background: linear-gradient(135deg,var(--accent-from),var(--accent-to));
    color: #fff; padding: 1.5rem; border-radius: 12px; max-width: 250px;
    box-shadow: 0 10px 30px rgba(255,126,0,0.3); z-index: 2;
}
.quote-text { font-style: italic; margin: 0; line-height: 1.5; color: #fff; }
.quote-author { margin-top: .5rem; font-weight: 600; }
.floating-element { position: absolute; z-index: -1; opacity: .1; }
.floating-1 {
    top: 20%; left: 5%; width: 100px; height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20,20 L80,20 L80,80 L20,80 Z' stroke='%23ff7e00' fill='none' stroke-width='2'/%3E%3C/svg%3E");
}
.floating-2 {
    bottom: 10%; right: 10%; width: 150px; height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='40' stroke='%23ff7e00' fill='none' stroke-width='2'/%3E%3C/svg%3E");
}
@media (max-width:968px) {
    .career-content { grid-template-columns: 1fr; gap: 3rem; }
    .career-timeline { padding-left: 2rem; }
    .timeline-item::before { left: -2.4rem; }
}
@media (max-width:768px) {
    .career-stats { grid-template-columns: 1fr; }
    .team-quote { position: relative; right: 0; margin-top: 2rem; max-width: 100%; }
    .career-timeline::before { left: .5rem; }
    .timeline-item::before { left: -1.9rem; }
}

/* Team */
.team-section { position: relative; overflow: hidden; }
.team-carousel { position: relative; margin-top: 3rem; padding: 0 3rem; }
.carousel-container {
    display: flex; overflow-x: hidden; scroll-behavior: smooth;
    scrollbar-width: none; -ms-overflow-style: none; gap: 2rem; padding: 1rem 0;
}
.carousel-container::-webkit-scrollbar { display: none; }
.team-member {
    flex: 0 0 calc(33.333% - 1.5rem); background: var(--card); border-radius: 16px;
    overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all .3s; position: relative;
}
.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.member-image { position: relative; height: 300px; overflow: hidden; }
.member-image img {
    width: 100%; height: 100%; object-fit: cover; transition: transform .5s;
}
.team-member:hover .member-image img { transform: scale(1.05); }
.image-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top,rgba(0,0,0,0.7),transparent 70%); opacity: .7;
}
.member-info { padding: 1.5rem; position: relative; z-index: 2; }
.member-name { font-size: 1.4rem; margin: 0 0 .5rem 0; color: var(--text); }
.member-role { color: var(--accent-from); font-weight: 600; margin: 0 0 1rem 0; font-size: .9rem; }
.member-quote {
    margin: 1rem 0; padding: 1rem; background: var(--accent-to);
    border-left: 3px solid var(--accent-from); border-radius: 4px;
}
.member-quote p { margin: 0; font-style: italic; color: #fff; line-height: 1.5; }
.member-toggle {
    background: linear-gradient(90deg,var(--accent-from),var(--accent-to));
    color: #fff; border: none; padding: .7rem 1.5rem; border-radius: 6px;
    font-weight: 600; cursor: pointer; transition: all .3s; width: 100%;
}
.member-toggle:hover { transform: translateY(-2px); box-shadow: var(--accent-glow); }
.member-details { max-height: 0; overflow: hidden; transition: max-height .5s; }
.member-details.active { max-height: 500px; }
.details-content { padding: 1.5rem; background: rgba(0,0,0,0.03); }
.details-content h4 { color: var(--accent-from); margin: 0 0 .5rem 0; font-size: 1rem; }
.details-content p {
    margin: 0 0 1rem 0; color: var(--muted); line-height: 1.6; font-size: .95rem;
}
.details-content p:last-child { margin-bottom: 0; }
.carousel-control {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px; background: var(--card); border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); z-index: 10; transition: all .3s;
}
.carousel-control:hover {
    background: linear-gradient(90deg,var(--accent-from),var(--accent-to)); color: #fff;
}
.carousel-control.prev { left: 0; }
.carousel-control.next { right: 0; }
.carousel-control svg { width: 24px; height: 24px; }
.carousel-indicators {
    display: flex; justify-content: center; margin-top: 2rem; gap: .5rem;
}
.carousel-indicators .indicator {
    width: 12px; height: 12px; border-radius: 50%; background: var(--accent-to);
    cursor: pointer; transition: all .3s;
}
.carousel-indicators .indicator.active {
    background: var(--accent-to); transform: scale(1.2);
}
@media (max-width:1024px) { .team-member { flex: 0 0 calc(50% - 1rem); } }
@media (max-width:768px) {
    .team-carousel { padding: 0 1rem; }
    .team-member { flex: 0 0 100%; }
    .carousel-control { width: 40px; height: 40px; }
    .member-image { height: 250px; }
}

/* Contact */
.contact-section .contact-grid {
    display: grid; grid-template-columns: 1fr 360px; gap: 2rem; margin-top: 3rem;
}
.contact-form {
    display: flex; flex-direction: column; gap: 1rem;
    background: var(--card); padding: 2rem; border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.form-input, .form-textarea {
    padding: 1rem; border-radius: 8px; border: 1px solid rgba(0,0,0,0.1);
    background: transparent; color: var(--text); font-family: inherit; font-size: 1rem;
    transition: all .3s;
}
.form-input:focus, .form-textarea:focus {
    outline: none; border-color: var(--accent-from);
    box-shadow: 0 0 0 3px rgba(255,126,0,0.1);
}
.form-textarea { min-height: 250px; resize: none; }
.form-actions {
    display: flex; gap: .8rem; align-items: center; justify-content: flex-end; margin-top: 1rem;
}



/* FAQ */
.faq-container { max-width: 800px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); margin-bottom: .5rem; }
.dark .faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.5rem 1rem; background: none; border: none; text-align: left; cursor: pointer;
    font-size: 1.1rem; font-weight: 600; color: var(--text); transition: all .3s;
}
.faq-question:hover { color: var(--accent-from); }
.faq-question span { flex: 1; margin-right: 1rem; }
.faq-icon { transition: transform .3s; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 1rem 1.5rem; margin: 0; color: var(--muted); line-height: 1.6; }
@media (max-width:768px) {
    .faq-question { padding: 1.2rem .8rem; font-size: 1rem; }
    .faq-answer p { padding: 0 .8rem 1.2rem; }
}

/* Contact Info */
.contact-info {
    padding: 2rem; border-radius: 12px; background: var(--card); min-height: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; justify-content: center;
}
.contact-company { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--text); }
.contact-detail { margin: .5rem 0; color: var(--muted); line-height: 1.6; }
.contact-link-container { margin-top: 1.5rem; }
.contact-link { text-decoration: none; color: var(--muted); transition: color .3s; }
.contact-link:hover { color: var(--accent-from); }
@media (max-width:968px) {
    .contact-section .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .contact-section .contact-info { order: 2; min-height: auto; }
}
@media (max-width:480px) {
    .contact-section .contact-form, .contact-section .contact-info { padding: 1.5rem; }
    .form-actions { justify-content: center; }
    .accent-btn { width: 100%; text-align: center; }
}

/* Location */
.location-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; align-items: start;
}
.map-container {
    position: relative; border-radius: 12px; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); height: 400px;
}
.location-map { border-radius: 12px; }
.location-info {
    padding: 2rem; background: var(--card); border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.location-title { font-size: 1.5rem; margin-bottom: 1.5rem; color: var(--text); }
.location-details { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.location-item { display: flex; align-items: center; gap: 1rem; }
.location-icon {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    background: var(--accent-to); border-radius: 8px; flex-shrink: 0;
}
.location-icon svg { width: 20px; height: 20px; }
.location-text { color: var(--muted); }
.location-cta { width: 100%; text-align: center; justify-content: center; }
@media (max-width:968px) {
    .location-content { grid-template-columns: 1fr; gap: 2rem; }
    .map-container { height: 300px; order: -1; }
}
@media (max-width:480px) {
    .location-info { padding: 1.5rem; }
    .location-item { flex-direction: column; text-align: center; gap: .5rem; }
}
.footer {
    background: var(--card);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 4rem;
}

.dark .footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-logo .logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.footer-tagline {
    color: var(--muted);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-contact p,
.footer-legal p {
    margin: 0.5rem 0;
    color: var(--muted);
    line-height: 1.5;
}

.footer-heading {
    font-weight: 600;
    color: var(--text) !important;
    margin-bottom: 1rem !important;
}

/* Bottom Area */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;

    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);

    color: var(--muted);
    font-size: 0.9rem;
}

.dark .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-note {
    margin: 0;
}

/* Legal Buttons Container */
.footer-links {
    display: flex;
    gap: 1rem;
}

/* Footer Buttons (same style feel) */
.footer-button {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--text);

    padding: 0.5rem 1rem;
    border-radius: 6px;

    font-size: 0.85rem;
    text-decoration: none;

    transition: all 0.3s ease;
}

.dark .footer-button {
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-button:hover {
    background: var(--accent-from);
    color: #ffffff;
    border-color: var(--accent-from);
}

/* ============================= */
/* Tablet */
/* ============================= */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================= */
/* Mobile */
/* ============================= */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-tagline {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .footer-button {
        width: 100%;
        max-width: 250px;
    }
}
