/*=========================================
KONKAN KATTA V1
Luxury Beach Theme
==========================================*/

:root{

--primary:#ff6b00;
--secondary:#0d5c63;
--dark:#1d2939;
--light:#ffffff;
--sand:#f8f5ef;
--shadow:0 15px 40px rgba(0,0,0,.15);

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:var(--sand);
color:var(--dark);

padding-top:90px;

overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

.container{

width:92%;
max-width:1300px;
margin:auto;

}

/*==========================
HEADER
==========================*/

.header{

position:fixed;

top:0;
left:0;

width:100%;

background:#fff;

box-shadow:0 5px 30px rgba(0,0,0,.08);

z-index:999;

}

.header .container{

height:90px;

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{
    flex-shrink:0;
    display:flex;
    align-items:center;
}

.logo img{
    height:70px;
    width:auto;
    display:block;
}

.navbar{
    flex:1;
    display:flex;
    justify-content:center;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    color:#1d2939;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:var(--primary);
}

.menu-toggle{
    display:none;
    font-size:30px;
    color:#1d2939;
    cursor:pointer;
}

.order-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    min-width:220px;
    height:58px;

    padding:0 32px;

    background:var(--primary);
    color:#fff;

    border-radius:50px;

    font-weight:600;
    font-size:16px;

    transition:.35s ease;
}

.order-btn:hover{
    background:#ff8127;
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(255,107,0,.25);
}

/*==========================
HERO
==========================*/

.hero{

height:80vh;

background:url("../images/hero/hero-banner.jpg") center center/cover;

position:relative;

display:flex;

align-items:center;

}

.overlay{

position:absolute;

inset:0;

background:linear-gradient(

90deg,

rgba(0,40,55,.82),

rgba(0,40,55,.45),

rgba(0,40,55,.20)

);

}

.hero-content{

position:relative;

z-index:2;

max-width:760px;

margin-left:8%;

color:#fff;

}

.tag{

display:inline-block;

background:rgba(255,255,255,.18);

padding:10px 24px;

border-radius:50px;

backdrop-filter:blur(8px);

font-size:.95rem;

margin-bottom:22px;

}

.hero h1{

font-family:'Playfair Display',serif;

font-size:62px;

line-height:1.1;

margin-bottom:25px;

}

.hero p{

font-size:20px;

line-height:1.8;

opacity:.95;

max-width:650px;

margin-bottom:40px;

}

.hero-buttons{
    display:flex;
    gap:18px;
    align-items:center;
    flex-wrap:wrap;
}

.hero-buttons a{

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

    width:230px;
    flex-shrink:0;
    height:58px;

    padding:0 32px;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    text-decoration:none;

    transition:.35s ease;

}

.hero-buttons a:first-child{

background:var(--primary);

color:#fff;

}

.hero-buttons a:last-child:hover{

    background:#0d5c63;

    color:#fff;

}

.secondary-btn{

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

    min-width:220px;
    height:58px;

    padding:0 32px;

    background:#ffffff;

    color:#0d5c63;

    border:2px solid #ffffff;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    transition:.35s ease;

}

.secondary-btn:hover{

    background:#0d5c63;

    color:#ffffff;

    border-color:#0d5c63;

    transform:translateY(-4px);

}

.hero-buttons a:hover{

transform:translateY(-5px);

box-shadow:var(--shadow);

}

/*==========================
WHATSAPP
==========================*/

/*=========================================
            FLOATING WHATSAPP
=========================================*/

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:60px;

    height:60px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:transparent;

    border-radius:50%;

    box-shadow:none;

    z-index:9999;

    transition:all .3s ease;

}

.whatsapp-float:hover{

    transform:translateY(-4px) scale(1.08);

}

.whatsapp-float img{

    width:60px;

    height:60px;

    display:block;

    object-fit:contain;

}
/*==================================================
        WHY CHOOSE KONKAN KATTA
==================================================*/

.why-us{

    padding:100px 0;

    background:linear-gradient(to bottom,#ffffff,#f7fafc);

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    padding:10px 22px;

    background:#E7F7F7;

    color:#0B7A75;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-title h2{

    font-size:46px;

    color:#1E293B;

    margin-bottom:20px;

    font-weight:700;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#64748B;

    font-size:18px;

    line-height:1.8;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#ffffff;

    border-radius:22px;

    padding:35px;

    box-shadow:0 10px 35px rgba(15,23,42,.06);

    transition:.35s ease;

    border:1px solid #eef2f7;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.10);

}

.why-card h3{

    font-size:24px;

    color:#1E293B;

    margin-bottom:18px;

}

.why-card p{

    color:#64748B;

    line-height:1.8;

    font-size:16px;

}
/*==================================
FEATURED THALIS
==================================*/

.featured-thalis{
    padding:100px 0;
    background:#f8fafc;
}

.featured-thalis .section-title{
    text-align:center;
    margin-bottom:60px;
}

.featured-thalis .section-title span{
    display:inline-block;
    padding:10px 24px;
    background:#e8f7f5;
    color:#0b7a75;
    border-radius:50px;
    font-weight:600;
    margin-bottom:18px;
}

.featured-thalis .section-title h2{
    font-size:48px;
    margin-bottom:20px;
}

.featured-thalis .section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

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

.thali-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.thali-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

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

.thali-content{
    padding:28px;
}

.thali-content h3{
    font-size:28px;
    margin-bottom:12px;
}

.price{
    display:inline-block;
    background:#ff6b00;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:22px;
    font-weight:700;
    margin-bottom:18px;
}

.thali-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}


.order-btn:hover{
    background:#e85f00;
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(255,107,0,.35);
}
/* =========================
   THALI BADGES
========================= */

.thali-card{
    position:relative;
    overflow:hidden;
}

.badge{
    position:absolute;
    top:18px;
    left:18px;
    padding:8px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    color:#fff;
    z-index:5;
    box-shadow:0 8px 18px rgba(0,0,0,.15);
}

.badge.bestseller{
    background:#ffb400;
}

.badge.chef{
    background:#ff8127;
}
/*==================================================
TRUSTED BY FOOD LOVERS
==================================================*/

.customer-trust{
    padding:100px 0;
    background:#ffffff;
}

.review-platforms{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin-top:60px;
}

.review-card{
    background:#fff;
    border-radius:22px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s ease;
    border:1px solid #f1f1f1;
}

.review-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.review-card h3{
    font-size:32px;
    margin-bottom:20px;
}

.rating{
    font-size:34px;
    font-weight:700;
    color:#ff8127;
    margin-bottom:20px;
}

.review-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.review-btn{
    display:inline-block;
    padding:14px 32px;
    border-radius:50px;
    background:#ff8127;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s ease;
}

.review-btn:hover{
    background:#e56e12;
    transform:translateY(-3px);
}

.direct-order-box{

    margin-top:70px;

    background:linear-gradient(135deg,#ff8127,#ff9a3d);

    border-radius:25px;

    padding:60px;

    text-align:center;

    color:#fff;
}

.direct-order-box h3{

    font-size:38px;

    margin-bottom:20px;
}

.direct-order-box p{

    max-width:700px;

    margin:0 auto 35px;

    line-height:1.9;

    font-size:18px;
}

.direct-order-btn{

    display:inline-block;

    padding:18px 45px;

    background:#fff;

    color:#ff8127;

    text-decoration:none;

    font-weight:700;

    border-radius:50px;

    transition:.35s ease;
}

.direct-order-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 40px rgba(0,0,0,.20);
}
.review-logo{
    height:42px;
    width:auto;
    margin-bottom:18px;
}

.review-card{
    text-align:center;
}
/*=================================
FOOTER
=================================*/

.footer{
    background:#17233c;
    color:#fff;
    padding:70px 0 25px;
    margin-top:80px;
}

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

.footer-logo{
    width:110px;
    margin-bottom:20px;
}

.footer h3{
    margin-bottom:20px;
    font-size:24px;
    color:#fff;
}

.footer p{
    color:#d8d8d8;
    line-height:1.8;
    margin-bottom:10px;
}

.footer-links{
    list-style:none;
}

.footer-links li{
    margin-bottom:15px;
}

.footer-links a{
    color:#d8d8d8;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#ff8127;
}

.footer-btn{
    display:inline-block;
    background:#ff8127;
    color:#fff;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.footer-btn:hover{
    background:#ff9c54;
    transform:translateY(-3px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:50px;
    padding-top:30px;
    text-align:center;
}

.footer-bottom p{
    margin-bottom:12px;
    color:#c9c9c9;
}
.footer a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:#ff8127;
}
/*=================================
MENU CATEGORIES
=================================*/

.menu-categories{
    padding:80px 0;
    background:#fff;
}

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

.category-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    padding:0;
    text-align:center;
    text-decoration:none;
    border:1px solid #ececec;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.category-card{
    overflow:hidden;
}

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

.category-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    transition:0.4s ease;
}
.category-card h3,
.category-card p{
    padding:0 20px;
}

.category-card h3{
    color:#17233c;
    font-size:24px;
    margin:15px 0 0;
    font-weight:700;
}
/*=================================
MENU ITEMS
=================================*/

.menu-section{
    padding:90px 0;
    background:#f9f9f9;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

/*=========================
MENU ITEM
=========================*/

.menu-item{
    background:#fff;
    border-radius:18px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
}

.menu-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.menu-icon{
    width:70px;
    height:70px;
    background:#fff5ec;
    color:#ff8127;
    font-size:34px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 20px;
}

.menu-item h3{
    font-size:22px;
    color:#17233c;
    margin-bottom:15px;
}

.menu-item p{
    font-size:15px;
    color:#666;
    line-height:1.7;
    margin-bottom:22px;
    min-height:90px;
}

.serving-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:8px 18px;
    margin:15px auto;

    background:#fff4e8;
    color:#ff7a1a;

    border-radius:30px;

    font-size:14px;
    font-weight:600;

    width:fit-content;
}

.menu-price{
    font-size:30px;
    font-weight:700;
    color:#ff8127;
    margin-bottom:20px;
}

.menu-item .order-btn{
    display:block;
    background:#ff8127;
    color:#fff;
    text-decoration:none;
    padding:14px;
    border-radius:50px;
    font-weight:600;
    transition:.35s;
}

.menu-item .order-btn:hover{
    background:#e96c14;
}

.menu-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;

    justify-content:space-between;

    min-height:430px;
}

.menu-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.menu-card img{
    width:60px;
    height:60px;
    object-fit:contain;
    margin:0 auto 18px;
    display:block;
}

.menu-content{
    flex:1;
}

.menu-content h3{
    font-size:24px;
    color:#17233c;
    margin-bottom:12px;
}

.menu-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.menu-bottom{
    margin-top:20px;
}

.menu-bottom .price{
    font-size:28px;
    color:#ff8127;
    font-weight:700;
}
/* ==========================
COMPACT MENU CARDS
========================== */

.compact-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin-top:40px;

}

.compact-card{

    background:#fff;

    border-radius:18px;

    padding:30px 20px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.compact-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.compact-icon{

    font-size:45px;

    margin-bottom:15px;

}

.compact-card h3{
    font-size:30px;
    font-weight:700;
    line-height:1.3;
    min-height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.compact-card p{

    color:#666;

    font-size:15px;

    min-height:45px;

}

.compact-price{

    font-size:32px;

    font-weight:700;

    color:#ff7a00;

    margin-top:20px;

}
/*=================================
TIFFIN PLANS
=================================*/

.tiffin-plans{
    padding:100px 0;
    background:#f8fafc;
}

.tiffin-plans .section-title{
    text-align:center;
    margin-bottom:60px;
}

.tiffin-plans .section-title span{
    display:inline-block;
    padding:10px 24px;
    background:#e8f7f5;
    color:#0b7a75;
    border-radius:50px;
    font-weight:600;
    margin-bottom:18px;
}

.tiffin-plans .section-title h2{
    font-size:48px;
    margin-bottom:20px;
}

.tiffin-plans .section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}
/* ==========================
   WHAT'S INCLUDED
========================== */

.included-section{
    padding:100px 0;
    background:#ffffff;
}

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

.included-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

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


/* ==========================
   STUDENT OFFER
========================== */

.student-offer{
    padding:60px 0 30px;
    background:#f7fff5;
}

.student-banner{

    background:linear-gradient(135deg,#28a745,#34c759);

    color:#fff;

    text-align:center;

    padding:45px;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.student-banner h2{

    font-size:42px;

    margin-bottom:20px;

}

.student-banner p{

    font-size:22px;

    line-height:1.8;

    margin-bottom:35px;

}

.student-banner strong{

    font-size:30px;

}

.student-banner .order-btn{

    background:#fff;

    color:#28a745;

}
/* ===========================
   CORPORATE HERO
=========================== */

.corporate-hero{

    height:80vh;

    background:
    linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)),
    url("../images/catering-events/corporate-catering-hero.png");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

}
/* ===========================
   CATERING SERVICES
=========================== */

.catering-services{

    padding:120px 0;

    background:#fff;

}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

    margin-top:60px;

}

.service-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.service-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.service-content{

    padding:30px;

}

.service-content h3{

    font-size:28px;

    margin-bottom:15px;

}

.service-content p{

    color:#666;

    line-height:1.8;

}
.service-content .order-btn{

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

    width:100%;
    max-width:260px;

    margin-top:25px;

}
/*==========================
TRUSTED BY
==========================*/

.trusted-by{
    padding:100px 0;
    background:#fff;
}

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

.trusted-box{
    background:#fff;
    padding:28px;
    border-radius:18px;
    text-align:center;
    font-weight:600;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.trusted-box:hover{
    transform:translateY(-8px);
}
/*==========================
DISCOVER SERVICES
==========================*/

.discover-services{
    padding:100px 0;
    background:#f8fafc;
}

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

.service-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.35s;

    display:flex;

    flex-direction:column;

}

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

.service-card h3{
    margin-bottom:20px;
}

.service-card p{

    margin-bottom:20px;

    line-height:1.8;

}
.contact-hero{
    position:relative;
    background:
        linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
        url("../images/contact/contact-hero.png") center/cover no-repeat;
    min-height:90vh;
    display:flex;
    align-items:center;
}
/*=========================
CONTACT PAGE
=========================*/

.contact-section{
    padding:100px 0;
    background:#fff;
}

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

.contact-card{

    background:#ffffff;

    border-radius:24px;

    padding:40px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    border:1px solid #eef2f7;

    transition:.35s ease;

}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(255,107,0,.18);

    border:1px solid rgba(255,107,0,.18);

}

.contact-card i{

    width:85px;

    height:85px;

    line-height:85px;

    font-size:34px;

    color:#ff6b00;

    background:#fff4ec;

    border-radius:50%;

    text-align:center;

    margin-bottom:25px;

    transition:.35s;

    box-shadow:0 10px 25px rgba(255,107,0,.15);

}

.contact-card:hover i{

    background:#ff6b00;

    color:#fff;

    transform:rotate(10deg) scale(1.12);

    box-shadow:0 18px 40px rgba(255,107,0,.35);

}

.contact-card h3{

    color:#17233c;

    font-size:24px;

    margin-bottom:18px;

    font-weight:700;

}

.contact-card p,
.contact-card a{

    color:#64748B;

    text-decoration:none;

    font-size:17px;

    line-height:1.8;

}
/* ==========================
MOBILE NAVIGATION
========================== */

@media (max-width:991px){

.header .container{
    position:relative;
}

.navbar{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    z-index:999;
}

.navbar.active{
    display:block;
}

.nav-links{
    flex-direction:column;
    gap:0;
}

.nav-links li{
    width:100%;
    border-bottom:1px solid #eee;
}

.nav-links a{
    display:block;
    padding:18px;
    text-align:center;
}

.menu-toggle{
    display:block;
    cursor:pointer;
    font-size:30px;
}

.header .order-btn{
    display:none;
}

}
.service-content{

    display:flex;

    flex-direction:column;

    height:100%;

}

.service-content .order-btn{

    margin-top:auto;

}