*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#111;
    color:#fff;
    line-height:1.6;
}

header{
    background:#000;
    padding:20px;
    position:sticky;
    top:0;
}

.container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

nav a{
    color:#d4af37;
    text-decoration:none;
    margin-left:20px;
    font-weight:bold;
}

.hero{
    text-align:center;
    padding:100px 20px;
    background:linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7));
}

.hero h2{
    font-size:48px;
    color:#d4af37;
}

.hero p{
    margin:20px 0;
    font-size:20px;
}

.hero a{
    display:inline-block;
    background:#d4af37;
    color:#000;
    padding:12px 24px;
    margin:10px;
    border-radius:6px;
    text-decoration:none;
    font-weight:bold;
}

section{
    padding:60px 20px;
    max-width:1200px;
    margin:auto;
}

section h2{
    color:#d4af37;
    margin-bottom:20px;
}

footer{
    background:#000;
    color:#aaa;
    text-align:center;
    padding:20px;
}
.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:20px;
}

.gallery img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 4px 10px rgba(0,0,0,.2);
    transition:0.3s;
}

.gallery img:hover{
    transform:scale(1.05);
}

.gallery img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:12px;
}
.card{
    background:#222;
    color:#fff;
    padding:20px;
    margin:10px 0;
    border-left:4px solid gold;
    border-radius:8px;
}
.hero-banner{
    width:100%;
    max-height:500px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:30px;
    box-shadow:0 8px 25px rgba(0,0,0,0.4);
}
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:20px;
}

.card{
    background:#222;
    color:#fff;
    padding:25px;
    border-radius:10px;
    border-left:5px solid #d4af37;
    text-align:center;
    font-size:18px;
    font-weight:bold;
    transition:0.3s;
}

.card:hover{
    background:#d4af37;
    color:#000;
    transform:translateY(-5px);
}
#why-us,
#reviews{
    margin-top:60px;
}

#reviews .card{
    margin-bottom:20px;
    line-height:1.8;
    }
.btn{
    display:inline-block;
    background:#d4af37;
    color:#000;
    padding:12px 24px;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
    margin-top:10px;
}

.btn:hover{
    background:#f1c75b;
    }
.project-card{
    background:#222;
    border-radius:12px;
    overflow:hidden;
    text-align:center;
    padding:15px;
    color:#fff;
    transition:0.3s;
}

.project-card:hover{
    transform:translateY(-5px);
}

.project-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
}

.project-card h3{
    color:#d4af37;
    margin:15px 0 8px;
}

.project-card p{
    color:#ccc;
    font-size:15px;
    }
.menu-toggle{
    display:none;
    font-size:30px;
    color:#d4af37;
    cursor:pointer;
}

.navbar{
    display:flex;
    gap:20px;
}

@media (max-width:768px){

    .menu-toggle{
        display:block;
    }

    .navbar{
        display:none;
        flex-direction:column;
        position:absolute;
        top:80px;
        right:20px;
        background:#111;
        padding:15px;
        border-radius:10px;
        width:200px;
    }

    .navbar.active{
        display:flex;
    }

    .navbar a{
        margin:10px 0;
    }
    }
.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 4px 12px rgba(0,0,0,.4);
    z-index:9999;
    transition:.3s;
}

.whatsapp-float img{
    width:30px;
    height:30px;
    display:block;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    }
.contact-form{
    max-width:600px;
    margin:30px auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:15px;
    margin-bottom:15px;
    border:none;
    border-radius:8px;
    background:#222;
    color:#fff;
    font-size:16px;
}

.contact-form input:focus,
.contact-form textarea:focus{
    outline:2px solid #d4af37;
}

.contact-form button{
    width:100%;
    padding:15px;
    background:#d4af37;
    color:#000;
    border:none;
    border-radius:8px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    margin-top:10px;
}
.hero-slider{
width:100%;
overflow:hidden;
position:relative;
}

.slides{
display:none;
}

.slides img{
width:100%;
height:auto;
display:block;
}

.fade{
animation:fade 1s;
}

@keyframes fade{
from{opacity:.4;}
to{opacity:1;}
    }
.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:20px;
padding:40px 20px;
background:#111;
text-align:center;
}

.stat-box{
background:#1b1b1b;
padding:25px;
border-radius:12px;
box-shadow:0 0 10px rgba(212,175,55,.25);
}

.stat-box h2{
color:#d4af37;
font-size:38px;
margin:0;
}

.stat-box p{
color:#fff;
margin-top:10px;
font-size:16px;
}
/* ===== S4C PREMIUM V2 ===== */

:root{
  --gold:#d4af37;
  --gold2:#f5d76e;
  --dark:#050505;
  --card:#111111;
  --text:#ffffff;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--dark);
  color:var(--text);
  overflow-x:hidden;
}

/* Header */

header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(212,175,55,.25);
}

/* Logo */



.logo:hover{
  transform:scale(1.05);
}

/* Navigation */

.navbar a{
  color:#fff;
  transition:.3s;
}

.navbar a:hover{
  color:var(--gold);
}

/* Sections */

section{
  padding:70px 20px;
}

/* Cards */

.stat-box,
.service-card,
.project-card{
  background:var(--card);
  border:1px solid rgba(212,175,55,.18);
  border-radius:18px;
  transition:.35s;
}

.stat-box:hover,
.service-card:hover,
.project-card:hover{
  transform:translateY(-8px);
  box-shadow:0 0 25px rgba(212,175,55,.35);
}

/* Buttons */

.btn{
  background:linear-gradient(45deg,var(--gold),var(--gold2));
  color:#000;
  border-radius:30px;
  font-weight:bold;
  transition:.3s;
}

.btn:hover{
  transform:scale(1.05);
}
/* WhatsApp Button */
.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 0 20px rgba(0,0,0,.4);
z-index:9999;
transition:.3s;
}

.whatsapp-float:hover{
transform:scale(1.1);
}

/* Scroll Button */
#topBtn{
display:none;
position:fixed;
left:20px;
bottom:20px;
width:50px;
height:50px;
border:none;
border-radius:50%;
background:#d4af37;
color:#000;
font-size:22px;
cursor:pointer;
z-index:9999;
}
/* Loading Screen */
#loader{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:#000;
display:flex;
justify-content:center;
align-items:center;
z-index:99999;
transition:opacity .8s ease;
}

#loader img{
width:220px;
animation:pulse 1.5s infinite;
}

@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.08);}
100%{transform:scale(1);}
}

.loader-hide{
opacity:0;
visibility:hidden;
}
.why-choose{
    background:#0b0b0b;
    padding:70px 20px;
    color:#fff;
    text-align:center;
}

.why-choose h2{
    color:#d4af37;
    font-size:36px;
    margin-bottom:10px;
}

.subtitle{
    color:#ccc;
    margin-bottom:40px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.feature-box{
    background:#161616;
    border:1px solid rgba(212,175,55,.4);
    border-radius:15px;
    padding:30px;
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-8px);
    border-color:#d4af37;
    box-shadow:0 0 20px rgba(212,175,55,.4);
}

.feature-box h3{
    color:#d4af37;
    margin-bottom:15px;
}

.feature-box p{
    color:#ddd;
    line-height:1.7;
}

/* Premium Floating Call Button */
.call-float{
    position:fixed;
    right:20px;
    bottom:95px;
    width:60px;
    height:60px;
    background:linear-gradient(135deg,#d4af37,#f7d774);
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:28px;
    font-weight:bold;
    box-shadow:0 8px 25px rgba(212,175,55,.45);
    z-index:9999;
    animation:callPulse 2s infinite;
    transition:.3s;
}

.call-float:hover{
    transform:scale(1.12);
}

@keyframes callPulse{
    0%{
        box-shadow:0 0 0 0 rgba(212,175,55,.6);
    }
    70%{
        box-shadow:0 0 0 18px rgba(212,175,55,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(212,175,55,0);
    }
}
/* ================================
   MOBILE WEBSITE FIX
================================ */

@media (max-width: 768px) {

  /* General */
  section {
    padding: 45px 15px;
  }

  /* Why Choose */
  .why-choose {
    padding: 50px 15px;
  }

  .why-choose .container {
    display: block !important;
    width: 100%;
  }

  .why-choose h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
  }

  .why-choose .subtitle {
    text-align: center;
    margin-bottom: 30px;
  }

  .features {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  .feature-box {
    width: 100%;
    box-sizing: border-box;
    padding: 22px 18px;
    text-align: center;
  }

  /* Projects */
  .gallery {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .project-card {
    width: 100%;
    box-sizing: border-box;
  }

  .project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
  }

  /* Services */
  .services-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  .card {
    width: 100%;
    box-sizing: border-box;
  }

  /* Reviews */
  #reviews .card {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
  }

  /* Contact */
  #contact {
    text-align: center;
  }

  /* Quote form */
  .contact-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .contact-form .btn {
    width: 100%;
  }
}
/* Mobile Fix - Why Choose Section */
@media (max-width: 768px){

    .why-choose{
        padding:50px 15px;
    }

    .why-choose .container{
        width:100%;
    }

    .why-choose h2{
        text-align:center;
        font-size:28px;
        margin-bottom:10px;
    }

    .why-choose .subtitle{
        text-align:center;
        margin-bottom:30px;
    }

    .features{
        display:grid;
        grid-template-columns:1fr;
        gap:18px;
    }

    .feature-box{
        width:100%;
        box-sizing:border-box;
        padding:25px 18px;
        text-align:center;
    }
}
/* Desktop - Why Choose Section Fix */
@media (min-width: 769px){

    .why-choose .container{
        max-width:1200px;
        margin:auto;
    }

    .features{
        display:grid;
        grid-template-columns:repeat(3, 1fr);
        gap:25px;
    }

    .why-choose h2{
        text-align:center;
    }

    .why-choose .subtitle{
        text-align:center;
        margin-bottom:40px;
    }

    .feature-box{
        width:auto;
        text-align:center;
    }
}
/* ===== WHY CHOOSE DESKTOP ALIGNMENT ===== */

@media (min-width: 769px) {

  .why-choose .container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
  }

  .why-choose h2 {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 10px !important;
  }

  .why-choose .subtitle {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 35px !important;
  }

  .why-choose .features {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    width: 100% !important;
  }

  .why-choose .feature-box {
    width: auto !important;
    margin: 0 !important;
  }

}
.google-location-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 22px;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: 0.3s;
}

.google-location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(212,175,55,0.5);
}
/* ===== S4C ORIGINAL HORIZONTAL LOGO ===== */

header .container{
    min-height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

header .logo{
    width:260px;
    height:auto;
    max-height:75px;
    object-fit:contain;
    object-position:left center;
    padding:0;
    margin:0;
    border-radius:0;
    background:transparent;
    filter:drop-shadow(0 0 8px rgba(212,175,55,.55));
}

/* Mobile */
@media (max-width:768px){

    header{
        padding:10px 15px;
    }

    header .container{
        min-height:70px;
    }

    header .logo{
        width:210px;
        height:auto;
        max-height:60px;
        object-fit:contain;
    }

}
