/*
Theme Name: Cutmit Carbon Consultancy
Theme URI: https://cutmit.com
Description: Professional carbon consultancy theme for Cutmit
Version: 4.8
Author: Cutmit
*/

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

:root {
  --primary: #3d7a5f;
  --primary-light: #e8f5ee;
  --primary-fg: #fff;
  --dark-bg: #1f2937;
  --foreground: #1e293b;
  --muted: #64748b;
  --border: #e5e7eb;
  --bg-alt: #f8fafc;
  --card-bg: #fff;
  --accent-bg: #f0fdf4;
  --accent-fg: #166534;
  --radius: 0.75rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--foreground); background: #fff; -webkit-font-smoothing: antialiased; line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Top Bar */
.top-bar { background: var(--dark-bg); color: rgba(255,255,255,0.8); font-size: 0.75rem; }
.top-bar .container { display: flex; align-items: center; justify-content: space-between; height: 2.5rem; }
.top-bar span, .top-bar a { display: flex; align-items: center; gap: 0.375rem; }
.top-bar a:hover { color: #fff; }

/* Main Nav */
.main-nav { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.main-nav .container { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.main-nav .logo img { height: 3rem; width: auto; }
.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a { padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500; color: rgba(30,41,59,0.7); transition: color 0.2s; border-radius: 0.375rem; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

/* Mobile nav */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--foreground); }
@media (max-width: 1023px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .mobile-nav { background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
  .mobile-nav a { display: block; padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 500; color: rgba(30,41,59,0.7); }
  .mobile-nav a:hover, .mobile-nav a.active { color: var(--primary); background: var(--bg-alt); }
}

/* Hero sections */
.hero { position: relative; overflow: hidden; }
.hero img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .overlay { position: absolute; inset: 0; background: rgba(31,41,55,0.7); }
.hero .hero-content { position: relative; z-index: 2; padding: 5rem 0; }
.hero h1 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 1.5rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
.hero p { font-size: 1.125rem; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 42rem; margin-bottom: 2rem; }
.hero-center .hero-content { text-align: center; max-width: 48rem; margin: 0 auto; }
.hero-center h1, .hero-center p { max-width: none; }

/* Check list in hero */
.hero-checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem 2rem; margin-bottom: 2.5rem; color: rgba(255,255,255,0.9); font-size: 0.875rem; }
.hero-checks li { display: flex; align-items: flex-start; gap: 0.5rem; list-style: none; }
.hero-checks .check { color: var(--primary); margin-top: 0.125rem; }
@media (max-width: 639px) { .hero-checks { grid-template-columns: 1fr; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 2rem; border-radius: 9999px; font-weight: 600; font-size: 0.875rem; transition: all 0.2s; border: none; cursor: pointer; text-decoration: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { opacity: 0.9; }
.btn-outline-white { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: #fff; color: var(--dark-bg); }
.btn-dark { background: var(--dark-bg); color: #fff; border-radius: 0; text-transform: uppercase; letter-spacing: 0.05em; }
.btn-dark:hover { opacity: 0.9; }
.btn-outline-dark { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); border-radius: 0; text-transform: uppercase; letter-spacing: 0.05em; }
.btn-outline-dark:hover { background: #fff; color: var(--dark-bg); }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff; }
.btn-outline:hover { background: #fff; color: var(--dark-bg); }
.btn-hero { background: var(--primary); color: #fff; padding: 1rem 2.5rem; font-size: 1rem; }
.btn-hero:hover { opacity: 0.9; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 639px) { .btn-group { flex-direction: column; } .btn { justify-content: center; } }

/* Section */
.section { padding: 5rem 0; }
.section-lg { padding: 7rem 0; }
.section-dark { background: var(--dark-bg); }
.section-alt { background: var(--bg-alt); }
.section-heading { margin-bottom: 3.5rem; max-width: 48rem; }
.section-heading h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); font-weight: 700; color: var(--foreground); margin-bottom: 1rem; }
.section-heading p { color: var(--muted); line-height: 1.7; }

/* Service cards */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1023px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .service-grid { grid-template-columns: 1fr; } }
.service-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.3s; display: flex; flex-direction: column; }
.service-card:hover { box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15); }
.service-card .card-img { aspect-ratio: 16/10; overflow: hidden; }
.service-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .card-img img { transform: scale(1.05); }
.service-card .card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-icon-title { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.card-icon-title svg { color: var(--primary); width: 18px; height: 18px; flex-shrink: 0; }
.card-icon-title h3 { font-size: 1.125rem; font-weight: 600; color: var(--foreground); }
.service-card:hover .card-icon-title h3 { color: var(--primary); }
.card-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; flex: 1; }
.card-link { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; font-weight: 500; color: var(--primary); }

/* Services listing (horizontal) */
.service-listing { display: flex; flex-direction: column; gap: 4rem; }
.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 767px) { .service-row { grid-template-columns: 1fr; } }
.service-row .row-img { aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; }
.service-row .row-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-row:hover .row-img img { transform: scale(1.05); }
.service-row .row-body h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.service-row .row-body h2 svg { color: var(--primary); width: 20px; height: 20px; }
.service-row:hover .row-body h2 { color: var(--primary); }
.service-row .row-body > p { color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.bullet-list { list-style: none; margin-bottom: 1.25rem; }
.bullet-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--muted); margin-bottom: 0.5rem; }
.bullet-list .check { color: var(--primary); margin-top: 0.125rem; font-weight: bold; }
.outcome { font-size: 0.875rem; font-weight: 600; color: var(--foreground); margin-bottom: 1rem; }
.outcome .label { color: var(--primary); }

/* CTA Banner (green) */
.cta-green { background: var(--primary); padding: 3rem 0; }
.cta-green .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cta-green h2 { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700; color: #fff; font-style: italic; }
.cta-green p { color: rgba(255,255,255,0.8); margin-top: 0.5rem; max-width: 42rem; }

/* CTA Banner (dark) */
.cta-dark { background: var(--dark-bg); padding: 5rem 0; text-align: center; }
.cta-dark h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); font-weight: 700; color: #fff; margin-bottom: 1rem; }
.cta-dark p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 36rem; margin-left: auto; margin-right: auto; line-height: 1.7; }

/* Expertise section */
.expertise-section { background: var(--dark-bg); padding: 5rem 0; }
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 4rem; align-items: center; }
@media (max-width: 767px) { .expertise-grid { grid-template-columns: 1fr; } }
.expertise-img { position: relative; aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; }
.expertise-img img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; opacity: 0.6; }
.expertise-img .img-overlay { position: absolute; inset: 0; background: rgba(61,122,95,0.3); }
.expertise-img h3 { position: absolute; bottom: 2rem; left: 2rem; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: #fff; }
.expertise-text h2 { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700; color: #fff; margin-bottom: 1rem; }
.expertise-text > p { color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 2rem; }
.progress-bars { display: flex; flex-direction: column; gap: 1.5rem; }
.progress-bar-item p { font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.progress-track { height: 0.25rem; width: 100%; background: rgba(255,255,255,0.2); border-radius: 9999px; overflow: hidden; }
.progress-fill { height: 100%; background: var(--primary); border-radius: 9999px; }

/* Trusted By */
.trusted-by { padding: 4rem 0 5rem; text-align: center; }
.trusted-by .label { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; color: var(--muted); margin-bottom: 2.5rem; }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 2.5rem 3.5rem; }
.logo-row img { height: 3.5rem; width: auto; object-fit: contain; opacity: 0.8; transition: opacity 0.3s; }
.logo-row img:hover { opacity: 1; }
@media (min-width: 768px) { .logo-row img { height: 4rem; } }

/* About page */
.timeline { position: relative; max-width: 48rem; padding-left: 3rem; }
.timeline::before { content: ''; position: absolute; left: 1rem; top: 0; bottom: 0; width: 1px; background: rgba(61,122,95,0.3); }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot { position: absolute; left: -2.25rem; top: 0.125rem; width: 2rem; height: 2rem; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: #fff; }
.timeline-item h3 { font-size: 1.125rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.25rem; }
.timeline-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* Team cards */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 1023px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 2rem; transition: background 0.2s; }
.team-card:hover { background: rgba(255,255,255,0.15); }
.team-card h3 { font-size: 1.125rem; font-weight: 600; color: #fff; }
.team-card:hover h3 { color: var(--primary); }
.team-card .role { font-size: 0.875rem; font-weight: 500; color: var(--primary); }
.team-card .view-link { display: inline-block; margin-top: 0.75rem; font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.team-card:hover .view-link { color: rgba(255,255,255,0.8); }
.team-join { background: rgba(61,122,95,0.1); border: 1px solid rgba(61,122,95,0.3); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: background 0.2s; }
.team-join:hover { background: rgba(61,122,95,0.2); }
.team-join h3 { font-size: 1.125rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.team-join p { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* Team member detail */
.member-detail { max-width: 48rem; margin: 0 auto; }
.member-detail .back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted); margin-bottom: 2.5rem; }
.member-detail .back-link:hover { color: var(--primary); }
.member-detail h1 { font-size: clamp(1.875rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 0.5rem; }
.member-detail .role { font-size: 1.125rem; font-weight: 600; color: var(--primary); }
.member-detail .linkedin-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted); margin-top: 0.5rem; }
.member-detail .linkedin-link:hover { color: var(--primary); }
.member-detail .bio { font-size: 1.125rem; color: var(--muted); line-height: 1.7; margin: 2.5rem 0; white-space: pre-line; }
.cert-box { background: var(--bg-alt); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 2.5rem; }
.cert-box h2 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.cert-box p { color: var(--muted); }
.expertise-list { list-style: none; }
.expertise-list li { display: flex; align-items: flex-start; gap: 0.5rem; color: var(--muted); margin-bottom: 0.5rem; }
.expertise-list .check { color: var(--primary); margin-top: 0.125rem; }

/* Insights / Blog */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 1023px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .article-grid { grid-template-columns: 1fr; } }
.article-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--card-bg); transition: box-shadow 0.3s; }
.article-card:hover { box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15); }
.article-card .card-img { aspect-ratio: 16/9; overflow: hidden; }
.article-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.article-card:hover .card-img img { transform: scale(1.05); }
.article-card .card-body { padding: 1.5rem; }
.article-card h2 { font-size: 1.125rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.5rem; }
.article-card:hover h2 { color: var(--primary); }
.article-card .excerpt { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }

/* Article detail */
.article-hero { position: relative; height: 18rem; overflow: hidden; }
@media (min-width: 768px) { .article-hero { height: 24rem; } }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.article-hero .hero-content { position: absolute; inset: 0; display: flex; align-items: flex-end; }
.article-hero h1 { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; color: #fff; line-height: 1.3; padding-bottom: 2.5rem; max-width: 48rem; margin: 0 auto; width: 100%; }
.article-content { max-width: 48rem; margin: 0 auto; padding: 4rem 1.5rem; }
.article-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--foreground); margin-top: 2rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.article-content h3 { font-size: 1.125rem; font-weight: 600; color: var(--foreground); margin-top: 1rem; margin-bottom: 0.5rem; }
.article-content p { color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }

/* Service detail */
.detail-intro { max-width: 56rem; margin: 0 auto; }
.detail-intro p { color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.detail-content { max-width: 56rem; margin: 0 auto; }
.detail-content h2 { font-size: clamp(1.5rem, 3vw, 1.875rem); font-weight: 700; color: var(--foreground); margin-bottom: 2rem; }
.detail-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3.5rem; }
.detail-items h3 { font-size: 1.125rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; }
.detail-items p { color: var(--muted); line-height: 1.7; }
.approach-box { background: var(--primary-light); border: 1px solid rgba(61,122,95,0.2); border-radius: var(--radius); padding: 2rem; margin-bottom: 3.5rem; }
.approach-box h2 { font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.75rem; }
.approach-box p { color: var(--muted); line-height: 1.7; }
.package-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 767px) { .package-grid { grid-template-columns: 1fr; } }
.package-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.package-card .pkg-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.package-card .pkg-header svg { color: var(--primary); width: 20px; height: 20px; flex-shrink: 0; }
.package-card .pkg-header h3 { font-size: 1.125rem; font-weight: 700; color: var(--foreground); }
.package-card .pkg-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.75rem; }
.package-card .pkg-meta { font-size: 0.875rem; }
.package-card .pkg-meta .label { font-weight: 600; color: var(--foreground); }
.package-card .pkg-meta span { color: var(--muted); }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; }
@media (max-width: 767px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--foreground); margin-bottom: 0.375rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 0.5rem; background: var(--card-bg); font-size: 0.875rem; color: var(--foreground); font-family: 'Inter', sans-serif; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; box-shadow: 0 0 0 2px var(--primary); }
.contact-form textarea { resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 639px) { .form-row { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--primary); color: #fff; border-radius: var(--radius); padding: 2rem; margin-top: 2.5rem; }
.contact-info-card h3 { font-weight: 700; font-size: 1.25rem; color: var(--dark-bg); margin-bottom: 0.75rem; }
.contact-info-card p { color: rgba(255,255,255,0.9); line-height: 1.7; }

/* Sectors */
.sector-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 1023px) { .sector-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .sector-grid { grid-template-columns: 1fr; } }
.sector-card { padding: 2rem; border-radius: var(--radius); background: var(--card-bg); border: 1px solid var(--border); transition: box-shadow 0.3s; }
.sector-card:hover { box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15); }
.sector-icon { width: 3.5rem; height: 3.5rem; border-radius: var(--radius); background: var(--accent-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.sector-icon svg { color: var(--primary); width: 28px; height: 28px; }
.sector-card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }
.sector-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* Footer */
.footer-talk { background: #fff; padding: 4rem 0 5rem; }
.footer-talk .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem 4rem; }
@media (max-width: 767px) { .footer-talk .container { grid-template-columns: 1fr; } }
.footer-talk .left-col { }
.footer-talk .heading-row { display: flex; align-items: flex-start; gap: 2rem; margin-bottom: 2rem; }
.footer-talk .heading-row h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); font-weight: 700; }
.footer-talk .heading-row .underline-bar { width: 3rem; height: 0.25rem; background: var(--primary); margin-top: 0.75rem; }
.footer-talk .heading-row img { height: 4rem; width: auto; }
.footer-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.footer-form input, .footer-form textarea { background: var(--bg-alt); border: none; border-radius: 0.375rem; padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--foreground); font-family: 'Inter', sans-serif; }
.footer-form input:focus, .footer-form textarea:focus { outline: none; box-shadow: 0 0 0 2px var(--primary); }
.footer-form textarea { resize: none; min-height: 8.75rem; }
.footer-form .submit-row { grid-column: 1 / -1; display: flex; justify-content: flex-end; }

.site-footer { background: var(--dark-bg); }
.footer-meta { padding: 2.5rem 0; }
.footer-meta .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.footer-meta span { display: flex; align-items: center; gap: 0.625rem; }
.footer-meta a { color: rgba(255,255,255,0.6); }
.footer-meta a:hover { color: #fff; }
.footer-meta svg { color: var(--primary); flex-shrink: 0; }
.footer-links { display: flex; align-items: center; gap: 1rem; }
.footer-links span.divider { color: rgba(255,255,255,0.3); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; }
.footer-bottom .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-bottom .copyright { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.social-icons { display: flex; gap: 0.75rem; }
.social-icon { width: 2rem; height: 2rem; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.2s; }
.social-icon:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

/* Scroll down btn */
.scroll-down { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); display: flex; flex-direction: column; align-items: center; gap: 0.25rem; font-size: 0.75rem; background: none; border: none; cursor: pointer; }
.scroll-down:hover { color: #fff; }

/* Utilities */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 3rem; }
