/* 
  Rajubhai Dhoklawala - Premium Theme CSS
*/

/* Variables */
:root {
    --primary-color: #0A3A8A; /* Royal Blue */
    --secondary-color: #ffffff;
    --accent-color: #D4AF37; /* Gold */
    --accent-dark: #b5952f;
    --bg-light: #fffdf5;
    --text-main: #333333;
    --text-muted: #666666;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.3s ease-in-out;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(10, 58, 138, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

ul {
    list-style: none;
}

/* Typography & Utilities */
.text-center { text-align: center; }
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    color: var(--primary-color);
}
.white .section-title, .white p {
    color: var(--secondary-color);
}
.title-divider {
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin-bottom: 25px;
}
.title-divider.center {
    margin: 0 auto 25px auto;
}
.section-desc {
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: var(--text-muted);
    font-size: 1.1rem;
}
section {
    padding: 80px 0;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--accent-dark);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}
.btn-secondary:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

.btn-outline {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: transparent;
}
.btn-outline:hover {
    background-color: var(--accent-color);
    color: #fff;
}
.btn-outline.light {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}
.btn-outline.light:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* Sticky Buttons */
.sticky-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}
.sticky-btn:hover {
    transform: scale(1.1);
}
.whatsapp-btn { background-color: #25D366; }
.call-btn { background-color: var(--primary-color); }

/* Header / Navbar */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 1000;
    transition: var(--transition);
    padding: 15px 0;
}
.navbar.scrolled {
    padding: 10px 0;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    text-align: center;
    flex: 1;
    justify-content: center;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.nav-links {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: flex-start;
}
.nav-cta-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 5px;
    letter-spacing: 1px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-cta {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--primary-color);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.mobile-menu.active {
    display: flex;
}
.mobile-menu a {
    color: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-weight: 500;
    text-align: center;
}
.mobile-menu a:hover {
    background-color: rgba(255,255,255,0.05);
    color: var(--accent-color);
}

/* 1. Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 80px; /* Offset for navbar */
    overflow: hidden;
}
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate linear;
    filter: brightness(0.85) contrast(1.1);
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 58, 138, 0.7), rgba(0, 0, 0, 0.6));
    z-index: -1;
}
.hero-content {
    max-width: 800px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(10, 58, 138, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 20px;
}
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 600;
}
.hero-title {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}
.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}
.hero-phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}
.hero-phone i {
    margin-right: 10px;
}

/* 2. About Section */
.about {
    background-color: #fff;
}
.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.about-text {
    flex: 1;
}
.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}
.about-text strong {
    color: var(--primary-color);
}
.about-image {
    flex: 1;
    position: relative;
    padding: 20px;
}
.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: block;
    position: relative;
    z-index: 2;
}
.image-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 3px solid var(--accent-color);
    border-radius: 10px;
    z-index: 1;
    transform: translate(20px, -20px);
}

/* 3. Specialties Sections */
.specialties {
    background-color: var(--bg-light);
}
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}
.specialty-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.4);
}
.specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.specialty-card .img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.specialty-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.specialty-card:hover img {
    transform: scale(1.1);
}
.specialty-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10,58,138,0.8), transparent);
    opacity: 0;
    transition: var(--transition);
}
.specialty-card:hover .overlay {
    opacity: 1;
}
.card-content {
    padding: 20px;
    text-align: center;
}
.card-content h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

/* 4. Why Us */
.why-us {
    background-color: var(--primary-color);
    color: #fff;
    position: relative;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50 50l50-50v100h-100v-100z" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
}
.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}
.feature-box {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}
.feature-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
}
.feature-box .icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.feature-box h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.feature-box p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Google Reviews */
.reviews {
    background-color: #fff;
}
.review-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) var(--bg-light);
}
.review-carousel::-webkit-scrollbar {
    height: 8px;
}
.review-carousel::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}
.review-carousel::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}
.review-card {
    flex: 0 0 350px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    scroll-snap-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-color);
}
.review-card .stars {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.review-card p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.review-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* 5 & 6. Order & Service Areas */
.order-areas {
    background-color: var(--bg-light);
}
.order-container {
    display: flex;
    gap: 40px;
}
.order-box, .areas-box {
    flex: 1;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}
.order-box h2, .areas-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.order-box p, .areas-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
}
.order-list {
    margin-bottom: 30px;
}
.order-list li {
    margin-bottom: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.order-list li i {
    color: var(--accent-color);
}
.tagline {
    font-size: 1.2rem;
    color: var(--primary-color) !important;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}
.tag {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(10,58,138,0.1);
    transition: var(--transition);
}
.tag:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* 7. Location */
.location {
    background-color: #fff;
}
.location-wrapper {
    display: flex;
    gap: 40px;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.contact-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background-color: var(--primary-color);
    color: #fff;
}
.info-item {
    display: flex;
    gap: 20px;
}
.info-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-top: 5px;
}
.info-item h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.info-item p {
    color: rgba(255,255,255,0.9);
}
.map-container {
    flex: 1.5;
    min-height: 400px;
}

/* Trusted Section */
.trusted {
    background-color: #fff;
    padding: 80px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.trusted-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.trusted-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}
.trusted-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    color: #111;
}
.trusted-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    font-family: var(--font-body);
}

@media (max-width: 480px) {
    .trusted-item { min-width: 130px; }
    .trusted-icon i { font-size: 40px !important; }
}

/* 8. Footer */
footer {
    background-color: #051c44; /* Darker Royal Blue */
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-logo {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 20px;
}
.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}
.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}
.footer-col h3 {
    color: var(--accent-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}
.footer-col ul li {
    margin-bottom: 15px;
}
.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}
.footer-bottom {
    background-color: #03122c;
    padding: 25px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .about-container { flex-direction: column; }
    .image-accent { display: none; }
    .order-container { flex-direction: column; }
    .location-wrapper { flex-direction: column; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .hide-mobile, .nav-cta-container { display: none; }
    .logo { justify-content: flex-start; }
    .logo-text { font-size: 1.5rem; }
    .mobile-menu-btn { display: block; }

    .hero-title { font-size: 2.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 300px; text-align: center; }
    
    .section-title { font-size: 2rem; }
    section { padding: 50px 0; }
    
    .about-container { gap: 30px; }
    .order-box, .areas-box { padding: 30px 20px; }
    .contact-info { padding: 30px 20px; }

    /* Features Grid Mobile */
    .features-grid { margin-top: 30px; gap: 20px; }
    .feature-box { flex: 1 1 100%; max-width: 100%; padding: 20px 15px; }
    .feature-box .icon { font-size: 30px; margin-bottom: 15px; }

    /* Specialties Grid Responsive Layout */
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .specialty-card .img-wrapper { height: 120px; }
    .card-content { padding: 10px; }
    .card-content h3 { font-size: 1rem; }

    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .footer-col h3::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    
    .sticky-buttons { bottom: 20px; right: 20px; }
    .sticky-btn { width: 50px; height: 50px; font-size: 20px; }
}

@media (max-width: 480px) {
    .logo-text { font-size: 1.3rem; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; letter-spacing: 2px; }
    .section-title { font-size: 1.6rem; }
    .specialties-grid { gap: 10px; }
    .specialty-card .img-wrapper { height: 100px; }
    .card-content h3 { font-size: 0.9rem; }
    
    .review-card { flex: 0 0 280px; padding: 20px; }
}

/* --- New Added Sections --- */

/* Top Banner */
.top-banner {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.9rem;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

/* Trust Stats */
.trust-stats {
    background-color: var(--accent-color);
    padding: 40px 0;
    color: #fff;
}
.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}
.stat-item { flex: 1; min-width: 200px; }
.stat-item .stat-icon { font-size: 30px; margin-bottom: 10px; }
.stat-item h3 { font-size: 2rem; color: #fff; margin-bottom: 5px; }

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 15px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Menu Section */
.menu-categories {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.category-pill {
    padding: 10px 25px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.category-pill.active, .category-pill:hover {
    background: var(--primary-color);
    color: #fff;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.menu-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.menu-card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}
.menu-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.menu-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}
.menu-card-content .price {
    font-size: 1.2rem;
    color: var(--accent-dark);
    font-weight: 700;
    margin-bottom: 10px;
}
.menu-card-content .desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}
.btn-add {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-dark);
    padding: 10px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}
.btn-add:hover {
    background: var(--accent-color);
    color: #fff;
}

/* Delivery Apps Integration */
.delivery-apps {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.btn-zomato, .btn-swiggy {
    flex: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    min-width: 200px;
    margin-top: 20px;
}
.btn-zomato { background-color: #cb202d; }
.btn-zomato:before { content: 'Zomato'; display: inline; font-weight: 800; font-style: italic; margin-right: 8px; font-size: 1.2rem; }
.btn-swiggy { background-color: #fc8019; }
.btn-swiggy:before { content: 'Swiggy'; display: inline; font-weight: 800; margin-right: 8px; font-size: 1.2rem; }

/* Instagram Gallery */
.gallery {
    background-color: var(--bg-light);
}
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.insta-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.insta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center; justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.insta-overlay i {
    color: #fff;
    font-size: 40px;
}
.insta-item:hover img { transform: scale(1.1); filter: blur(2px); }
.insta-item:hover .insta-overlay { opacity: 1; }

@media (max-width: 768px) {
    .insta-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stats-grid { flex-direction: column; }
    .top-banner { font-size: 0.8rem; }
}
