/* =========================
   BUTTONS
========================= */

.btn{
    display:inline-block;
    padding:14px 22px;
    border-radius:14px;
    font-weight:800;
    letter-spacing:.3px;
    transition:.35s ease;
    cursor:pointer;
 }
 
 .btn.primary{
    background:linear-gradient(135deg,var(--gold),var(--gold-light));
    color:#000;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
 }
 
 .btn.primary:hover{
    transform:translateY(-3px);
    box-shadow:0 22px 45px rgba(0,0,0,.25);
 }
 
 .btn.outline {
  border: 2px solid rgba(11, 29, 58, 0.14);
  color: var(--navy);
  background: #fff;
}

.btn.outline:hover {
  background: #f8fafc;
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
 
 /* =========================
    HERO
 ========================= */
 
 .hero{
    background:linear-gradient(180deg,var(--navy),var(--navy-dark));
    color:white;
    padding:110px 0 80px;
 }
 
 .hero-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:40px;
    align-items:center;
 }
 
 .hero h1{
    font-size:52px;
    line-height:1.1;
    margin-bottom:16px;
 }
 
 .hero p{
    color:#dbeafe;
    margin-bottom:16px;
    font-size:18px;
 }
 
 .kicker{
    color:var(--gold);
    letter-spacing:.18em;
    text-transform:uppercase;
    font-weight:800;
    font-size:12px;
 }
 
 .cta-row{
    display:flex;
    gap:12px;
    margin-top:10px;
    flex-wrap:wrap;
 }
 
 .trust-row{
    margin-top:14px;
    color:#dbeafe;
    font-size:14px;
 }
 
 .hero-image img{
    border-radius:16px;
    box-shadow:var(--shadow-hover);
 }
 
 /* =========================
    SECTIONS
 ========================= */
 
 .section{
    padding:80px 0;
    background:linear-gradient(to bottom,#ffffff,#f9fafb);
 }
 
 .section h2{
    font-size:36px;
    margin-bottom:12px;
 }
 
 .lead{
    color:var(--muted);
    margin-bottom:30px;
 }
 
 /* =========================
    CARDS / FEATURES
 ========================= */
 
 .card,
 .feature,
 .review{
    background:white;
    padding:20px;
    border-radius:16px;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    transition:.3s;
 }
 
 .card:hover,
 .feature:hover,
 .review:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-hover);
 }
 
 .card p{
    color:var(--muted);
 }
 
 /* =========================
    GRIDS
 ========================= */
 
 .features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
 }
 
 .cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
 }
 
 .reviews{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
 }
 
 /* =========================
    FORM
 ========================= */
 
 .form{
    display:grid;
    gap:12px;
 }
 
 .row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
 }
 
 input,textarea,select{
    width:100%;
    padding:12px 14px;
    border-radius:12px;
    border:1px solid var(--border);
    font-size:16px;
 }
 
 textarea{
    min-height:140px;
 }
 
 /* =========================
    GALLERY
 ========================= */
 
 .gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:24px;
    margin-top:20px;
 }
 
 .gallery-grid figure{
    background:white;
    border-radius:14px;
    overflow:hidden;
    border:1px solid var(--border);
    box-shadow:var(--shadow);
    transition:.3s;
 }
 
 .gallery-grid figure:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow-hover);
 }
 
 .gallery-grid img{
    width:100%;
    height:240px;
    object-fit:cover;
 }
 
 .gallery-grid figcaption{
    padding:12px 14px;
    font-size:14px;
    color:var(--muted);
 }
 
 /* =========================
    PROJECTS
 ========================= */
 
 #projects{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:28px;
    margin-top:40px;
 }
 
 .project-card{
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(10px);
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,0.05);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:all 0.35s ease;
    position:relative;
 }
 
 .project-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,var(--gold),var(--gold-light));
 }
 
 .project-card:hover{
    transform:translateY(-10px) scale(1.01);
    box-shadow:0 30px 70px rgba(0,0,0,0.18);
 }
 
 .project-info{
    padding:18px 20px;
    border-bottom:1px solid var(--border);
 }
 
 .project-info h3{
    font-size:20px;
    font-weight:800;
    color:var(--navy);
 }
 
 .location{
    font-size:14px;
    color:var(--muted);
    margin-top:4px;
 }
 
 .project-images{
    display:flex;
    gap:12px;
    padding:16px;
 }
 
 .img-box{
    flex:1;
    text-align:center;
 }
 
 .project-images img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    cursor:pointer;
    transition:all 0.4s ease;
 }
 
 .project-images img:hover{
    transform:scale(1.06);
    filter:brightness(1.05);
 }
 
 /* =========================
    LABELS
 ========================= */
 
 .label{
    display:block;
    margin-top:6px;
    font-size:13px;
    font-weight:600;
 }
 
 .label.before{
    color:#6b7280;
 }
 
 .label.after{
    color:var(--gold);
    font-weight:700;
 }
 
 /* =========================
    IMAGE OVERLAY
 ========================= */
 
 .image-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
 }
 
 .overlay-img{
    max-width:90%;
    max-height:90%;
    border-radius:14px;
    box-shadow:0 20px 60px rgba(0,0,0,0.5);
 }
 
 /* =========================
    STARS
 ========================= */
 
 .stars{
    color:#f59e0b;
    font-size:18px;
 }


 /* =========================
   CONTACT MAP
========================= */

.contact-map {
   width: 100%;
   min-height: 380px;
   margin-top: 28px;
   border-radius: 22px;
   overflow: hidden;
   box-shadow: 0 18px 45px rgba(0,0,0,0.10);
   border: 1px solid rgba(212,175,55,0.16);
   background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,244,232,0.96));
 }
 
 .contact-map iframe {
   display: block;
   width: 100%;
   height: 380px;
   border: 0;
 }
 
 @media (max-width: 768px) {
   .contact-map {
     min-height: 280px;
     border-radius: 18px;
   }
 
   .contact-map iframe {
     height: 280px;
   }
 }

 .home-reviews-section {
   padding-top: 28px !important;
 }
 
 .home-services-section {
   padding-bottom: 28px !important;
 }

 .about-top-section {
   padding-top: 36px !important;
   padding-bottom: 32px !important;
}
 
 .about-why-section {
   padding-top: 32px !important;
 }


 .services-top-section {
   padding-top: 48px !important;
   padding-bottom: 16px !important;
 }
 
 .services-areas-section {
   padding-top: 16px !important;
 }

 .services-top-section .card[style*="margin-top:20px"] {
   border-top: 3px solid var(--gold);
   background: linear-gradient(180deg, #ffffff, #fcfcfd);
 }

 .contact-form-card {
   background: linear-gradient(180deg, #0b1d3a, #07152b);
   border: 1px solid rgba(212,175,55,0.22);
   border-radius: 28px;
   padding: 38px;
   box-shadow:
     0 20px 55px rgba(0,0,0,0.22),
     inset 0 1px 0 rgba(255,255,255,0.05);
   position: relative;
   overflow: hidden;
 }
 
 .contact-form-card::before {
   content: "";
   position: absolute;
   inset: 0;
   background:
     radial-gradient(circle at top right, rgba(212,175,55,0.12), transparent 32%),
     radial-gradient(circle at bottom left, rgba(255,255,255,0.04), transparent 28%);
   pointer-events: none;
 }
 
 .contact-form-card > * {
   position: relative;
   z-index: 1;
 }
 
 .contact-form-card h2 {
   margin-top: 0;
   margin-bottom: 12px;
   color: #ffffff;
 }
 
 .contact-form-card .lead {
   margin-bottom: 28px;
   color: rgba(255,255,255,0.78);
 }
 
 .contact-form-card .form {
   display: grid;
   gap: 18px;
 }
 
 .contact-form-card .row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 16px;
 }
 
 .contact-form-card label {
   display: block;
   margin-bottom: 8px;
   font-weight: 700;
   color: #ffffff;
 }
 
 .contact-form-card input,
 .contact-form-card select,
 .contact-form-card textarea {
   width: 100%;
   padding: 15px 16px;
   border-radius: 16px;
   border: 1px solid rgba(212,175,55,0.18);
   background: rgba(255,255,255,0.96);
   font-size: 16px;
   color: var(--navy);
   transition: all 0.25s ease;
 }
 .contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #8b8f97;
}
 
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(212,175,55,0.18);
}
 
.contact-form-card textarea {
   min-height: 170px;
 }
 
 .contact-form-card .btn.primary {
   width: 100%;
   border-radius: 16px;
   padding: 16px 24px;
   font-size: 16px;
   font-weight: 800;
   border: 1px solid rgba(0,0,0,0.18);
   box-shadow: 0 12px 28px rgba(0,0,0,0.20);
 }

 .contact-form-card .btn.primary:hover {
   transform: translateY(-2px);
   box-shadow: 0 16px 34px rgba(0,0,0,0.24);
 }
 
 @media (max-width: 768px) {
   .contact-form-card {
     padding: 24px 18px;
     border-radius: 20px;
   }
 
   .contact-form-card .row {
     grid-template-columns: 1fr;
   }
 }

 .quick-contact-card {
   margin-top: 34px;
   background: #ffffff;
   border: 1px solid rgba(15,23,42,0.06);
   border-radius: 22px;
   padding: 24px 26px;
   box-shadow: 0 12px 30px rgba(0,0,0,0.06);
 }
 
 .quick-contact-card h3 {
   margin-top: 0;
   margin-bottom: 14px;
 }
 
 .quick-contact-card p {
   margin: 0;
   line-height: 1.9;
 }

 .gallery-top-section {
   padding-top: 24px !important;
   padding-bottom: 80px;
 }

 .advice-hero-section {
   padding-top: 32px !important;
   padding-bottom: 20px !important;
 }
 
 .advice-section {
   padding-top: 24px !important;
   padding-bottom: 24px !important;
 }
 
 .advice-section h2 {
   margin-bottom: 10px;
 }
 
 .advice-section .lead {
   margin-bottom: 20px;
 }