* {
    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;
}


/* 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;
    }
}

/* 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;
}

/* 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;
}

/* 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: 100%;   /* 🔥 force width */
    margin: 20px auto;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.table-box {
    width: 100%;
    display: flex;
    justify-content: center;   /* 🔥 MAIN FIX */
    overflow-x: auto;
}

/* 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;
}

/* HOVER */
.tariff-section tbody tr:hover {
    background: #ffe0b2;
    cursor: pointer;
}

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

/* MOBILE */
@media (max-width: 768px){
    .menu{
        gap: 8px;
        font-size: 13px;
    }

    .tabs a {
        padding: 8px 12px;
        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;
    }
}