/* ============================================================
   Access Built — style.css
   Global styles, layout, components, footer.
   Edit ONCE to update styles across ALL pages.
   Brand: Teal #1A5F6E + Lime Green #7DC942
   ============================================================ */

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

:root {
  --teal:        #1A5F6E;
  --teal-dark:   #134854;
  --teal-light:  rgba(26,95,110,0.08);
  --green:       #7DC942;
  --green-dark:  #6ab836;
  --green-pale:  rgba(125,201,66,0.10);
  --white:       #FFFFFF;
  --off-white:   #F4FAF4;
  --light-grey:  #EEEEEE;
  --mid-grey:    #999;
  --text:        #1A1A1A;
  --text-light:  #555;
  --font-heading:'Montserrat', system-ui, sans-serif;
  --font-body:   'Open Sans', system-ui, sans-serif;
  --container-max:1200px;
  --container-pad:clamp(1.25rem, 5vw, 2.5rem);
  --radius-sm:4px; --radius-md:8px; --radius-lg:16px;
  --shadow-sm:0 2px 10px rgba(26,95,110,0.07);
  --shadow-md:0 6px 28px rgba(26,95,110,0.11);
  --transition:0.25s ease;
}

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body { font-family:var(--font-body); color:var(--text); background:var(--white); line-height:1.7; -webkit-font-smoothing:antialiased; }
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

.container { width:100%; max-width:var(--container-max); margin-inline:auto; padding-inline:var(--container-pad); }

h1,h2,h3,h4,h5 { font-family:var(--font-heading); font-weight:700; line-height:1.2; color:var(--teal); }
h1 { font-size:clamp(2rem,5vw,3.1rem); font-weight:800; }
h2 { font-size:clamp(1.6rem,3.5vw,2.3rem); }
h3 { font-size:clamp(1.05rem,2.5vw,1.4rem); }
h4 { font-size:1rem; font-weight:700; }
p { color:var(--text-light); font-size:1rem; margin-bottom:1rem; line-height:1.75; }
p:last-child { margin-bottom:0; }

/* Buttons */
.btn { display:inline-flex; align-items:center; gap:0.5rem; padding:0.85rem 2rem; border-radius:var(--radius-sm); font-family:var(--font-heading); font-weight:700; font-size:0.82rem; letter-spacing:0.06em; text-transform:uppercase; cursor:pointer; transition:all var(--transition); border:2px solid transparent; text-decoration:none; }
.btn-primary { background:var(--green); color:var(--white); border-color:var(--green); }
.btn-primary:hover { background:var(--green-dark); border-color:var(--green-dark); transform:translateY(-2px); box-shadow:0 6px 20px rgba(125,201,66,0.4); }
.btn-teal { background:var(--teal); color:var(--white); border-color:var(--teal); }
.btn-teal:hover { background:var(--teal-dark); border-color:var(--teal-dark); transform:translateY(-2px); box-shadow:0 6px 20px rgba(26,95,110,0.3); }
.btn-secondary { background:transparent; color:var(--white); border-color:rgba(255,255,255,0.6); }
.btn-secondary:hover { background:var(--white); color:var(--teal); border-color:var(--white); transform:translateY(-2px); }
.btn-outline { background:transparent; color:var(--teal); border-color:var(--teal); }
.btn-outline:hover { background:var(--teal); color:var(--white); }
.btn-white { background:var(--white); color:var(--teal); border-color:var(--white); font-weight:800; }
.btn-white:hover { background:var(--teal); color:var(--white); }

/* Sections */
.section { padding-block:clamp(3.5rem,8vw,6rem); }
.section-sm { padding-block:clamp(2rem,5vw,3.5rem); }
.section-dark { background:var(--teal); }
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4 { color:var(--white); }
.section-dark p { color:rgba(255,255,255,0.8); }
.section-alt { background:var(--off-white); }

.section-label { display:inline-block; font-family:var(--font-heading); font-size:0.7rem; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--green); margin-bottom:0.75rem; }
.section-header { text-align:center; max-width:700px; margin-inline:auto; margin-bottom:clamp(2.5rem,6vw,4rem); }
.section-header h2 { margin-bottom:0.75rem; }
.section-header p { font-size:1.05rem; }
.section-header .divider { width:52px; height:4px; background:var(--green); margin:1rem auto 0; border-radius:2px; }

/* Image Placeholders */
.img-placeholder { width:100%; background:#DFF0D8; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:0.6rem; border:2px dashed #A8D48A; border-radius:var(--radius-md); color:#5a8a3a; font-family:var(--font-body); font-size:0.8rem; font-weight:500; text-align:center; padding:1.5rem; }
.ph-hero { min-height:540px; border-radius:0; border:none; background:linear-gradient(135deg,#13485422 0%,#7DC94222 100%); }
.ph-page { min-height:340px; border-radius:0; border:none; background:linear-gradient(135deg,#13485422 0%,#7DC94222 100%); }
.ph-card { min-height:200px; }
.ph-feat { min-height:400px; border-radius:var(--radius-lg); }
.ph-gal  { min-height:240px; }
.ph-icon { width:36px; height:36px; opacity:0.45; }
.border_r {
    border-radius: 12px;
}

/* Hero */
.hero { position:relative; background:var(--teal); min-height:600px; display:flex; align-items:center; overflow:hidden; }
.hero-bg-wrapper { position:absolute; inset:0; z-index:0; }
.hero-bg-wrapper .img-placeholder { width:100%; height:100%; border-radius:0; border:none; background:linear-gradient(135deg,#134854 0%,#1e6f80 55%,#2a7a3a 100%); }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(105deg,rgba(26,95,110,0.95) 38%,rgba(26,95,110,0.5) 100%); z-index:1; }
.hero-content { position:relative; z-index:2; max-width:660px; padding-block:clamp(4rem,10vw,7rem); }
.hero-content h1 { color:var(--white); margin-bottom:1.25rem; }
.hero-content > p { color:rgba(255,255,255,0.85); font-size:1.1rem; max-width:540px; margin-bottom:2rem; }
.hero-actions { display:flex; flex-wrap:wrap; gap:1rem; align-items:center; }
.hero-trust { display:flex; align-items:center; gap:1.25rem; margin-top:2.5rem; flex-wrap:wrap; }
.hero-trust-item { display:flex; align-items:center; gap:0.4rem; font-size:0.8rem; font-family:var(--font-heading); font-weight:600; color:rgba(255,255,255,0.7); }
.hero-trust-item svg { color:var(--green); }
.hero::after { content:''; position:absolute; bottom:0; right:0; width:40%; height:6px; background:var(--green); z-index:3; }

/* Page Hero */
.page-hero { position:relative; background:var(--teal); min-height:320px; display:flex; align-items:flex-end; overflow:hidden; }
.page-hero-bg { position:absolute; inset:0; z-index:0; }
.page-hero-bg .img-placeholder { width:100%; height:100%; border-radius:0; border:none; background:linear-gradient(135deg,#134854 0%,#1e6f80 100%); }
.page-hero-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(26,95,110,0.95) 30%,rgba(26,95,110,0.5) 100%); z-index:1; }
.page-hero-content { position:relative; z-index:2; padding-block:3rem 2.75rem; width:100%; }
.page-hero-content h1 { color:var(--white); margin-bottom:0.6rem; }
.page-hero-content p { color:rgba(255,255,255,0.8); font-size:1.05rem; max-width:600px; }
.page-hero::after { content:''; position:absolute; bottom:0; left:0; width:100px; height:5px; background:var(--green); z-index:3; }

.breadcrumb { display:flex; align-items:center; gap:0.5rem; font-size:0.82rem; color:rgba(255,255,255,0.55); margin-bottom:0.75rem; font-family:var(--font-heading); font-weight:500; }
.breadcrumb a { color:var(--green); }
.breadcrumb .sep { opacity:0.4; }

/* Two col */
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,5vw,4rem); align-items:center; }
.two-col.reverse { direction:rtl; }
.two-col.reverse > * { direction:ltr; }

/* Stats bar */
.stats-bar { background:var(--teal); padding-block:2.5rem; }
.stats-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:2rem; text-align:center; }
.stat-number { font-family:var(--font-heading); font-size:clamp(2rem,5vw,2.8rem); font-weight:800; color:var(--green); display:block; line-height:1; margin-bottom:0.4rem; }
.stat-label { font-size:0.8rem; font-family:var(--font-heading); font-weight:600; color:rgba(255,255,255,0.65); letter-spacing:0.07em; text-transform:uppercase; }

/* Process steps */
.process-steps { display:flex; flex-direction:column; gap:1.25rem; }
.process-step { display:flex; align-items:flex-start; gap:1.25rem; }
.step-number { width:44px; height:44px; border-radius:50%; background:var(--green); color:#fff; font-family:var(--font-heading); font-weight:800; font-size:1rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.step-content h4 { font-size:0.98rem; margin-bottom:0.25rem; }
.step-content p { font-size:0.88rem; }

/* Service cards */
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:1.5rem; }
.service-card { background:var(--white); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-sm); border:1px solid var(--light-grey); transition:box-shadow var(--transition),transform var(--transition); display:flex; flex-direction:column; border-top:4px solid transparent; }
.service-card:hover { box-shadow:var(--shadow-md); transform:translateY(-5px); border-top-color:var(--green); }
.service-card-body { padding:1.5rem; flex:1; display:flex; flex-direction:column; }
.service-card-icon { width:46px; height:46px; background:var(--green-pale); border-radius:var(--radius-md); display:flex; align-items:center; justify-content:center; color:var(--green); margin-bottom:1rem; }
.service-card-body h3 { margin-bottom:0.5rem; font-size:1.05rem; }
.service-card-body p { font-size:0.9rem; flex:1; margin-bottom:1.25rem; }
.service-card-link { display:inline-flex; align-items:center; gap:0.4rem; font-size:0.78rem; font-family:var(--font-heading); font-weight:700; color:var(--teal); text-transform:uppercase; letter-spacing:0.07em; transition:gap var(--transition),color var(--transition); margin-top:auto; }
.service-card-link:hover { gap:0.8rem; color:var(--green); }

/* Why grid */
.why-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:2rem 2.5rem; }
.why-item { display:flex; flex-direction:column; gap:0.75rem; }
.why-icon { width:52px; height:52px; background:var(--green-pale); border-radius:var(--radius-md); display:flex; align-items:center; justify-content:center; color:var(--green); border:2px solid rgba(125,201,66,0.2); }
.why-item h4 { font-size:0.95rem; color:var(--teal); }
.why-item p { font-size:0.88rem; }

/* Checklist */
.checklist { display:flex; flex-direction:column; gap:0.7rem; }
.checklist li { display:flex; align-items:flex-start; gap:0.75rem; font-size:0.95rem; color:var(--text-light); line-height:1.55; }
.check-icon { width:20px; height:20px; background:var(--green); border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:2px; }
.check-icon svg { width:11px; height:11px; color:#fff; }

/* CTA Band */
.cta-band { background:var(--green); padding-block:3rem; }
.cta-band-inner { display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap; }
.cta-band h2 { color:var(--white); font-size:clamp(1.4rem,3vw,2rem); margin-bottom:0.4rem; }
.cta-band p { color:rgba(255,255,255,0.9); }

/* Who we work with tags */
.who-tags { display:flex; flex-wrap:wrap; gap: 20px; }
.who-tag { padding:0.45rem 1rem; background:var(--white); border:1.5px solid var(--light-grey); border-radius:999px; font-family:var(--font-heading); font-size: 15px; font-weight:600; color:var(--teal); }

/* Service list cards */
.service-list-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:1.5rem; }
.service-list-card { background:var(--white); border-radius:var(--radius-md); padding:1.5rem; border-left:4px solid var(--green); box-shadow:var(--shadow-sm); }
.service-list-card h4 { color:var(--teal); margin-bottom:0.5rem; font-size:0.95rem; }
.service-list-card p { font-size:0.88rem; }

/* Mod types grid */
.mod-types { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:1rem; }
.mod-type { background:var(--off-white); border-radius:var(--radius-md); padding:1.25rem; text-align:center; border:1px solid var(--light-grey); transition:border-color var(--transition),box-shadow var(--transition); }
.mod-type:hover { border-color:var(--green); box-shadow:var(--shadow-sm); }
.mod-type-icon { width:44px; height:44px; background:var(--green-pale); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--green); margin:0 auto 0.75rem; }
.mod-type h4 { font-size:0.88rem; }

/* Gallery */
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:1rem; }
.gallery-item { border-radius:var(--radius-md); overflow:hidden; }
.gallery-item .img-placeholder { border-radius:0; border:none; }

/* Contact */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:start; }
.contact-details { display:flex; flex-direction:column; gap:1.25rem; }
.contact-item { display:flex; align-items:flex-start; gap:1rem; }
.contact-icon { width:44px; height:44px; background:var(--green-pale); border-radius:var(--radius-md); display:flex; align-items:center; justify-content:center; color:var(--green); flex-shrink:0; border:2px solid rgba(125,201,66,0.2); }
.contact-item-text { display:flex; flex-direction:column; }
.contact-label { font-size:0.7rem; font-family:var(--font-heading); font-weight:700; text-transform:uppercase; letter-spacing:0.1em; color:var(--mid-grey); margin-bottom:0.15rem; }
.contact-value { font-size:0.95rem; color:var(--teal); font-weight:600; }
.contact-value a { color:var(--teal); transition:color 0.2s; }
.contact-value a:hover { color:var(--green); }

/* Forms */
.form-box { background:var(--off-white); border-radius:var(--radius-lg); padding:2rem; }
.contact-form { display:flex; flex-direction:column; gap:1.1rem; }
.form-group { display:flex; flex-direction:column; gap:0.4rem; }
.form-group label { font-size:0.77rem; font-family:var(--font-heading); font-weight:700; color:var(--teal); letter-spacing:0.03em; text-transform:uppercase; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group input,.form-group select,.form-group textarea { width:100%; padding:0.75rem 1rem; border:1.5px solid var(--light-grey); border-radius:var(--radius-sm); font-family:var(--font-body); font-size:0.92rem; color:var(--text); background:var(--white); transition:border-color var(--transition),box-shadow var(--transition); outline:none; -webkit-appearance:none; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--green); box-shadow:0 0 0 3px rgba(125,201,66,0.15); }
.form-group textarea { resize:vertical; min-height:120px; }
.form-submit .btn { width:100%; justify-content:center; padding:1rem; font-size:0.85rem; }
.form-note { font-size:0.8rem; color:var(--mid-grey); font-style:italic; line-height:1.5; }
.form-checkbox { display:flex; align-items:flex-start; gap:0.75rem; font-size:0.88rem; color:var(--text-light); }
.form-checkbox input[type="checkbox"] { width:18px; height:18px; accent-color:var(--green); flex-shrink:0; margin-top:2px; }

/* Footer */
.site-footer { background:var(--teal); }
.footer-main { padding-block:clamp(3rem,7vw,5rem); display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:2.5rem; }
.footer-logo-link { display:flex; align-items:center; margin-bottom:1.25rem; text-decoration:none; }
.footer-logo-link img { height:50px; width:auto; }
.footer-logo-text .logo-main { font-family:var(--font-heading); font-size:1rem; font-weight:800; color:var(--white); display:block; }
.footer-logo-text .logo-sub { font-size:0.58rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--green); }
.footer-brand p { font-size:0.88rem; color:rgba(255,255,255,0.7); line-height:1.75; margin-bottom:1.25rem; }
.footer-social { display:flex; gap:0.6rem; }
.footer-social a { width:36px; height:36px; 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.7); transition:all 0.2s; }
.footer-social a:hover { background:var(--green); border-color:var(--green); color:#fff; }
.footer-col h5 { font-family:var(--font-heading); font-size:0.72rem; font-weight:800; letter-spacing:0.12em; text-transform:uppercase; color:var(--white); margin-bottom:1.25rem; }
.footer-links { display:flex; flex-direction:column; gap:0.6rem; }
.footer-links a { font-size:0.88rem; color:rgba(255,255,255,0.7); display:flex; align-items:center; gap:0.4rem; transition:color 0.2s; }
.footer-links a:hover { color:var(--green); }
.footer-links a::before { content:'›'; color:var(--green); font-size:1rem; }
.footer-contact-list { display:flex; flex-direction:column; gap:0.85rem; }
.footer-contact-item { display:flex; align-items:flex-start; gap:0.6rem; font-size:0.88rem; color:rgba(255,255,255,0.7); }
.footer-contact-item svg { flex-shrink:0; margin-top:2px; color:var(--green); }
.footer-contact-item a { color:rgba(255,255,255,0.7); transition:color 0.2s; }
.footer-contact-item a:hover { color:var(--green); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.1); padding-block:1.25rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size:0.8rem; color:rgba(255,255,255,0.45); }
.footer-bottom a { color:rgba(255,255,255,0.45); transition:color 0.2s; }
.footer-bottom a:hover { color:var(--green); }
.footer-bottom-links { display:flex; gap:1.5rem; }
ul.ul_list {
    color: #fff;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width:900px) { .two-col,.contact-grid { grid-template-columns:1fr; } .two-col.reverse { direction:ltr; } .footer-main { grid-template-columns:1fr 1fr; } }
@media (max-width:640px) {.btn {
    padding: 12px 22px;
} .services-grid,.why-grid { grid-template-columns:1fr; } .cta-band-inner { flex-direction:column; text-align:center; } .footer-main { grid-template-columns:1fr; } .footer-bottom { flex-direction:column; text-align:center; } .form-row { grid-template-columns:1fr; } .gallery-grid { grid-template-columns:repeat(2,1fr); } .hero::after { display:none; } }
@media (max-width:400px) { .gallery-grid { grid-template-columns:1fr; } .stats-grid { grid-template-columns:repeat(2,1fr); } }
