/* PREMIUM HERO DESIGN */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  /* PRIMARY RED BRAND SYSTEM */
  --primary-color: #FE0700;
  --primary-light-color: #FF4D4D;
  --primary-soft-color: #FFE5E5;
  --primary-soft-color: #FFF1E6;

  /* ACCENT (optional warm support tone) */
  --accent-color: #FF5252;
  --accent-light: #FFB3B3;

  /* TEXT COLORS (NO GREEN OR BROWN TONES) */
  --text-dark: #1E293B;
  --text-darker: #111827;
  --text-muted: #6B7280;
  --text-light: #CBD5E1;
  --white: #ffffff;

  /* BACKGROUNDS */
  --bg-light: #F8FAFC;
  --bg-dark: #000000;
  --bg-card: #ffffff;

  /* SHADOWS (RED TINTED DEPTH) */
  --shadow-sm: 0 10px 30px rgba(254, 7, 0, 0.08);
  --shadow-md: 0 15px 50px rgba(254, 7, 0, 0.12);
  --shadow-heavy: 0 20px 60px rgba(254, 7, 0, 0.25);
}

h1, h2, h3 {
  line-height: 1.5;
  /* font-family: 'Montserrat', sans-serif !important; */
  font-family: 'Poppins', sans-serif !important;
} 

body, p, a, span {
  /* font-family: 'Inter', sans-serif; */
  font-family: 'Poppins', sans-serif;
}

.hero-premium {
  position: relative;
  min-height: 100vh;
  padding: 0 7%;
  background:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.45)
    ),
    url('../img/hero.jpg') center/cover;
  overflow: hidden;
  z-index: 999;
}

.navbar {
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  position: relative;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.logo i {
  font-size: 28px;
  color: var(--primary-light-color);
}

.logo h2 {
  font-family: 'Inter', Sans-Serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

.nav {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px; 
  transition: 0.3s;
  display: block;
  padding-bottom: 12px;
}

.nav a:hover {
  color: #FF5252;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  min-height: 100vh;
  gap: 60px;
}

.hero-text {
  color: #fff;
}

.mini-text {
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-size: 13px;
  color: #E2E8F0;
}

.hero-text h1 {
  font-size: 72px;
  margin-bottom: 25px;
  font-family: 'Lora', serif;
  font-weight: 700;
}

.hero-text p {
  max-width: 600px;
  line-height: 1.9;
  font-size: 17px;
  color: #f1f1f1;
  margin-bottom: 35px;
}

.hero-btns{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover{
  transform:translateY(-3px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.glass-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 25px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(198, 40, 40, 0.25);
}
}

.glass-card h3 {
  margin-bottom: 30px;
  font-size: 28px;
  font-family: 'Lora', serif;
  line-height: 1.5;
}

.card-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
} 

.card-item span:nth-child(2) {
  line-height: 1.5;
}

.card-item i {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 768px){
  
  .hero-content {
    margin-top: -350px;
  }
  
  .hero-text {
    margin-top: 20px;
  }
  
  .hero-text h1 {
    font-size: 28px;
    line-height: 1.3;
  }
    
  .hero-content {
    grid-template-columns: 1fr;
  }
  
  .hero-card {
    margin-bottom: 40px;
  }

}

/* PREMIUM ABOUT SECTION */

.about-premium{
  padding: 120px 7%;
  background: #F8FAFC;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images{
  position:relative;
}

.main-img img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.small-img {
  position :absolute;
  bottom: -40px;
  right: -20px;
}

.small-img img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 25px;
  border: 8px solid #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.floating-card {
  position: absolute;
  top: 40px;
  left: -30px;
  background: var(--primary-color);
  color: #fff;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(46,125,50,0.3);
  width: fit-conten;
}

.floating-card h2 {
  font-size: 52px;
  margin-bottom: 5px;
  font-family: 'Lora', serif;
}

.floating-card p {
  font-size: 15px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: #C62828;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight:600;
}

.about-content h1 {
  font-size: 56px;
  /* line-height: 1.2; */
  margin-bottom: 28px;
  color: #1E293B;
  font-family: 'Lora', serif;
  line-height: 1.5;
}

.about-intro {
  font-size: 18px;
  line-height: 1.9;
  color: #425248;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  line-height: 1.9;
  color: #5F6F63;
  margin-bottom: 40px;
}

.about-features{
  display:flex;
  flex-direction:column;
  gap:22px;
  margin-bottom:40px;
}

.feature-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

.feature-box i{
  width:60px;
  height:60px;
  border-radius:18px;
  background:#FFF1E6;
  color: #C62828;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.feature-box h3{
  margin-bottom:6px;
  color:#1F3A24;
}

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

.about-btn {
  display:inline-block;
  background: var(--primary-color);
  color:#fff;
  padding:18px 34px;
  border-radius:50px;
  text-decoration:none;
  transition:0.3s;
}

.about-btn:hover{
  transform:translateY(-4px);
}
 
 @media (max-width: 768px){
  .about-content {
    margin-top: 100px;
  }
  .about-content h1 {
    font-size: 24px;
  }
   
  .about-container {
    grid-template-columns: 1fr;
  }
    
  .main-img img {
    height: 350px;
  }
  
  .small-img {
    position :absolute;
    bottom: -20px;
    right: -20px;
  }
  
  .small-img img {
    width: 150px;
    height: 150px;
  }
    
    
  .floating-card {
    position: absolute;
    top: 40px;
    left: -30px;
    width: 250px;
   }
  
  .floating-card p {
    font-size: 15px;
  }  
  
  .small-img {
    bottom: -50px;
  }
  
 }
 
 /* PREMIUM SERVICES SECTION */

.services-premium {
  padding: 120px 7%;
  background: #ffffff;
}

.services-header {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--primary-color);
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
}

.services-header h1 {
  font-size: 58px;
  color: #1E293B;
  margin-bottom: 24px;
  font-family: 'Lora', serif;
}

.services-header p{
  font-size:17px;
  line-height:1.9;
  color:#5F6F63;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.service-card {
  background: #fff;
  padding: 45px 35px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow:0 10px 40px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.1);
}

.service-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background: var(--primary-color);
  transform:scaleX(0);
  transition:0.4s;
}

.service-card:hover::before{
  transform:scaleX(1);
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.service-icon {
  width:78px;
  height:78px;
  border-radius:24px;
  background:#FFF1E6;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:30px;
}

.service-icon i{
  font-size:30px;
  color: var(--primary-color);
}

.service-card h2 {
  font-size: 28px;
  margin-bottom: 18px;
  color: #1E293B;
  font-family: 'Lora', serif;
}

.service-card p{
  line-height:1.9;
  color:#66756B;
  margin-bottom:30px;
  font-size:15px;
}

.service-card a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: var(--primary-color);
  font-weight:600;
  transition:0.3s;
}

.service-card a:hover{
  gap:16px;
}

@media (max-width: 768px){
  .services-header h1 {
    font-size: 28px;
  }
}

/* PREMIUM PORTFOLIO SECTION */

.portfolio-premium {
  padding: 120px 7%;
  background: #F8FAFC;
}

.portfolio-header {
  max-width: 850px;
  margin: auto;
  text-align: center;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--primary-color);
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
}

.portfolio-header h1 {
  font-size: 58px;
  color: #1F3A24;
  margin-bottom: 24px;
  font-family: 'Lora', serif;
}

.portfolio-header p {
  font-size: 17px;
  line-height: 1.9;
  color: #5F6F63;
}

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

.portfolio-card {
  position: relative;
  overflow: hidden;
  /* border-radius: 28px; */
  border-radius: 8px;
  min-height: 300px;
  cursor: pointer;
}

.portfolio-card.large {
  grid-column: span 2;
  /* min-height: 350px; */
}

/* .portfolio-card.wide {
  grid-column: span 2;
} */

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.portfolio-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.15)
    );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  color: #fff;
}

.portfolio-overlay span {
  display: inline-block; 
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 2px;
  color: #FFD6B8;
}

.portfolio-overlay h2 {
  font-size: 34px;
  /* line-height: 1.3; */
  line-height: 1.5;
  font-family: 'Lora', serif;
}

.portfolio-card:hover img {
  transform: scale(1.08);
}

.portfolio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 28px;
  pointer-events: none;
}

/* RESPONSIVE */

@media(max-width: 991px){

  .portfolio-grid{
    grid-template-columns: 1fr;
  }

  .portfolio-card.large,
  .portfolio-card.wide{
    grid-column: span 1;
  }

  .portfolio-header h1 {
    font-size: 28px;
  }
    
  .portfolio-overlay h2 {
    font-size: 24px;
  }

}

/* PREMIUM CONTACT SECTION */

.contact-premium {
  padding: 120px 7%;
  background: #ffffff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--primary-color);
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.contact-info h1 {
  font-size: 58px;
  color: #1E293B;
  margin-bottom: 28px;
  font-family:' Lora', serif;
}

.contact-info p {
  font-size: 17px;
  line-height: 1.9;
  color: #64748B;
  margin-bottom: 45px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #F8FAFC;
  padding: 24px;
  border-radius: 24px;
}

.detail-icon {
  width: 65px;
  height: 65px;
  border-radius: 20px;
  background: #FFF1E6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-icon i {
  color: var(--primary-color);
  font-size: 24px;
}

.detail-box h3 {
  margin-bottom: 6px;
  color: #1F3A24;
}

.detail-box p {
  margin:0;rk
  font-size: 15px;
  color: #66756B;
}

.contact-form-box{
  background: #ffffff;
  padding: 45px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
}

.input-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:20px;
}

.input-group{
  display: flex;
  flex-direction: column;
}

.input-group label {
  margin-bottom:10px;
  color: #1F3A24;
  font-weight:600;
  font-size:15px;
}

.input-group input,
.input-group select,
.input-group textarea{
  width: 100%;
  padding: 18px 20px;
  border: none;
  background: #F8FAFC;
  border-radius: 18px;
  outline: none;
  font-size: 15px;
  color: #1E293B;
}


.input-group textarea {
  resize: none;
}

.input-group textarea::placeholder {
  resize: none;
  line-height: 1.8;
}

.input-group {
  margin-top: 28px;
}

.input-group.services,
.input-group.details {
  margin-top: 40px;
}

.contact-btn {
  width:100%;
  border:none;
  padding:20px;
  border-radius:50px;
  background: var(--primary-color);
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  margin-top:25px;
  transition:0.3s;
}

.contact-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 35px rgba(198,93,30,0.25);
}

/* RESPONSIVE */

@media(max-width: 991px){
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-info h1 {
    font-size: 32px;
  }
  
  .portfolio-grid{
    grid-template-columns: 1fr;
  }

  .portfolio-card.large,
  .portfolio-card.wide{
    grid-column: span 1;
  }

  .portfolio-header h1 {
    font-size: 28px;
  }
    
  .portfolio-overlay h2 {
    font-size: 16px;
  }
  
  .detail-box {
    flex-direction: column;
  }
  
  .input-grid {
    grid-template-columns: 1fr;
  }

}

/* PREMIUM TESTIMONIAL SECTION */

.testimonial-premium {
  padding: 120px 7%;
  background: #F8FAFC;
}

.testimonial-header {
  text-align: center;
  max-width: 850px;
  margin: auto;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--primary-color);
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 600;
}

.testimonial-header h1 {
  font-size: 58px;
  color: #1E293B;
  margin-bottom: 24px;
  font-family: 'Lora', serif;
}

.testimonial-header p{
  font-size:17px;
  line-height:1.9;
  color: #64748B;
}

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

.testimonial-card {
  background: #fff;
  padding: 40px;
  /* border-radius: 28px; */
  border-radius: 8px;
  position: relative;
  box-shadow: 0 15px 50px rgba(0,0,0,0.05);
  transition: 0.4s ease;
}

.testimonial-card:hover{
  transform:translateY(-8px);
}

.testimonial-card.highlight {
  background: var(--primary-color);
  color:#fff;
}

.testimonial-card.highlight p,
.testimonial-card.highlight span,
.testimonial-card.highlight h3{
  color:#fff;
}

.quote-icon{
  width:60px;
  height:60px;
  border-radius:18px;
  background: #FFF1E6;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:25px;
}

.testimonial-card.highlight .quote-icon{
  background:rgba(255,255,255,0.2);
}

.quote-icon i {
  color: var(--primary-color);
  font-size: 22px;
}

.testimonial-card p{
  font-size:16px;
  line-height:1.9;
  color:#5F6F63;
  margin-bottom:30px;
}

.client{
  display:flex;
  align-items:center;
  gap:15px;
}

.client-img img{
  width:55px;
  height:55px;
  border-radius:50%;
  object-fit:cover;
}

.client h3{
  font-size:16px;
  margin-bottom:4px;
  color: #1E293B;
}

.client span{
  font-size:13px;
  color: #7A8A7E;
}

/* RESPONSIVE */

@media(max-width:991px){

  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .testimonial-header h1 {
    font-size: 28px;
  }

}

/* PREMIUM COUNTER SECTION */

.counter-premium {
  background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('./img/parallax.jpg') center/cover fixed;
  padding: 120px 7%;
  color: #fff;
}

.counter-container {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
  text-align: center;
}

.counter-box {
  padding: 30px 20px;
}

.counter-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 24px;
  background: var(--primary-soft-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.counter-icon i{
  font-size: 28px;
  color: var(--primary-color);
}

.counter-box h1{
  font-size:60px;
  font-family:'Lora', serif;
  margin-bottom:10px;
}

.counter-box p{
  font-size: 16px;
  color: #E8F5E9;
  letter-spacing:1px;
}

/* RESPONSIVE */

@media(max-width:991px){

  .counter-container{
    grid-template-columns: 1fr 1fr;
  }

  .counter-box h1 {
    font-size: 42px;
  }

}

@media(max-width:600px){

  .counter-container{
    grid-template-columns:1fr;
  }

}

/* PREMIUM FOOTER SECTION */

.footer-premium {
  /* background: #0B1220; */
  color: #FFF1E6;
  padding: 100px 7% 30px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A0B0B, #0B0B0B);
  /* background: #111827; */
  background: #000; /* deep charcoal black */
  color: #F8FAFC;
}

.footer-premium img {
  position: absolute;
  opacity: 0.1;
  width: 80%;
  top: 50%;
}

.footer-container{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap:50px;
  margin-bottom:60px;
}

.footer-brand .logo{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.footer-brand .logo i{
  font-size:26px;
  color: var(--primary-color);
}

.footer-brand h2{
  font-family:'Lora', serif;
  font-size:22px;
  color: #fff;
}

.footer-brand p {
  line-height:1.9;
  font-size:15px;
  color: #CBD5E1;
  margin-bottom:25px;
}

.footer-social{
  display:flex;
  gap:12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:hover{
  background: #C62828;
  color: #fff;
  transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3{
  font-size:18px;
  margin-bottom:20px;
  color:#fff;
  font-family:'Lora', serif;
}

.footer-links a{
  display:block;
  margin-bottom:12px;
  color: #CBD5E1;
  text-decoration:none;
  font-size:15px;
  transition:0.3s;
}

.footer-links a:hover{
  color: var(--primary-light-color);
  padding-left:6px;
}

.footer-contact p {
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
  font-size:15px;
  color: #CBD5E1;
}

.footer-contact i{
  color: var(--primary-color);
}

.footer-bottom{
  text-align:center;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,0.08);
  font-size:14px;
  /* color: #94A3B8; */ 
  color: #94A3B8;
}

/* RESPONSIVE */

@media(max-width:991px){

  .footer-container{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:600px){

  .footer-container{
    grid-template-columns:1fr;
  }

}

/* Parallax Section */
.parallax-premium {
  padding: 120px 7%;
  background: #000;
  margin-bottom: 100px;
}

.parallax-content {
  text-align: center;
  color: #fff;
}

.parallax-content p {
  margin: 24px;
  line-height: 1.5;
}

#menuBtn {
  display: none;
}

@media (max-width: 768px){
  .navbar {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav {
    /* background: rgba(15, 23, 42, 0.25); */
    background: rgba(2, 6, 23, 0.35);
    backdrop-filter: blur(10px);
    flex-direction: column;
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.5s;
    margin-left: -1000px;
    margin-top: -40px;
  }
  
  .active {
    margin-left: 0;
  }
  
  .logo {
    margin-top: 0px;
    font-weight: 800;
    margin-left: -250px;
  }
  
  .nav li {
    margin-bottom: 10px;
  }
  
  #menuBtn {
    display: block;
    color: #fff;
    font-size: 24px;
    top: 40px;
    right: 5px;
    position: fixed;
  }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 50px;
    right: 10%;
    border-radius: 50%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1A9810;
    /* 
    bottom: 50px;
    right: 10%;
    z-index: 1000;
    width: 50px;
    height: 50px; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff; */
    animation: pulse2 2s infinite; /* Apply pulse animation */
    transition: transform 0.3s ease;
}

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

.whatsapp-float img {
    width: 50px;
}

/* =========================
   PREMIUM MATERIALS SECTION
========================= */

.products-premium {
  padding: 80px 8%;
  background: #f9fafb;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-header .section-tag {
  display: inline-block;
  padding: 8px 18px;
  background: #fff1e6;
  color: #c65d1e;
  font-weight: 600;
  border-radius: 30px;
  font-size: 13px;
  margin-bottom: 15px;
}

.products-header h1 {
  font-size: 40px;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.products-header p {
  max-width: 750px;
  margin: auto;
  color: #555;
  line-height: 1.6;
  font-size: 16px;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.product-content {
  padding: 20px;
}

.product-content h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.product-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

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

  .products-header h1 {
    font-size: 28px;
  }

  .products-premium {
    padding: 60px 5%;
  }

}

/* =========================
   PREMIUM ROOF STYLES SECTION
========================= */

.roof-styles-premium {
  padding: 100px 8%;
  background: #f8f9fb;
}

.roof-styles-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.roof-styles-header .section-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(254, 7, 0, 0.08);
  color: #FE0700;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.roof-styles-header h1 {
  font-size: 42px;
  color: #111;
  line-height: 1.3;
  margin-bottom: 20px;
}

.roof-styles-header p {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
}


/* GRID */

.roof-styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}


/* CARD */

.style-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.style-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}


/* IMAGE */

.style-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}

.style-card:hover img {
  transform: scale(1.05);
}


/* CONTENT */

.style-content {
  padding: 25px;
}

.style-content h2 {
  font-size: 22px;
  color: #111;
  margin-bottom: 12px;
}

.style-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}


/* BUTTON */

.style-btn {
  display: inline-block;
  text-decoration: none;
  background: #FE0700;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.style-btn:hover {
  background: #d90400;
  transform: translateY(-2px);
}


/* RESPONSIVE */

@media (max-width: 768px) {

  .roof-styles-premium {
    padding: 70px 5%;
  }

  .roof-styles-header h1 {
    font-size: 30px;
  }

  .style-card img {
    height: 220px;
  }

}