/*
Theme Name: Overwatch Security
Theme URI: https://overwatch.sg
Author: Overwatch.sg
Author URI: https://overwatch.sg
Description: Custom enterprise-grade WordPress theme for Overwatch.sg, a security technology company serving government, defense, and critical infrastructure sectors. Built mobile-first, SEO friendly, fully editable via WordPress Admin, ACF, and Elementor.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: overwatch
Tags: custom-theme, security, corporate, enterprise, full-width-template, elementor

This theme is provided as-is for Overwatch.sg. All styles below are loaded via wp_enqueue_style( get_stylesheet_uri() ).
*/

/* ==========================================================================
   1. CSS VARIABLES (Brand Guidelines)
   ========================================================================== */
:root{
  --navy:#0B1F3A;
  --dark-navy:#08162B;
  --orange:#F97316;
  --orange-dark:#EA660A;
  --white:#FFFFFF;
  --light-gray:#F8FAFC;
  --border-gray:#E2E8F0;
  --text-body:#3C4858;
  --text-muted:#697586;
  --radius-lg:20px;
  --radius-md:14px;
  --radius-sm:8px;
  --shadow-soft:0 10px 30px rgba(11,31,58,0.08);
  --shadow-card:0 4px 18px rgba(11,31,58,0.06);
  --max-width:1240px;
  --font-heading:'Poppins', sans-serif;
  --font-body:'Inter', sans-serif;
}

/* ==========================================================================
   2. RESET / BASE
   ========================================================================== */
*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text-body);
  background:var(--white);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;height:auto;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4,h5,h6{
  font-family:var(--font-heading);
  color:var(--navy);
  margin:0 0 16px;
  line-height:1.25;
  font-weight:700;
}
h1{font-size:48px;}
h2{font-size:36px;}
h3{font-size:24px;}
p{margin:0 0 16px;}
button{font-family:var(--font-body);cursor:pointer;}
input,textarea,select{font-family:var(--font-body);}

.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 24px;
}
.section{padding:88px 0;}
.section--tight{padding:64px 0;}
.section--gray{background:var(--light-gray);}
.section--navy{background:var(--navy);color:rgba(255,255,255,0.85);}
.section--navy h2, .section--navy h3{color:var(--white);}
.section-head{max-width:720px;margin:0 auto 56px;text-align:center;}
.eyebrow{
  display:inline-block;
  color:var(--orange);
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:12px;
}
.section-subtitle{color:var(--text-muted);font-size:17px;}
.section--navy .section-subtitle{color:rgba(255,255,255,0.7);}

/* ==========================================================================
   3. BUTTONS
   ========================================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:15px;
  border:2px solid transparent;
  transition:all .25s ease;
  white-space:nowrap;
}
.btn-primary{background:var(--orange);color:var(--white);}
.btn-primary:hover{background:var(--orange-dark);transform:translateY(-2px);}
.btn-secondary{background:transparent;border-color:rgba(255,255,255,0.4);color:var(--white);}
.btn-secondary:hover{border-color:var(--white);background:rgba(255,255,255,0.08);}
.btn-outline-navy{background:transparent;border-color:var(--navy);color:var(--navy);}
.btn-outline-navy:hover{background:var(--navy);color:var(--white);}
.btn-block{width:100%;justify-content:center;}
.btn-sm{padding:10px 20px;font-size:14px;}

/* ==========================================================================
   4. HEADER / NAVIGATION
   ========================================================================== */
.site-header{
  position:sticky;top:0;z-index:999;
  background:var(--white);
  border-bottom:1px solid var(--border-gray);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 24px;max-width:var(--max-width);margin:0 auto;
}
.site-branding{display:flex;align-items:center;gap:10px;}
.site-branding img{
    height:50px;
    width:auto;
}
.site-title{font-family:var(--font-heading);font-weight:700;font-size:22px;color:var(--navy);}
.main-nav > ul{
    display:flex;
    align-items:center;
    gap:32px;
}
/* Dropdown Menu */
.main-nav .menu-item-has-children{
    position:relative;
}

.main-nav .sub-menu{
    position:absolute;
    top:100%;
    left:0;

    min-width:220px;
    padding:12px 0;
    margin-top:10px;

    background:#fff;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);

    list-style:none;

    display:block;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);

    transition:all .25s ease;
    z-index:999;
}

.main-nav .menu-item-has-children:hover > .sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.main-nav .sub-menu li{
    display:block;
}

.main-nav .sub-menu a{
    display:block;
    padding:10px 20px;
    color:var(--navy);
    white-space:nowrap;
}

.main-nav .sub-menu a:hover{
    background:#f5f7fb;
    color:var(--orange);
}
.main-nav .menu-item-has-children > a::after{
    content:"▼";
    font-size:10px;
    margin-left:6px;
}
.main-nav a{font-weight:600;color:var(--navy);font-size:15px;}
.main-nav a:hover{color:var(--orange);}
.header-cta{display:flex;align-items:center;gap:16px;}
.nav-toggle{
  display:none;background:none;border:none;flex-direction:column;gap:5px;padding:6px;
}
.nav-toggle span{width:26px;height:2px;background:var(--navy);border-radius:2px;}

/* ==========================================================================
   5. HERO
   ========================================================================== */
.hero{
  position:relative;
  background:linear-gradient(135deg, var(--dark-navy) 0%, var(--navy) 55%, #123262 100%);
  color:var(--white);
  padding:120px 0 100px;
  overflow:hidden;
}
.hero::before{
  content:"";position:absolute;inset:0;opacity:.12;
  background-image:radial-gradient(circle at 1px 1px, rgba(255,255,255,.6) 1.4px, transparent 0);
  background-size:26px 26px;
}
.hero-content{position:relative;z-index:2;max-width:760px;}
.hero h1{color:var(--white);font-size:52px;}
.hero p.lead{font-size:19px;color:rgba(255,255,255,.78);max-width:620px;}
.hero-ctas{display:flex;gap:16px;margin-top:36px;flex-wrap:wrap;}
.hero--page{padding:90px 0 70px;text-align:center;}
.hero--page .hero-content{max-width:760px;margin:0 auto;}
.detail-hero{
    position:relative;
    overflow:hidden;

    min-height:600px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.detail-hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.detail-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;

    opacity:.25;
}

.detail-hero .container{
    position:relative;
    z-index:2;
}
.detail-hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        135deg,
        rgba(11,31,58,.95),
        rgba(11,31,58,.90)
    );

    z-index:1;
}

/* ==========================================================================
   6. CARDS (generic + nav cards + value cards)
   ========================================================================== */
.grid{display:grid;gap:28px;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}

.what-we-offer{
    padding-top:60px;
}

.section-head{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
}

.eyebrow{
    color:#ff6b00;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.section-head h2{
    font-size:clamp(32px, 5vw, 56px);
    line-height:1.1;
}

@media (max-width:768px){

    .section-head h2{
        font-size:32px;
        line-height:1.2;
    }

    .section-subtitle{
        font-size:16px;
        line-height:1.7;
    }

}
.section-subtitle{
    font-size:20px;
    color:#667085;
    line-height:1.7;
    max-width:850px;
    margin:0 auto;
}
.card{
  background:var(--white);
  border:1px solid var(--border-gray);
  border-radius:var(--radius-lg);
  padding:36px;
  box-shadow:var(--shadow-card);
  transition:transform .25s ease, box-shadow .25s ease;
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-soft);}

.nav-card{
    position:relative;
    overflow:hidden;
    border-radius:var(--radius-lg);
    padding:48px;
    min-height:320px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    transition:all .3s ease;
}

.nav-card:hover{
    transform:translateY(-6px);
}

.nav-card.is-products{
    background:url('/wp-content/uploads/products-bg.webp') center center;
    background-size:cover;
    color:#fff;
}

.nav-card.is-services{
    background:url('/wp-content/uploads/services-bg.webp') center center;
    background-size:cover;
    color:#fff;
}

.nav-card-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,.20) 0%,
        rgba(0,0,0,.45) 45%,
        rgba(0,0,0,.75) 100%
    );
}

.nav-card:hover .nav-card-overlay{
    background:rgba(8,22,43,.60);
}

.nav-card h3,
.nav-card p,
.nav-card a{
    position:relative;
    z-index:2;
}

.nav-card h3{
    color:#fff;
    font-size:36px;
    margin-bottom:12px;
}

.nav-card p{
    color:rgba(255,255,255,.85);
    margin-bottom:24px;
    max-width:420px;
}

.nav-card .btn{
    align-self:flex-start;
}

.icon-circle{
  width:56px;height:56px;border-radius:50%;
  background:rgba(249,115,22,.12);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:20px;color:var(--orange);font-size:24px;
}
.value-card{text-align:center;}
.value-card .icon-circle{margin:0 auto 20px;}

/* ==========================================================================
   7. ABOUT / WHY / MAP / PARTNERS / CTA
   ========================================================================== */
.about-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:56px;align-items:center;}
.about-grid p{
    text-align:justify;
    line-height:1.8;
}

.about-list{margin-top:24px;}
.about-list li{
    display:flex;
    align-items:flex-start;
    gap:16px;
}
.about-list li strong{
    width:90px;
    flex-shrink:0;
}
.about-list li::before{content:"\2713";color:var(--orange);font-weight:700;}
.about-media{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-soft);}

.map-wrap{position:relative;max-width:980px;margin:0 auto;}
.map-svg{width:100%;height:auto;}
.map-svg path{fill:rgba(255,255,255,0.07);stroke:rgba(255,255,255,0.15);}
.map-marker-dot{fill:var(--orange);}
.map-marker-pulse{fill:var(--orange);opacity:.35;}
.map-legend{display:flex;flex-wrap:wrap;gap:14px;justify-content:center;margin-top:32px;}
.map-legend span{
  display:inline-flex;align-items:center;gap:8px;font-size:14px;color:rgba(255,255,255,.8);
  background:rgba(255,255,255,.06);padding:8px 16px;border-radius:999px;
}
.map-legend span::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--orange);}
.world-map-container{
    margin-top:60px;
    text-align:center;
}

.world-map-svg{
    width:100%;
    max-width:1200px;
    height:auto;
    display:block;
    margin:0 auto;
}
.partner-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
    margin-top:48px;
}

.partner-item{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:16px;
    padding:32px;

    display:flex;
    align-items:center;
    justify-content:center;

    min-height:140px;

    transition:.3s ease;
}

.partner-item:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.partner-item img{
    max-width:180px;
    max-height:80px;
    width:auto;
    height:auto;
    object-fit:contain;
}
@media (max-width:768px){

    .partner-grid{
        grid-template-columns:repeat(2,1fr);
        gap:16px;
    }

    .partner-item{
        min-height:100px;
        padding:20px;
    }

    .partner-item img{
        max-width:120px;
        max-height:50px;
    }

}

.cta-banner{
    background:linear-gradient(135deg,#08162B,#0B1F3A);
    border-radius:24px;
    padding:72px 48px;
    text-align:center;
    color:#fff;
}
.cta-eyebrow{
    color:#F97316;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    font-weight:700;
    margin-bottom:16px;
}
.cta-banner h2{
    color:#fff;
    max-width:700px;
    margin:0 auto 20px;
}
.cta-desc{
    max-width:650px;
    margin:0 auto 32px;
    color:rgba(255,255,255,.75);
    font-size:18px;
    line-height:1.8;
} 

/* ==========================================================================
   8. PRODUCT / SERVICE DETAIL TEMPLATES
   ========================================================================== */
.detail-hero{
    position:relative;
    overflow:hidden;
    padding:120px 0;
    color:#fff;
}

.detail-hero-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.detail-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;

    opacity:.75;
}

.detail-hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:rgba(11,31,58,.15);
    z-index:1;
}

.detail-hero .container{
    text-align: center;
    position:relative;
    z-index:2;
}
.single-service .breadcrumb{
    text-align:center;
    margin-bottom:24px;
}

.single-service .lead{
    max-width:700px;
    margin:0 auto 32px;
}

.single-service .hero-ctas{
    display:flex;
    justify-content:center;
}

.single-service .detail-hero h1{
    text-align:center;
    margin-bottom:20px;
}
.breadcrumb{font-size:13px;color:rgba(255,255,255,.6);margin-bottom:20px;}
.breadcrumb a{color:rgba(255,255,255,.8);}
.detail-hero h1{font-size:42px;color:var(--white);}
.detail-hero-media{border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-soft);}
.detail-hero-media img{aspect-ratio:4/3;object-fit:cover;width:100%;}

.feature-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;}
.feature-item{
  display:flex;gap:16px;padding:24px;background:var(--light-gray);
  border-radius:var(--radius-md);border:1px solid var(--border-gray);
}
.feature-item .icon-circle{flex-shrink:0;margin:0;width:44px;height:44px;font-size:18px;}
.feature-item h4{margin:0 0 6px;font-size:17px;color:var(--navy);}
.feature-item p{margin:0;color:var(--text-muted);font-size:14.5px;}

.logo-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;align-items:center;}
.logo-grid .logo-box{
  background:var(--white);border:1px solid var(--border-gray);border-radius:var(--radius-md);
  padding:20px;display:flex;align-items:center;justify-content:center;height:90px;
}
.logo-grid img{max-height:42px;width:auto;}

.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.gallery-grid img{border-radius:var(--radius-md);aspect-ratio:4/3;object-fit:cover;width:100%;}

/* ==========================================================================
   9. SERVICES LISTING
   ========================================================================== */
.service-card{display:flex;flex-direction:column;height:100%;}
.service-card .icon-circle{margin-bottom:18px;}
.service-card h3{font-size:20px;}
.service-card p{color:var(--text-muted);flex-grow:1;}
.service-card .btn{margin-top:12px;align-self:flex-start;}

/* ==========================================================================
   10. ABOUT PAGE
   ========================================================================== */
.mv-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(400px,520px));
    justify-content:center;
    gap:40px;
}
.mv-card-large{
    grid-column:1 / -1;

    min-height:280px;
    padding:48px;
}
.mv-card-large .about-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:24px;
}

.mv-card-large .about-list li{
    background:#fff;
    border:1px solid var(--border-gray);
    border-radius:12px;
    padding:16px;
    text-align:center;
    list-style:none;
}

.mv-card{background:var(--light-gray);border-radius:var(--radius-lg);padding:32px;border:1px solid var(--border-gray);}
.mv-card{
    position:relative;
    overflow:hidden;
}

.mv-bg-icon{
    position:absolute;

    right:-20px;
    bottom:-20px;

    width:180px;
    height:180px;

    opacity:.5;

    color:var(--orange);

    pointer-events:none;
}

.mv-bg-icon svg{
    width:100%;
    height:100%;
}

.mv-card h3,
.mv-card p,
.mv-card ul{
    position:relative;
    z-index:2;
}
.mv-point{
    margin-top:20px;
}

.mv-point h4{
    color:var(--navy);
    font-size:18px;
    margin-bottom:8px;
}

.mv-point p{
    color:var(--text-muted);
    margin:0;
    line-height:1.7;
}
.mgmt-message{display:grid;grid-template-columns:.8fr 1.2fr;gap:48px;align-items:center;}
.mgmt-message blockquote{
  font-family:var(--font-heading);font-size:20px;color:var(--navy);font-style:italic;
  border-left:4px solid var(--orange);padding-left:24px;margin:0;
}
.mgmt-photo{border-radius:var(--radius-lg);overflow:hidden;}

/* ==========================================================================
   11. CONTACT PAGE
   ========================================================================== */
.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:56px;align-items:flex-start;}
.office-info-list{margin-top:24px;}
.office-info-list li{display:flex;gap:14px;margin-bottom:20px;align-items:flex-start;}
.office-info-list .icon-circle{margin:0;width:42px;height:42px;font-size:16px;flex-shrink:0;}
.office-info-list strong{display:block;color:var(--navy);}
.map-embed{border-radius:var(--radius-lg);overflow:hidden;margin-top:28px;border:1px solid var(--border-gray);}
.map-embed iframe{width:100%;height:260px;border:0;display:block;}

.contact-form{background:var(--white);border:1px solid var(--border-gray);border-radius:var(--radius-lg);padding:40px;box-shadow:var(--shadow-card);}
.form-row{margin-bottom:20px;}
.form-row label{display:block;font-weight:600;color:var(--navy);margin-bottom:8px;font-size:14px;}
.form-row input,.form-row textarea{
  width:100%;padding:13px 16px;border:1px solid var(--border-gray);border-radius:var(--radius-sm);
  font-size:15px;background:var(--light-gray);transition:border-color .2s;
}
.form-row input:focus,.form-row textarea:focus{outline:none;border-color:var(--orange);background:var(--white);}
.form-row-2col{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.form-success{background:#ECFDF5;border:1px solid #6EE7B7;color:#065F46;padding:16px 20px;border-radius:var(--radius-sm);margin-bottom:20px;}
.form-error{background:#FEF2F2;border:1px solid #FCA5A5;color:#991B1B;padding:16px 20px;border-radius:var(--radius-sm);margin-bottom:20px;}

/* ==========================================================================
   11. Careers PAGE
   ========================================================================== */
.career-opportunities{
    position:relative;
    overflow:hidden;
    padding:100px 0;
    background:#fff;
}

.career-opportunities .container{
    position:relative;
    z-index:2;
}

.career-opportunities .eyebrow{
    text-align:center;
    margin-bottom:50px;
}

.career-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:60px;
}

.career-column{
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(4px);
    padding:40px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.1);
}

.career-column h2{
    color:var(--navy);
    margin-bottom:30px;
    font-size:32px;
}

.career-position{
    padding:20px 0;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.career-position:last-child{
    border-bottom:none;
}

.career-position h3{
    color:var(--orange);
    font-size:24px;
    margin-bottom:8px;
}

.salary{
    color:var(--navy);
    font-weight:600;
    margin:0;
}


@media (max-width:991px){
    .career-grid{
        grid-template-columns:1fr;
    }
}
.page-template-template-careers .detail-hero{
    min-height:500px;
    display:flex;
    align-items:center;
}

.page-template-template-careers .detail-hero .container{
    text-align:center;
    max-width:900px;
}

.page-template-template-careers .detail-hero .lead{
    max-width:700px;
    margin:20px auto 0;
}
/* ==========================================================================
   12. FOOTER
   ========================================================================== */
.site-footer{background:var(--dark-navy);color:rgba(255,255,255,.65);padding:72px 0 28px;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:40px;}
.footer-col h4{color:var(--white);font-size:16px;margin-bottom:18px;}
.footer-col ul li{margin-bottom:10px;}
.footer-col a:hover{color:var(--orange);}
.footer-brand p{color:rgba(255,255,255,.55);font-size:14.5px;max-width:280px;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);margin-top:48px;padding-top:24px;
  display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;font-size:13.5px;
}
.social-links{display:flex;gap:12px;}
.social-links a{
  width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.08);
  display:flex;align-items:center;justify-content:center;
}
.social-links a:hover{background:var(--orange);}

/* ==========================================================================
   13. MISC / UTILITIES
   ========================================================================== */
.text-center{text-align:center;}
.mt-0{margin-top:0;}
.no-results{padding:80px 0;text-align:center;}
.skip-link{position:absolute;left:-9999px;}
.skip-link:focus{left:8px;top:8px;background:var(--orange);color:var(--white);padding:8px 14px;border-radius:6px;z-index:9999;}

/* ==========================================================================
   14. RESPONSIVE
   ========================================================================== */
@media (max-width:991px){
  h1{font-size:38px;}
  .hero h1{font-size:38px;}
  h2{font-size:30px;}
  .grid-3,.grid-4{grid-template-columns:repeat(2,1fr);}
  .about-grid,.mgmt-message,.detail-hero .container,.contact-grid{grid-template-columns:1fr;}
  .feature-grid{grid-template-columns:1fr;}
  .logo-grid{grid-template-columns:repeat(3,1fr);}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .mv-grid{grid-template-columns:1fr;}
}
@media (max-width:768px){
  .main-nav{
    position:fixed;top:73px;left:0;right:0;bottom:0;background:var(--white);
    transform:translateX(100%);transition:transform .3s ease;overflow-y:auto;
    padding:24px;z-index:998;
  }
  .main-nav.is-open{transform:translateX(0);}
  .main-nav ul{flex-direction:column;align-items:flex-start;gap:0;}
  .main-nav ul li{width:100%;border-bottom:1px solid var(--border-gray);}
  .main-nav ul li a{display:block;padding:16px 4px;}
  .nav-toggle{display:flex;}
  .header-cta .btn{display:none;}
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr;}
  .hero{padding:80px 0 60px;text-align:center;}
  .hero-content{margin:0 auto;}
  .hero-ctas{justify-content:center;}
  .cta-banner{padding:40px 24px;}
  .section{padding:64px 0;}
  .logo-grid{grid-template-columns:repeat(2,1fr);}
  .gallery-grid{grid-template-columns:1fr 1fr;}
  .form-row-2col{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column;text-align:center;}
  .footer-brand .custom-logo{
    max-height:60px;
    width:auto;
    }

    .footer-brand img{
        max-height:60px;
        width:auto;
    }
    .footer-logo{
        max-height:60px;
        width:auto;
    }
}
