* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Times New Roman;
}

body {
    height: auto;
    overflow-x: auto;
    overflow-y: auto;
}


/* HEADER */
.header {
    position: sticky;
    z-index: 1000;

    height: 150px; /* fixed height */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;

    background: #f5f5f5;
    border-bottom: 4px solid orange;

    transition: all 0.3s ease;
}

/* HEADER ACTIVE */
.menu a.active {
    color: #ffcc00;
    border-bottom: 3px solid #ffcc00; /* 🔥 underline */
    padding-bottom: 5px;
}

/* TABS NORMAL */
.tabs a {
    background: #111;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
}

/* TABS ACTIVE 🔥 */
.tabs a.active {
    background: #ffcc00;
    color: black;
    font-weight: bold;
}

/* SHADOW EFFECT */
.header.scrolled {
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* MENU */
.menu {
    display: flex;
    align-items: center;
    margin-right: 0;
    gap: 50px;
    font-size: 18px;
    font-weight: 700; /* 👈 strong bold */
    padding: 10px 20px; /* konjam perusa */
}

.menu a {
    text-decoration: none;
    color: black;
    font-weight: 1500;
    transition: 0.3s;
}

.menu a:hover {
    color: orange;
    transform: scale(1.1); /* 👈 size increase */
}

/* 👇 override for button */
.menu .call-btn:hover {
    color: darkgreen;
}

.menu a:not(.call-btn):hover {
    color: orange;
}

/* BUTTON */
.call-btn {
    background: #FDDA0D;
    color: #ffffff;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 700; /* 👈 strong bold */
    padding: 10px 20px; /* konjam perusa */
    border: none;
    cursor: pointer;
 }

.call-btn:hover {
    background: #7CFC00;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.call-btn:active {
    transform: scale(0.95); /* click feel */
}

.call-btn:focus {
    outline: none;
}

/* CONTENT */
.content {
    height: auto;
    padding: 20px;
    padding: 0;
    margin: 0;
}

/* COMMON STYLE */
/* BACKGROUND BLUR */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* BOX */
.popup-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;

    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);

    animation: popupFade 0.3s ease;
}

/* TEXT COLORS */
.success-text {
    color: #28a745;
}

.error-text {
    color: #dc3545;
}

/* BUTTON */
.popup-box button {
    margin-top: 15px;
    padding: 10px 20px;

    border: none;
    border-radius: 6px;

    background: #f4b400;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

/* ANIMATION */
@keyframes popupFade {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}


/* SHRINK EFFECT */
.header.scrolled {
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* LOGO */
.logo img {
    display: block; /* 👈 important */
    margin-left: 0;
    margin-top: 0px;
    height: 140px;
    width: auto;
    transition: transform 0.3s ease;
    max-width: 100%;
}

/* LOGO SHRINK */
.header.scrolled .logo img {
    transform: scale(0.8); /* smooth scale */
}

.logo {
    height: 140px;
    overflow: hidden;
    display: flex;
    align-items: center;
    overflow: visible; /* 👈 change pannunga */
}



/* TABLET */
@media (max-width: 992px) {
    .header {
        padding: 0 20px;
    }

    .logo img {
        height: 60px;
    }
}

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

    .header {
        flex-direction: column;
        height: auto;
        padding: 10px;
        position: relative;
        top: 0;
    }

    .logo img {
        width: 180px;
        height: auto;
        margin: 0;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
        margin-right: 0;
        gap: 10px;
        font-size: 14px;
    }
    .content {
        padding: 0;
    }
    .logo img {
        width: 180px;
    }

    #timer b {
        font-size: 25px;
    }
}

//*INDEX*//

/* GLOBAL */
section {
    padding: 70px 20px;
    text-align: center;
}

.home-services,
.why-us,
.home-tariff,
.cta {
    text-align: center;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 42px;
}

.hero p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTONS */
.btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin: 5px;
    display: inline-block;
}

.btn {
    background: #ffcc00;
    color: black;
}

.btn.whatsapp {
    background: #25D366;
    color: white;
}

.btn.call {
    background: red;
    color: white;
}

/* ABOUT */
.home-about {
    max-width: 800px;
    margin: auto;
}

/* SERVICES */
.home-services h2 {
    margin-bottom: 20px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 25px;
    margin-top: 30px;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.1);
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

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

/* WHY */
.why-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* LINKS */
.link-btn {
    display: inline-block;
    margin-top: 20px;
    color: #ffcc00;
    font-weight: bold;
    text-decoration: none;
}

/* CTA */
.cta {
    background: #f9f9f9;
    padding: 60px;
}



/* ANNOUNCEMENT BAR */
.announcement {
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 0px;
    width: 100%;
    background: #fff3e0;
    background: linear-gradient(to right, #fff3e0, #ffe0b2);
    border-bottom: 2px solid orange;
    overflow: hidden;
}

/* TRACK */
.track {
    display: flex;
    width: max-content;
    white-space: nowrap;

    /* 👇 START FROM RIGHT OUTSIDE */
    transform: translateX(100%);
    animation: none;
}

/* TEXT */
.marquee {
    white-space: nowrap;
    padding-right: 180px;
}

/* LOOP */

@keyframes scrollLeft {
    0% {
        transform: translateX(100%); /* right outside */
    }
    100% {
        transform: translateX(-100%); /* smooth loop */
    }
}

.track:hover {
    animation-play-state: none;
    animation-duration: 0s;
}

.highlight {
    color: purple;
    font-weight: bold;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.5;
    }
}
.marquee::before {
    content: "🚖 ";
    margin-right: 5px;
}

/* FOOTER */
.footer {
    background: #222;
    width: 100%;
    color: white;
    padding: 40px 20px 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-item span {
    font-size: 18px;
}

.contact-item p {
    margin: 0;
    color: #ccc;
}

/* CONTAINER */
.footer-container {
    display: flex;
    width: 100%;
    padding: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

/* BOX */
.footer-box {
    flex: 1;
    min-width: 200px;
}

.footer-box a.active {
    color: #ffcc00;
    font-weight: bold;
}

/* HEADINGS */
.footer-box h3 {
    margin-bottom: 15px;
    color: orange;
}

/* LINKS */
.footer-box a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-box a:hover {
    color: orange;
}

/* TEXT */
.footer-box p {
    margin-bottom: 8px;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    margin-top: 20px;
    padding-top: 10px;
    font-size: 14px;
}



/* WHATSAPP ROUND BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;

    width: 60px;
    height: 60px;

    background: #25D366;
    border-radius: 50%;

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

    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;

    animation: waPulse 1.8s infinite;
    transition: 0.3s;
}

/* ICON SIZE */
.whatsapp-float img {
    width: 30px;
    height: 30px;
}

/* HOVER */
.whatsapp-float:hover {
    transform: scale(1.1);
    animation: none;
}

/* CLICK */
.whatsapp-float:active {
    transform: scale(0.95);
}

/* ANIMATION */
@keyframes waPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* CALL RIGHT */
.call-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffcc00;
    color: black;
    width: 60px;
    height: 60px;
    border-radius: 50%;

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

    font-size: 24px;
    text-decoration: none;

    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;

    transition: all 0.3s ease;

    /* 🔥 animation */
    animation: pulse 1.8s infinite;
    will-change: transform;
}

/* HOVER */
.call-float:hover {
    transform: scale(1.15);
    background: orange;
    animation: none; /* 👈 hover la stop */
}

/* CLICK */
.call-float:active {
    transform: scale(0.95);
}

/* 🔥 PULSE ANIMATION */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
    100% {
        transform: scale(1);
    }
}


/* IMPORTANT FIX */
.footer-box {
    display: block !important; /* 👈 force column */
}


/* LOGO + TEXT ROW */
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 15px; /* space between logo & text */
}

/* LOGO */
.footer-logo {
    width: 70px; /* adjust pannalaam */
}

/* TEXT */
.footer-logo-row h2 {
    margin: 0;
    color: white;
    font-size: 30px;
    font-weight: 700; /* 👈 strong bold */
    padding: 10px 20px; /* konjam perusa */
}



/* ROW */
.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LOGO */
.footer-logo {
    width: 80px;   /* 👈 reduce size */
    height: auto;
    flex-shrink: 0;
}

.footer-logo-row p {
    margin: 12px 0 0 0;
    font-size: 14px;

}


/* PARAGRAPH BELOW */
.footer-desc {
    margin-top: 10px;
    font-size: 14px;
    display: block;
    width: 100%; /* 👈 full width force */
}

/* FULL SCREEN IMAGE */
.hero-image {
    width: 100%;
    height: auto; /* full screen height */
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* IMAGE FIT */
.hero-image img {
    display: block; /* 👈 removes bottom gap */
    width: 100%;
    height: auto;
    min-height: auto; /* 🔥 add */
    display:block;
    object-fit: cover; /* 👈 full cover */
}


/* POSITION CENTER */
.hero-image {
    position: relative;
}

.countdown {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%);
    top: 10px;
    right: 80px;
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
    font-size: 14px;
    color: white;
    text-align: center;

    background: rgba(0,0,0,0.6);
    padding: 15px;
    border-radius: 10px;

    backdrop-filter: blur(5px);
    z-index: 2;
}

/* TIMER BOX */
#timer {
    display: flex;
    gap: 20px;
    text-align: center;
    justify-content: center; /* 👈 center */
    align-items: center;
    margin-top: 100px;
}

#timer span {
    background: rgba(0,0,0,0.0);
    padding: 10px 10px;
    border-radius: 60px;
    min-width: 70px; /* 👈 equal width */
}

/* BIG NUMBERS */
#timer b {
    font-size: 30px;
    display: block;
}


/*TARIFF SECTION */

.tariff-section {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    align-items: center;
    margin: 40px auto;
    padding: 10px;
  
}

.tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.tariff-section h2 {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 25px;
    display: block;
}

.tariff-section table {
    width: 100%;
    min-width: 800px;   /* 🔥 force width */
    margin: 20px auto;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.table-box {
    width: 100%;
    overflow-x: auto;
}
.sticky-col {
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 2;
}

th.sticky-col {
    background: #000;
    color: #ffcc00;
    z-index: 3;
}

/* HEADER */
.tariff-section th {
    background: #000;
    color: #ffcc00;
    padding: 12px;
    font-size: 15px;
    text-align: center;
}

/* ROW */
.tariff-section td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    text-align: center;
}

/* FIRST COLUMN */
.tariff-section td:first-child {
    font-weight: bold;
}

/* ZEBRA */
.tariff-section tbody tr:nth-child(even) td {
    background: #fafafa;
}

/* 🔥 SMOOTH TRANSITION */
.tariff-section tbody tr {
    transition: all 0.3s ease;
    transform: translateZ(0);
    will-change: transform;
}

/* 🔥 HOVER FULL ROW + ZOOM */
.tariff-section tbody tr:hover td {
    background: #ffe0b2 !important;
    cursor: pointer;
}

.tariff-section tbody tr:hover {
    transform: all 0.3s ease;
    position: relative;
    z-index: 5;
}

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

    /* menu already ok */
    .menu{
        gap: 8px;
        font-size: 13px;
    }

    .tabs a {
        padding: 8px 12px;
        font-size: 12px;
    }

    /* 🔥 TABLE FIX */
    .table-wrapper {
        width: 100%;
        overflow-x: auto;
    }

    .tariff-section table {
        min-width: 800px;
        font-size: 12px;
    }

}

.terms {
    width: 100%;
    max-width: 1300px;   /* 🔥 table size match */
    margin: 30px auto;
    padding: 20px;
    background: #fffbea;
    border-left: 5px solid #ffcc00;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* 🔥 CENTER BUTTON WRAPPER */
.calc-btn-wrapper{
    text-align: center;
    margin-top: 30px;
}

/* 🔥 BUTTON */
.calc-btn{
    background:#000;
    color:#ffcc00;
    padding:14px 30px;
    font-size:18px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.calc-btn:hover{
    background:#ffcc00;
    color:#000;
}

/* 🔥 CALCULATOR BOX */
.calc-box{
    margin-top:15px;
    padding:20px;
    border:2px solid #000;
    border-radius:10px;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* 🔥 FORM GRID */
.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

/* 🔥 LABEL */
.form-grid label{
    display:block;
    margin-bottom:5px;
    font-weight:500;
}

/* 🔥 INPUT + SELECT */
.form-grid input,
.form-grid select{
    width:100%;
    padding:10px;
    border:1px solid #ccc;
    border-radius:6px;
    font-size:14px;
}

/* 🔥 RESULT BOX */
.result-box{
    margin-top:15px;
    line-height:1.8;
    font-size:15px;
}

.result-box h3{
    margin-top:10px;
    color:#000;
}

/* 🔥 MOBILE */
@media (max-width: 768px){
    .form-grid{
        grid-template-columns:1fr;
    }
}



/* ========================= */
/* 📞 CONTACT SECTION */
/* ========================= */

.contact-section {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT BOX */
.contact-info {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* RIGHT BOX */
.contact-form {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* FORM */
.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 12px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* BUTTON */
.contact-form button {
    padding: 12px;
    background: #ffcc00;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #e6b800;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }
}


.map-box {
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.tariff-map {
    max-width: 900px;
    margin: 30px auto;
    text-align: center;
}

.tariff-map iframe {
    width: 100%;
    height: 320px;
    border-radius: 10px;
}

.map-note {
    margin-top: 12px;
    color: #d35400;
    font-weight: bold;
    background: #fff3cd;
    padding: 12px;
    border-radius: 8px;    
    border-left: 5px solid orange;
}

.map-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.map-container iframe {
    width: 100%;
    height: 420px; /* increase height */
    margin-top: -90px; /* 🔥 hide top bar */
    border: 0;
}


//*ABOUT SECTION*//

.about-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.about-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.about-text ul {
    padding-left: 0;
    list-style: none;
}

.about-text li {
    margin-bottom: 10px;
    font-size: 15px;
}

.about-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ffcc00;
    color: black;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.about-btn:hover {
    background: #e6b800;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 380px;
}

.highlight-line {
    background: #fff3cd;
    padding: 10px;
    border-radius: 6px;
    font-weight: bold;
    margin: 10px 0;
}

//*SERVICES SECTION*//

.services-section {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.services-title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.services-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

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

.service-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.service-card p {
    font-size: 14px;
    color: #555;
}

.services-sub {
    text-align: center;
    color: #777;
    margin: 10px 0 30px;
    font-size: 15px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.3s;
}
