* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
}
/* Header */
header {
    background-color: #111;
    color: #fff;
    padding: 15px 0;
}

.container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
}

/* Navigation Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    padding: 8px 12px;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.call-btn {
    background-color: #ff4d4d;
    color: #fff;
    border-radius: 5px;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
}

/* Always hidden by default */
.close-btn{ display:none; }

/* Mobile panel + close button */
@media (max-width: 768px){
  header{ position:sticky; top:0; z-index:1000; }

  nav ul{
    position:fixed; top:0; right:0;
    height:100dvh; width:min(80vw,280px);
    margin:0; padding:80px 16px 16px;
    background:#111; border-left:1px solid rgba(255,255,255,.1);
    display:flex; flex-direction:column; align-items:flex-start; gap:10px;
    transform:translateX(110%); transition:transform .3s ease;
    z-index:999;
  }
  nav ul.active{ transform:translateX(0); }

  .menu-toggle{ display:flex; flex-direction:column; gap:5px; z-index:1001; }
  .menu-toggle span{ width:25px; height:3px; background:#fff; }

  /* Close button: only visible when menu is open */
  .close-btn{
    position:fixed; top:18px; right:18px;
    font-size:30px; line-height:1;
    color:#fff; background:transparent; border:0; cursor:pointer;
    z-index:1002;
  }
  /* Hidden by default on mobile */
  @media (max-width: 768px){ .close-btn{ display:none; } }
  /* Show when menu is open */
  body.menu-open .close-btn{ display:block; }

  /* Touch targets */
  nav ul li a{
    width:100%; padding:10px 12px; border-radius:6px; color:#fff; text-decoration:none;
  }

  html, body{ overflow-x:hidden; }
  body.menu-open{ overflow:hidden; } /* lock background scroll */
}


/* Banner Section */
.banner {
    background-color: #f5f5f5;
    padding: 60px 0;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
    gap: 20px;
}

.text-content {
    flex: 1;
}

.text-content h1 {
    font-size: 36px;
    color: #111;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Highlighted Plan */
.highlight-plan {
    background-color: #ff4d4d;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: fit-content;
    margin-top: 20px;
}

.highlight-plan h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.highlight-plan p {
    margin-bottom: 10px;
}

.highlight-plan .call-btn {
    background-color: #fff;
    color: #ff4d4d;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

/* Banner Image */
.banner-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .banner-image img {
        max-width: 100%;
    }

    .highlight-plan {
        margin: 20px auto 0;
    }
}

/* Plans Section */
.plans-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #111;
}

/* Grid layout for plan cards */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Plan cards */
.plan-card {
    background-color: #f5f5f5;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.plan-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.plan-card p {
    font-size: 16px;
    margin-bottom: 15px;
}

.call-btn {
    background-color: #ff4d4d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
}

.call-btn:hover {
    background-color: #e63939;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .plan-card h3 {
        font-size: 22px;
    }

    .plan-card p {
        font-size: 15px;
    }

    .call-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .plan-card h3 {
        font-size: 20px;
    }

    .plan-card p {
        font-size: 14px;
    }

    .call-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Services Section */
.services-section {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.services-section .section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #111;
}

/* Grid layout for services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Individual service card */
.service-card {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #111;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.service-card .call-btn {
    background-color: #ff4d4d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
}

.service-card .call-btn:hover {
    background-color: #e63939;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 15px;
    }

    .service-card .call-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .service-icon {
        font-size: 35px;
    }
}

@media (max-width: 480px) {
    .services-section .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-card .call-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .service-icon {
        font-size: 30px;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #111;
}

/* Simple list styling */
.choose-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: auto;
    text-align: left;
    line-height: 1.8;
    font-size: 18px;
    color: #333;
}

.choose-list li {
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .choose-list {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .choose-list {
        font-size: 15px;
    }
}
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff4d4d, #ff7a7a);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: #fff;
    color: #ff4d4d;
    font-size: 20px;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.cta-info {
    margin-top: 20px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-btn {
        font-size: 18px;
        padding: 12px 30px;
    }

    .cta-info {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 10px 25px;
    }

    .cta-info {
        font-size: 13px;
    }
}
/* Installation Section */
.installation-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.installation-section .section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #111;
}

/* Steps layout */
.installation-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.step-item {
    max-width: 250px;
    text-align: center;
}

.step-number {
    font-size: 36px;
    color: #ff4d4d;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #111;
}

.step-item p {
    font-size: 16px;
    color: #333;
}

/* CTA button */
.installation-section .cta-btn {
    background-color: #ff4d4d;
    color: #fff;
    font-size: 20px;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.installation-section .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .installation-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .step-number {
        font-size: 30px;
    }

    .step-item h3 {
        font-size: 20px;
    }

    .step-item p {
        font-size: 15px;
    }

    .installation-section .cta-btn {
        font-size: 18px;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .installation-section .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .step-number {
        font-size: 26px;
    }

    .step-item h3 {
        font-size: 18px;
    }

    .step-item p {
        font-size: 14px;
    }

    .installation-section .cta-btn {
        font-size: 16px;
        padding: 10px 25px;
    }
}
/* FAQ Section */
.faq-section {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
}

.faq-section .section-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #111;
}

.faq-container {
    max-width: 800px;
    margin: auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 15px 0;
    font-size: 18px;
    color: #111;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 15px 0;
    margin: 0;
    color: #333;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-section .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}
/* Disclaimer Section */
.disclaimer-section {
    background-color: #f5f5f5;
    padding: 20px 15px;
    text-align: center;
    font-size: 14px;
    color: #555;
}

.disclaimer-section p {
    margin: 0;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .disclaimer-section {
        font-size: 13px;
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .disclaimer-section {
        font-size: 12px;
        padding: 10px 5px;
    }
}
/* Footer Section */
.footer-section {
    background-color: #111;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer-section a {
    color: #ff4d4d;
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-info p {
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-copy {
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-info h3 {
        font-size: 20px;
    }

    .footer-info p {
        font-size: 15px;
    }

    .footer-copy {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-info h3 {
        font-size: 18px;
    }

    .footer-info p {
        font-size: 14px;
    }

    .footer-copy {
        font-size: 12px;
    }
}
/* Full-Width Fixed Call Button */
/* Robust full-width fixed call button */
.fixed-call-btn {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  box-sizing: border-box;
  padding: calc(env(safe-area-inset-bottom, 12px) + 12px) 0 !important; /* handles iPhone notch */
  margin: 0 !important;
  background: #ff4d4d !important;
  color: #fff !important;
  font-size: 18px !important;
  text-align: center !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  border-radius: 0 !important; /* full width usually has square corners */
  box-shadow: 0 -5px 15px rgba(0,0,0,0.18) !important;
  z-index: 999999 !important;
  display: block !important;
  -webkit-transform: translateZ(0); /* helps some mobile browsers */
  transform: translateZ(0);
  transition: background 0.2s ease !important;
}

/* Hover (desktop) */
.fixed-call-btn:hover {
  background: #e63e3e !important;
}

/* Smaller screens */
@media (max-width: 768px) {
  .fixed-call-btn { font-size: 16px !important; }
}
@media (max-width: 480px) {
  .fixed-call-btn { font-size: 15px !important; padding: calc(env(safe-area-inset-bottom, 12px) + 10px) 0 !important; }
}


/* Contact Section */
.contact-section {
    background-color: #f5f5f5;
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.contact-section .contact-title {
    text-align: center;
    font-size: 32px;
    color: #111;
    margin-bottom: 40px;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

/* Contact Form */
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    width: 100%;
}

.contact-form button {
    background-color: #ff4d4d;
    color: #fff;
    font-size: 18px;
    padding: 12px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Contact Info */
.contact-info {
    flex: 1;
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Google Map */
.contact-map {
    margin-top: 40px;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info, .contact-form {
        width: 100%;
    }

    .contact-map {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-section .contact-title {
        font-size: 28px;
    }

    .contact-form button {
        font-size: 16px;
        padding: 10px;
    }

    .contact-info h3 {
        font-size: 20px;
    }

    .contact-info p {
        font-size: 14px;
    }
}
