/* ==========================================
   MY MOON CAB GOA - STYLE.CSS (PART 2A)
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:#030101;
    background:#FCFCFC;
    line-height:1.6;
}

img{
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
        HEADER
=========================== */

header{
    background:#FCFCFC;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#FB5303;
    display:flex;
    align-items:center;
    gap:10px;
}

.logo-img{
    width:50px;
    height:50px;
    border-radius:8px;
    object-fit:cover;
}

.logo i{
    margin-right:8px;
}

/* ===========================
        BUTTONS
=========================== */

.btn{
    display:inline-block;
    background:#FB5303;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    background:#C6531E;
    transform:translateY(-2px);
}

.header-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    align-items:center;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:25px;
}

.hero-btn{
    margin-top:0;
}

.btn-secondary{
    background:#fff;
    color:#FB5303;
    border:2px solid #FB5303;
}

.btn-secondary:hover{
    background:#fff5ec;
    color:#C6531E;
}

.btn-small{
    display:inline-block;
    margin-top:15px;
    background:#FB5303;
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    transition:.3s;
    font-size:15px;
}

.btn-small:hover{
    background:#222;
}

/* ===========================
        HERO
=========================== */

.hero{
    background:linear-gradient(135deg,#fff7ec,#ffe2b4);
    padding:80px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:50px;
    align-items:center;
}

.hero-content h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:20px;
    font-weight:700;
}

.hero-content p{
    font-size:18px;
    color:#555;
    margin-bottom:30px;
}

/* ===========================
        USP
=========================== */

.usp{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.usp span{
    background:#fff;
    padding:14px;
    border-radius:10px;
    font-weight:600;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.usp i{
    color:#27ae60;
    margin-right:8px;
}

/* ===========================
        FORM
=========================== */

.quote-form{
    background:#fff;
    padding:35px;
    border-radius:24px;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
    border:1px solid rgba(251,83,3,.12);
}

.quote-form h2{
    text-align:center;
    margin-bottom:10px;
    color:#FB5303;
}

.form-intro{
    text-align:center;
    color:#666;
    margin-bottom:20px;
    font-size:15px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:15px;
}

.field-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.field-group label{
    font-size:14px;
    font-weight:600;
    color:#333;
}

.quote-form input,
.quote-form select{
    width:100%;
    padding:14px 15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    background:#fcfcfc;
}

.quote-form input:focus,
.quote-form select:focus{
    outline:none;
    border-color:#FB5303;
    box-shadow:0 0 0 4px rgba(251,83,3,.12);
}

.form-note{
    margin:10px 0 16px;
    color:#777;
    font-size:14px;
}

.quote-form button{
    width:100%;
    border:none;
    background:#FB5303;
    color:#fff;
    padding:16px;
    border-radius:10px;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.quote-form button:hover{
    background:#C6531E;
}

/* ===========================
      SECTION TITLE
=========================== */

.section-title{
    text-align:center;
    font-size:38px;
    margin-bottom:50px;
    color:#222;
}

/* ===========================
      ABOUT SECTION
=========================== */

.about-section{
    padding:90px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:35px;
    align-items:center;
}

.eyebrow{
    display:inline-block;
    color:#FB5303;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
    font-size:13px;
    margin-bottom:10px;
}

.about-content h2{
    font-size:34px;
    margin-bottom:15px;
    color:#222;
}

.about-content p{
    color:#666;
    margin-bottom:15px;
}

.highlight-list{
    list-style:none;
    padding:0;
    margin:0;
}

.highlight-list li{
    padding:10px 0 10px 24px;
    position:relative;
    color:#444;
}

.highlight-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#FB5303;
    font-weight:700;
}

.about-card{
    background:linear-gradient(135deg,#fff7ec,#ffe2b4);
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.about-card h3{
    margin-bottom:12px;
    color:#222;
}

.about-card p{
    color:#555;
    margin-bottom:18px;
}

/* ===========================
      TRUST SECTION
=========================== */

.trust{
    background:#fff;
    padding:60px 0;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    text-align:center;
}

.trust-grid div{
    background:#f9fafb;
    padding:30px;
    border-radius:15px;
    transition:.3s;
}

.trust-grid div:hover{
    transform:translateY(-8px);
}

.trust-grid h3{
    font-size:30px;
    color:#FB5303;
    margin:10px 0;
}

.trust-grid p{
    color:#555;
}

/* ===========================
      COMMON CARD GRID
=========================== */

.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

/* ===========================
        WHY US
=========================== */

.why{
    padding:90px 0;
    background:#f8f9fb;
}

.card{
    background:#fff;
    border-radius:15px;
    padding:35px;
    text-align:center;
    transition:.3s;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-10px);
}

.card i{
    font-size:45px;
    color:#FB5303;
    margin-bottom:20px;
}

.card h3{
    margin-bottom:12px;
}

.card p{
    color:#666;
}

/* ===========================
      SERVICES
=========================== */

.services{
    background:#fff;
    padding:90px 0;
}

.service-card{
    background:#ffffff;
    border-radius:15px;
    text-align:center;
    padding:35px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card i{
    font-size:50px;
    color:#FB5303;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
}

.service-card p{
    color:#666;
}
/* ==========================================
   MY MOON CAB GOA - STYLE.CSS (PART 2B)
==========================================*/

/* ===========================
      TESTIMONIALS
=========================== */

.testimonials{
    padding:90px 0;
    background:#f8f9fb;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.review-card{
    background:#fff;
    border-radius:15px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.review-card:hover{
    transform:translateY(-8px);
}

.review-header{
    display:flex;
    align-items:center;
    margin-bottom:20px;
}

.review-header img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    margin-right:15px;
}

.review-header h4{
    margin-bottom:5px;
}

.review-header span{
    color:#777;
    font-size:14px;
}

.stars{
    color:#ffb400;
    margin-bottom:15px;
}

.review-card p{
    color:#555;
}

/* ===========================
        FAQ
=========================== */

.faq{
    padding:90px 0;
    background:#fff;
}

.faq-item{
    background:#f7f7f7;
    margin-bottom:20px;
    border-radius:10px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    padding:20px;
    background:none;
    border:none;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
    text-align:left;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question i{
    color:#FB5303;
}

.faq-answer{
    display:none;
    padding:0 20px 20px;
    color:#666;
}

.faq-item.active .faq-answer{
    display:block;
}

/* ===========================
      CONTACT
=========================== */

.contact{
    padding:90px 0;
    background:#fff7ec;
}

.contact-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-box h2{
    margin-bottom:25px;
    text-align:center;
}

.contact-info{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.contact-card{
    text-align:center;
    padding:25px;
}

.contact-card i{
    font-size:40px;
    color:#FB5303;
    margin-bottom:15px;
}

.contact-card h4{
    margin-bottom:10px;
}

/* ===========================
        FOOTER
=========================== */

footer{
    background:#111;
    color:#fff;
    padding:40px 0;
    text-align:center;
}

footer p{
    margin:8px 0;
}

footer a{
    color:#ff9800;
}

/* ===========================
      STICKY BUTTONS
=========================== */

.sticky-contacts{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:999;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.sticky-btn{
    position:relative;
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:24px;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.25);
    transition:.3s;
    text-decoration:none;
}

.call-btn{
    background:#FB5303;
}

.call-btn:hover{
    background:#e68900;
    transform:scale(1.15);
}

.whatsapp-btn{
    background:#25D366;
}

.whatsapp-btn:hover{
    background:#1ead51;
    transform:scale(1.15);
}

/* ===========================
      FOOTER
=========================== */

footer{
    background:#111;
    color:#fff;
    padding:60px 0 30px;
}

.footer-content{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-bottom:20px;
}

.footer-section h4{
    color:#FB5303;
    margin-bottom:15px;
    font-size:18px;
}

.footer-section p{
    color:#ccc;
    margin:8px 0;
    font-size:15px;
}

.footer-section ul{
    list-style:none;
}

.footer-section ul li{
    margin:8px 0;
}

.footer-section a{
    color:#FB5303;
    transition:.3s;
}

.footer-section a:hover{
    color:#fff;
}

footer hr{
    margin:30px 0;
    border:none;
    border-top:1px solid #333;
}

/* ===========================
      THANK YOU PAGE
=========================== */

.thank-you-page{
    min-height:100vh;
    display:grid;
    place-items:center;
    padding:24px;
    background:linear-gradient(135deg,#fff7ec,#ffe2b4);
}

.thank-you-card{
    background:#fff;
    border-radius:24px;
    padding:40px;
    text-align:center;
    max-width:620px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.thank-you-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#FB5303;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:32px;
    font-weight:700;
}

.thank-you-card h1{
    font-size:34px;
    margin-bottom:12px;
    color:#222;
}

.thank-you-card p{
    color:#666;
    margin-bottom:24px;
}

.thank-you-actions{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

/* ===========================
      RESPONSIVE
=========================== */

@media(max-width:992px){

.hero-grid{
    grid-template-columns:1fr;
}

.hero-content{
    text-align:center;
}

.quote-form{
    max-width:500px;
    margin:auto;
}

.about-grid{
    grid-template-columns:1fr;
}

.trust-grid{
    grid-template-columns:repeat(2,1fr);
}

.hero-content h1{
    font-size:40px;
}

.section-title{
    font-size:32px;
}

.sticky-contacts{
    right:15px;
    bottom:15px;
}

}

@media(max-width:768px){

.nav{
    flex-direction:column;
    gap:15px;
}

.form-grid{
    grid-template-columns:1fr;
}

.logo{
    font-size:24px;
}

.hero{
    padding:60px 0;
}

.hero-content h1{
    font-size:34px;
}

.hero-content p{
    font-size:16px;
}

.usp{
    grid-template-columns:1fr;
}

.trust-grid{
    grid-template-columns:1fr;
}

.section-title{
    font-size:28px;
    margin-bottom:35px;
}

.card-grid{
    grid-template-columns:1fr;
}

.contact-info{
    grid-template-columns:1fr;
}

.footer-content{
    grid-template-columns:1fr;
    text-align:center;
}

.sticky-btn{
    width:55px;
    height:55px;
    font-size:22px;
}

.sticky-contacts{
    right:10px;
    bottom:10px;
    gap:12px;
}

}

@media(max-width:480px){

.container{
    width:94%;
}

.thank-you-card{
    padding:28px;
}

.hero-content h1{
    font-size:28px;
}

.section-title{
    font-size:28px;
}

.btn{
    width:100%;
    text-align:center;
}

.btn-small{
    width:100%;
}

.review-card,
.card,
.service-card,
.contact-box{
    padding:25px;
}

}