/* CSS RESET & BRAND VARIABLES */
:root {
    --primary-blue: #0b5a8c;
    --secondary-orange: #f29222;
    --dark-bg: #091923;
    --light-bg: #f4f8fa;
    --white: #ffffff;
    --text-dark: #22323d;
    --text-light: #607380;
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* NAVIGATION HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

header.scrolled {
    padding: 5px 0;
    background: rgba(9, 25, 35, 0.98);
}

header.scrolled .nav-link {
    color: var(--white);
}

header.scrolled .logo-text .blue-part {
    color: var(--white);
}

.nav-container {
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
}

.logo-text .blue-part {
    color: var(--primary-blue);
    transition: var(--transition);
}

.logo-text .orange-part {
    color: var(--secondary-orange);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-orange) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-orange);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-book {
    background: linear-gradient(135deg, var(--primary-blue), #1277b5);
    color: var(--white) !important;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(11, 90, 140, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition);
}

/* Logo flex container layout */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Logo image ani text madhli space */
    text-decoration: none;
}

/* Logo image styling */
.logo-img {
    height: 40px;
    /* Tumchya garje nusar height adjust kara */
    width: auto;
    /* Aspect ratio maintain rahil */
    object-fit: contain;
}

/* Logo text vertical alignment adjust karasathi */
.logo-text {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    /* Tumhi tumchya garje nusar badlu shakta */
}

/* HERO LAYER */
.hero {
    padding: 160px 5% 100px 5%;
    background: radial-gradient(circle at top right, rgba(242, 146, 34, 0.1), transparent),
        radial-gradient(circle at bottom left, rgba(11, 90, 140, 0.08), transparent);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
    }

    .hero-content {
        flex: 1;
        max-width: 55%;
    }

    .hero-image-wrapper {
        flex: 1;
        max-width: 40%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 991px) {
    .hero-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image-wrapper {
        max-width: 100%;
        margin-top: 40px;
    }
}

.hero-tagline {
    background-color: rgba(11, 90, 140, 0.1);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-title span {
    color: var(--secondary-orange);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
}

@media (max-width: 991px) {
    .hero-cta-group {
        justify-content: center;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-orange), #e88f23);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(242, 146, 34, 0.3);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--primary-blue), #1277b5);
}

.btn-secondary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 13px 33px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.hero-stats {
    margin-top: 50px;
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
}

@media (max-width: 991px) {
    .hero-stats {
        justify-content: center;
    }
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.main-phone-mockup {
    width: 100%;
    animation: float 6s ease-in-out infinite;
}

.floating-element {
    position: absolute;
    background: var(--white);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.fe-1 {
    top: 20%;
    left: -20px;
    animation: float 4s ease-in-out infinite alternate;
}

.fe-2 {
    bottom: 15%;
    right: -20px;
    animation: float 5s ease-in-out infinite alternate 1s;
}

.fe-1 i {
    color: var(--primary-blue);
    background-color: rgba(11, 90, 140, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.fe-2 i {
    color: var(--secondary-orange);
    background-color: rgba(242, 146, 34, 0.1);
    padding: 10px;
    border-radius: 10px;
}

/* TRIPLE CORE BANNER */
.core-features {
    background-color: var(--light-bg);
    padding: 60px 5%;
}

.core-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .core-wrapper {
        grid-template-columns: 1fr;
    }
}

.core-box {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.core-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(11, 90, 140, 0.1);
}

.core-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(11, 90, 140, 0.08);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.8rem;
}

/* SERVICES */
.services {
    padding: 100px 5%;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--secondary-orange);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 40px 30px;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.service-card:hover * {
    color: var(--white) !important;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.service-link {
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
}

/* HOW IT WORKS */
.how-it-works {
    padding: 100px 5%;
    background-color: var(--light-bg);
}

.step-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
}

/* BOOKING SECTION */
.booking-section {
    padding: 100px 5%;
    background: linear-gradient(rgba(9, 25, 35, 0.9), rgba(9, 25, 35, 0.9)), url('https://images.unsplash.com/photo-1512428559087-560fa5ceab42?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.booking-container {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

@media (max-width: 768px) {
    .booking-form {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .form-group.full-width {
        grid-column: span 1;
    }
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    outline: none;
}

.form-group select option {
    background-color: var(--dark-bg);
}

.btn-submit {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--secondary-orange), #e88f23);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .btn-submit {
        grid-column: span 1;
    }
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--primary-blue), #1277b5);
}

/* REVIEWS & TESTIMONIALS */
.testimonials {
    padding: 100px 5%;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* FOOTER ARCHITECTURE */
footer {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 5% 30px 5%;
    border-top: 5px solid var(--secondary-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--secondary-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px; /* Thodi gap vadhavli layout premium disnyasathi */
}

.footer-links a {
    text-decoration: none;
    /* Soft Platinum Silver Gray Color - Jo dark bg var ekdam premium disto */
    color: #b0c4de; 
    font-size: 0.95rem;
    font-weight: 400;
    display: inline-block; /* Smooth padding animation sathi compulsory ahe */
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover kelyavar premium effect */
.footer-links a:hover {
    /* Tumcha Brand Orange Core with Neon Glow Text Effect */
    color: var(--secondary-orange); 
    padding-left: 8px; /* Smooth padding movement */
    text-shadow: 0 0 10px rgba(242, 146, 34, 0.5); /* Soft neon orange glow */
}

/* Ek barik modern dash indicator line link chya aadhi disnyasathi (Optional continuous effect) */
.footer-links a::before {
    content: '—';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--secondary-orange);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    left: -5px;
    opacity: 1;
}

/* Social Links Flex Container */
.social-links {
    display: flex;
    gap: 15px;         /* Icons madhli proper space */
    margin-top: 25px;   /* Varil text pasun thodi space */
}

/* Base Style for each Social Icon Link Element */
.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    
    /* Premium Look: Transparent Slate Circle Border Layout */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%; /* Perfect Round Shape */
    
    /* Premium Soft Steel Blue Color */
    color: #b0c4de; 
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Smooth Icon pop animation on hover */
.social-links a i {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-links a:hover i {
    transform: scale(1.15) rotate(8deg); /* Halkasa tilt ani zoom effect */
}

/* 🌟 DYNAMIC BRAND HOVER COLORS WITH GLOW EFFECTS 🌟 */

/* 1. Facebook Hover Style */
.social-links a:has(.fa-facebook-f):hover {
    background-color: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
}

/* 2. X (Twitter) Hover Style */
.social-links a:has(.fa-x-twitter):hover {
    background-color: #111111;
    border-color: #333333;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* 3. Instagram Instagram Radial Gradient Hover Style */
.social-links a:has(.fa-instagram):hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aec 90%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(214, 36, 159, 0.5);
}

/* 4. LinkedIn Hover Style */
.social-links a:has(.fa-linkedin-in):hover {
    background-color: #0077b5;
    border-color: #0077b5;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.5);
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info-list i {
    color: var(--secondary-orange);
    margin-top: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ANIMATION KEYFRAMES */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* RESPONSIVE MOBILE MENU */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 0;
        gap: 25px;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }
}

/* Footer logo cha wrapper container */
.footer-logo-container {
    display: flex;
    align-items: center; /* Image ani text perfectly vertical center rahtil */
    gap: 15px;           /* Size mothi kelyamule gap pan halke-se vadhavli */
    margin-bottom: 20px;
}

/* Updated Footer Logo Image Size */
.footer-logo-img {
    height: 150px;        /* 35px varun direct 55px keli ahe jyamule image vyavasthit mothi disel */
    width: auto;         /* Image stretch honar nahi, ratio barobar rahil */
    object-fit: contain;
    border-radius: 4px;  /* WhatsApp image cha square shape premium disasathi halkasa corner round effect */
}

/* Text size adjustment (Optional) */
.footer-logo-container .logo-text {
    display: flex;
    align-items: center;
    font-size: 26px;     /* Image mothi kelyamule text chi size pan thodi barobar match keli ahe */
    margin-bottom: 0;
}




.location-wrapper {
    margin-top: 20px;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 24px;
    background: #ff6b00;
    color: #fff !important;

    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    border-radius: 20px;
    transition: all 0.3s ease;
}

.location-btn:hover {
    background: #e65c00;
    transform: translateY(-3px);
}

.location-btn i {
    font-size: 16px;
}