@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --primary-light: #86efac;
    --primary-glow: rgba(34,197,94,0.18);
    --secondary: #0a1f12;
    --dark: #060e09;
    --mid: #112918;
    --card-bg: #ffffff;
    --light-gray: #f0faf3;
    --text: #1a2e1e;
    --text-light: #4a7a58;
    --white: #ffffff;
    --danger: #ef4444;
    --success: #22c55e;
    --warning: #f59e0b;
    --border: #d1fae5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.16);
    --shadow-green: 0 8px 32px rgba(34,197,94,0.18);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:'Barlow',sans-serif;color:var(--text);background:var(--white);line-height:1.6;}
h1,h2,h3,h4,h5{font-family:'Barlow Condensed',sans-serif;font-weight:700;line-height:1.15;}
a{text-decoration:none;color:inherit;}
img{max-width:100%;}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top:0; left:0; right:0; z-index:1000;
    background: rgba(6,14,9,0.97);
    backdrop-filter: blur(16px);
    padding: 0 48px;
    display: flex; align-items:center; justify-content:space-between;
    height: 72px;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}
.navbar-brand { display:flex; align-items:center; gap:14px; }
.navbar-logo-icon { width:46px; height:46px; display:flex; align-items:center; justify-content:center; }
.navbar-logo-icon img {
    width:100%; height:100%; object-fit:contain;
    filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(80deg) brightness(0.9);
    animation: logoAppear 0.9s cubic-bezier(0.34,1.56,0.64,1) both;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), filter 0.3s;
}
.navbar-logo-icon img:hover { transform:rotate(18deg) scale(1.15); filter:brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(80deg) brightness(1.1) drop-shadow(0 0 8px rgba(34,197,94,0.9)); }
@keyframes logoAppear { 0%{opacity:0;transform:rotateY(-90deg) scale(0.4)} 65%{transform:rotateY(8deg) scale(1.08)} 100%{opacity:1;transform:rotateY(0) scale(1)} }
.navbar-brand-name { font-family:'Barlow Condensed',sans-serif; font-weight:900; font-size:22px; color:#fff; letter-spacing:1.5px; }
.navbar-brand-name span { color:var(--primary); }
.navbar-menu { display:flex; align-items:center; gap:4px; list-style:none; }
.navbar-menu a {
    color:rgba(255,255,255,0.75); font-weight:500; font-size:14px;
    padding:8px 16px; border-radius:6px;
    transition:all 0.2s; letter-spacing:0.5px;
    display:flex; align-items:center; gap:7px;
}
.navbar-menu a .nav-ico { font-size:15px; }
.navbar-menu a:hover, .navbar-menu a.active { color:var(--primary); background:var(--primary-glow); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:5px; }
.hamburger span { width:25px; height:2px; background:#fff; transition:0.3s; border-radius:2px; }

/* ===== HERO ===== */
.hero {
    min-height:100vh; background:var(--dark);
    display:flex; align-items:center; position:relative; overflow:hidden; padding-top:72px;
}
.hero-bg {
    position:absolute; inset:0;
    background: linear-gradient(135deg,rgba(34,197,94,0.06) 0%,transparent 50%),
    repeating-linear-gradient(45deg,transparent,transparent 40px,rgba(255,255,255,0.012) 40px,rgba(255,255,255,0.012) 42px);
}
.hero-team-photo { position:absolute; inset:0; background:url('../images/team-photo.jpg') center center/cover no-repeat; opacity:0.18; mix-blend-mode:luminosity; }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(to right,rgba(6,14,9,0.95) 0%,rgba(6,14,9,0.78) 40%,rgba(6,14,9,0.45) 70%,rgba(6,14,9,0.22) 100%); }
.hero-accent { position:absolute; right:0; top:0; bottom:0; width:42%; background:linear-gradient(135deg,rgba(17,41,24,0.7) 0%,rgba(17,41,24,0.4) 100%); clip-path:polygon(18% 0%,100% 0%,100% 100%,0% 100%); }
.hero-stripe { display:none; } /* green line removed */
.hero-logo-wrap { position:absolute; right:7%; top:50%; transform:translateY(-50%); z-index:3; pointer-events:none; }
.hero-logo-img { width:260px; height:260px; object-fit:contain; filter:brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(80deg) brightness(0.85); opacity:0.13; animation:heroFloat 5s ease-in-out infinite, heroAppear 1.4s cubic-bezier(0.34,1.56,0.64,1) both 0.4s; }
@keyframes heroFloat { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-20px) rotate(4deg)} }
@keyframes heroAppear { 0%{opacity:0;transform:scale(0.2) rotate(-25deg)} 70%{transform:scale(1.1) rotate(4deg)} 100%{opacity:0.13;transform:scale(1) rotate(0)} }

.hero-content { position:relative; z-index:2; max-width:1200px; margin:0 auto; padding:80px 48px; width:100%; }
.hero-tag {
    display:inline-flex; align-items:center; gap:10px;
    background:rgba(34,197,94,0.12); border:1px solid rgba(34,197,94,0.3);
    color:var(--primary); padding:7px 18px; font-size:12px; font-weight:700;
    letter-spacing:2.5px; text-transform:uppercase; margin-bottom:24px; border-radius:4px;
}
.hero-tag .tag-dot { width:8px; height:8px; background:var(--primary); border-radius:50%; animation:pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero h1 { font-size:clamp(48px,7vw,90px); color:#fff; max-width:720px; margin-bottom:22px; line-height:1.04; font-weight:900; }
.hero h1 em { color:var(--primary); font-style:normal; }
.hero p { font-size:18px; color:rgba(255,255,255,0.6); max-width:520px; margin-bottom:40px; font-weight:300; }
.hero-buttons { display:flex; gap:16px; flex-wrap:wrap; }
.btn { display:inline-flex; align-items:center; gap:9px; padding:14px 32px; font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:16px; letter-spacing:1px; text-transform:uppercase; border:none; cursor:pointer; transition:all 0.25s; text-decoration:none; border-radius:6px; }
.btn-primary { background:var(--primary); color:var(--dark); }
.btn-primary:hover { background:var(--primary-dark); transform:translateY(-2px); box-shadow:var(--shadow-green); }
.btn-outline { background:transparent; color:#fff; border:2px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color:var(--primary); color:var(--primary); }
.hero-stats { display:flex; gap:48px; margin-top:60px; padding-top:40px; border-top:1px solid rgba(255,255,255,0.08); flex-wrap:wrap; }
.stat-item .num { font-family:'Barlow Condensed',sans-serif; font-size:44px; font-weight:900; color:var(--primary); line-height:1; }
.stat-item .label { font-size:12px; color:rgba(255,255,255,0.45); text-transform:uppercase; letter-spacing:1.5px; margin-top:4px; }

/* ===== SECTIONS ===== */
.section { padding:96px 48px; max-width:1200px; margin:0 auto; }
.section-tag { display:inline-flex; align-items:center; gap:8px; font-size:11px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--primary); margin-bottom:12px; }
.section-tag::before { content:''; width:20px; height:2px; background:var(--primary); }
.section-title { font-size:clamp(32px,5vw,54px); color:var(--secondary); margin-bottom:14px; font-weight:900; }
.section-subtitle { font-size:17px; color:var(--text-light); max-width:600px; margin-bottom:52px; font-weight:300; }

/* ===== SERVICES ===== */
.services-bg { background:var(--light-gray); }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:24px; }
.service-card {
    background:#fff; padding:36px 32px;
    border-radius:12px; border:1px solid var(--border);
    border-bottom:4px solid transparent;
    transition:all 0.3s; box-shadow:var(--shadow-sm);
    position:relative; overflow:hidden;
}
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--primary),var(--primary-light)); opacity:0; transition:opacity 0.3s; }
.service-card:hover { border-bottom-color:var(--primary); transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.service-card:hover::before { opacity:1; }
.service-icon-wrap { width:62px; height:62px; background:var(--primary-glow); border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:28px; margin-bottom:22px; transition:transform 0.3s; }
.service-card:hover .service-icon-wrap { transform:scale(1.1) rotate(5deg); }
.service-card h3 { font-size:22px; color:var(--secondary); margin-bottom:10px; }
.service-card p { font-size:15px; color:var(--text-light); line-height:1.75; }

/* ===== ABOUT ===== */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; }
.about-main-box { background:var(--secondary); padding:48px; color:#fff; position:relative; border-radius:12px; overflow:hidden; }
.about-main-box::after { content:''; position:absolute; top:-40px; right:-40px; width:160px; height:160px; background:var(--primary-glow); border-radius:50%; }
.about-badge { position:absolute; bottom:-20px; right:-20px; background:var(--primary); color:var(--dark); padding:20px 24px; font-family:'Barlow Condensed',sans-serif; font-weight:900; text-align:center; line-height:1.2; border-radius:10px; }
.about-badge .years { font-size:44px; display:block; }
.about-badge .text { font-size:12px; text-transform:uppercase; letter-spacing:1px; }
.about-text p { font-size:16px; color:var(--text-light); line-height:1.85; margin-bottom:20px; }
.about-features { list-style:none; margin-top:24px; }
.about-features li { display:flex; align-items:center; gap:12px; padding:11px 0; border-bottom:1px solid var(--border); font-size:15px; color:var(--text); }
.about-features li .feat-icon { width:28px; height:28px; background:var(--primary); color:var(--dark); display:flex; align-items:center; justify-content:center; font-weight:900; font-size:13px; border-radius:6px; flex-shrink:0; }

/* ===== CARDS ===== */
.cards-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(330px,1fr)); gap:28px; }
.card { background:#fff; border-radius:14px; border:1px solid var(--border); overflow:hidden; transition:all 0.3s; box-shadow:var(--shadow-sm); }
.card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); border-color:var(--primary); }
.card-header { background:linear-gradient(135deg,var(--secondary) 0%,var(--mid) 100%); padding:20px 24px; display:flex; align-items:center; justify-content:space-between; }
.card-header-icon { width:42px; height:42px; background:var(--primary-glow); border:1px solid rgba(34,197,94,0.3); display:flex; align-items:center; justify-content:center; font-size:20px; border-radius:10px; }
.card-date, .card-badge { font-size:11px; font-weight:700; letter-spacing:1.5px; color:rgba(255,255,255,0.55); text-transform:uppercase; }
.card-body { padding:28px 24px; }
.card-body h3 { font-size:22px; color:var(--secondary); margin-bottom:12px; }
.card-body p { font-size:15px; color:var(--text-light); line-height:1.75; }
.card-img-wrap { width:100%; overflow:hidden; }
.card-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.4s ease;
}

/* Hiring/promo poster images - show full poster */
.card-img-wrap.poster img {
    object-fit: contain;
    object-position: center center;
    background: #f0faf3;
    height: 320px;
}
.card:hover .card-img-wrap img { transform:scale(1.04); }
.card-img-label { display:inline-flex; align-items:center; gap:6px; background:var(--primary); color:var(--dark); font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:11px; letter-spacing:1.5px; text-transform:uppercase; padding:5px 14px; margin-bottom:14px; border-radius:20px; }
.promo-price { margin-top:20px; padding-top:20px; border-top:2px dashed var(--border); display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:8px; }
.price-tag { font-family:'Barlow Condensed',sans-serif; font-size:34px; font-weight:900; color:var(--primary); }
.price-free { color:var(--success); }
.valid-until { font-size:13px; color:var(--text-light); font-weight:500; }
.valid-until strong { color:var(--danger); }
.ann-qualifications { margin-top:16px; padding-top:16px; border-top:2px dashed var(--border); }
.ann-qualifications h4 { font-size:13px; font-weight:700; color:var(--primary); letter-spacing:1px; text-transform:uppercase; margin-bottom:10px; display:flex; align-items:center; gap:6px; }
.ann-qualifications ul { list-style:none; padding:0; }
.ann-qualifications ul li { font-size:14px; color:var(--text-light); padding:5px 0 5px 18px; position:relative; line-height:1.6; }
.ann-qualifications ul li::before { content:'●'; position:absolute; left:0; color:var(--primary); font-size:8px; top:9px; }
.ann-submit { margin-top:16px; padding:16px; background:var(--light-gray); border-left:4px solid var(--primary); border-radius:0 8px 8px 0; }
.ann-submit .submit-title { font-weight:700; color:var(--secondary); font-size:14px; margin-bottom:8px; display:flex; align-items:center; gap:6px; }
.ann-submit .submit-item { font-size:14px; color:var(--text-light); display:flex; align-items:flex-start; gap:8px; margin-top:6px; }


/* Photo cards - face-aligned image display */
.card-img-wrap.photo img {
    object-position: center 20%;
    height: 240px;
}

/* Hover zoom effect on card images */
.card:hover .card-img-wrap img {
    transform: scale(1.05);
}

/* Promotion image cards */
.promo-card-img {
    width: 100%;
    overflow: hidden;
}
.promo-card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.4s ease;
}
.card:hover .promo-card-img img {
    transform: scale(1.05);
}


/* ===== ABOUT PHOTO GALLERY ===== */
.about-section-wrap { overflow: hidden; }

.about-photos-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 24px;
    align-items: start;
}

.about-photo-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    border: 1px solid var(--border);
    transition: all 0.35s ease;
}

.about-photo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
    border-color: var(--primary);
}

.about-photo-card--featured {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(34,197,94,0.2);
    border-color: var(--primary);
}

.about-photo-card--featured:hover {
    transform: translateY(-18px);
}

.about-photo-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.about-photo-card--featured .about-photo-img-wrap {
    height: 300px;
}

.about-photo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.5s ease;
}

.about-photo-card:hover .about-photo-img-wrap img {
    transform: scale(1.07);
}

.about-photo-overlay {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}

.about-photo-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(6,14,9,0.78);
    backdrop-filter: blur(8px);
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(34,197,94,0.3);
}

.about-photo-body {
    padding: 22px 22px 24px;
}

.about-photo-body h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.about-photo-card--featured .about-photo-body h4 {
    color: var(--primary-dark);
    font-size: 22px;
}

.about-photo-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
}

/* Responsive */
@media (max-width: 900px) {
    .about-photos-grid {
        grid-template-columns: 1fr;
    }
    .about-photo-card--featured {
        transform: none;
    }
    .about-photo-img-wrap { height: 220px; }
    .about-photo-card--featured .about-photo-img-wrap { height: 240px; }
    div[style*="padding:0 48px"] { padding: 0 20px !important; }
}

/* ===== PAGE HEADER ===== */
.page-header { background:linear-gradient(135deg,var(--secondary) 0%,var(--mid) 100%); padding:120px 48px 64px; text-align:center; position:relative; overflow:hidden; }
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/team-photo.jpg') var(--header-bg-pos, center 35%) / cover no-repeat;
    opacity: 0.22;
    filter: saturate(0.6);
}
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10,31,18,0.78) 0%,
        rgba(10,31,18,0.62) 50%,
        rgba(10,31,18,0.80) 100%
    );
    z-index: 0;
}
.page-header h1,
.page-header p { position: relative; z-index: 1; }
.page-header::after { content:''; position:absolute; bottom:0; left:0; right:0; height:4px; background:linear-gradient(90deg,transparent,var(--primary),transparent); }
.page-header h1 { font-size:clamp(36px,6vw,68px); color:#fff; position:relative; font-weight:900; }
.page-header p { font-size:17px; color:rgba(255,255,255,0.55); margin-top:12px; position:relative; }
.page-content { max-width:1200px; margin:0 auto; padding:68px 48px; }
.empty-state { text-align:center; padding:80px 40px; color:var(--text-light); }
.empty-state .icon { font-size:64px; margin-bottom:16px; opacity:0.4; }
.empty-state h3 { font-size:24px; color:var(--text); margin-bottom:8px; }

/* ===== CONTACT ===== */
.contact-bg { background:linear-gradient(135deg,var(--secondary) 0%,var(--dark) 100%); }
.contact-inner { max-width:1200px; margin:0 auto; padding:96px 48px; }
.contact-inner .section-title { color:#fff; }
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; margin-top:52px; }
.contact-item { display:flex; gap:16px; margin-bottom:32px; }
.contact-icon { width:52px; height:52px; background:var(--primary-glow); border:1px solid rgba(34,197,94,0.3); display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; border-radius:12px; }
.contact-item-text .label { font-size:11px; text-transform:uppercase; letter-spacing:2px; color:var(--primary); margin-bottom:4px; font-weight:700; }
.contact-item-text .value { font-size:16px; color:rgba(255,255,255,0.8); }
.hours-box { background:rgba(255,255,255,0.04); padding:32px; border:1px solid rgba(255,255,255,0.08); border-radius:12px; }
.hours-row { display:flex; justify-content:space-between; align-items:center; padding:12px 0; border-bottom:1px solid rgba(255,255,255,0.07); }
.hours-row:last-child { border-bottom:none; }
.hours-day { color:rgba(255,255,255,0.65); font-size:15px; }
.hours-time { color:var(--primary); font-weight:700; font-size:14px; }
.hours-closed { color:rgba(255,255,255,0.25); }

/* ===== FOOTER ===== */
.footer { background:var(--dark); padding:32px 48px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px; border-top:2px solid var(--primary); }
.footer-brand { font-family:'Barlow Condensed',sans-serif; font-weight:900; font-size:20px; color:#fff; display:flex; align-items:center; gap:10px; }
.footer-brand span { color:var(--primary); }
.footer-logo-img { width:32px; height:32px; object-fit:contain; filter:brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(80deg) brightness(0.9); animation:logoPulse 3s ease-in-out infinite; }
@keyframes logoPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.12) rotate(5deg)} }
.footer-copy { font-size:13px; color:rgba(255,255,255,0.35); }

/* ===== ALERT ===== */
.alert { padding:14px 20px; margin-bottom:20px; font-size:14px; font-weight:500; border-left:4px solid; border-radius:0 8px 8px 0; }
.alert-success { background:rgba(34,197,94,0.08); border-color:var(--success); color:#166534; }
.alert-danger { background:rgba(239,68,68,0.08); border-color:var(--danger); color:#991b1b; }

/* ===== RESPONSIVE ===== */
@media(max-width:900px){ .about-grid,.contact-grid{grid-template-columns:1fr;} .hero-accent,.hero-stripe{display:none;} .hero-stats{gap:32px;} }
@media(max-width:768px){
    .navbar{padding:0 20px;}
    .navbar-menu{display:none;position:absolute;top:72px;left:0;right:0;background:rgba(6,14,9,0.98);flex-direction:column;padding:20px;gap:4px;border-top:1px solid rgba(255,255,255,0.1);}
    .navbar-menu.open{display:flex;}
    .navbar-menu a{display:flex;width:100%;}
    .hamburger{display:flex;}
    .hero-content,.section,.page-header,.page-content,.contact-inner{padding-left:20px;padding-right:20px;}
    .footer{padding:24px 20px;flex-direction:column;text-align:center;}
}
