/* ==========================================
   Global Variables (Theming)
   ========================================== */
:root {
    --primary-orange: #FF7F00; 
    --primary-green: #00B050;  
    --dark-bg: #0b0f19;        
    --glass-bg: rgba(11, 15, 25, 0.85); 
    --light-bg: #ffffff; /* બોડી માટે નવો વાઈટ કલર */
    --text-dark: #222222; /* લાઈટ થીમ માટે ડાર્ક ટેક્સ્ટ */
    --text-light: #ffffff;
    --text-muted: #a0aabf;
    --text-muted-dark: #555555; /* લાઈટ થીમ માટે */
    --font-main: 'Poppins', sans-serif;
    --transition-fast: all 0.3s ease;
}

/* ==========================================
   Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--light-bg); /* બેકગ્રાઉન્ડ વાઈટ કર્યું */
    color: var(--text-dark); /* ટેક્સ્ટ ડાર્ક કર્યું */
    height: 100%;
    margin: 0;
}

/* હેડર, ફૂટર અને ફ્લોટિંગ બટનમાં ડાર્ક થીમ જાળવી રાખવા ટેક્સ્ટ સફેદ ફિક્સ કરો (આ નવું ઉમેર્યું છે) */
header, .floating-glass-footer, .floating-action-menu {
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-green {
    color: var(--primary-green);
}

/* ==========================================
   Header & Glassmorphism Styles
   ========================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
    padding: 25px 0; 
}

header.transparent-header {
    background: transparent;
    box-shadow: none;
}

header.glass-header {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px 0; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================
   Logo & Brand Layout
   ========================================== */
.brand-link {
    display: flex;
    align-items: center;
    gap: 12px; 
}

.brand-logo {
    height: 48px; 
    width: auto;
    object-fit: contain;
}

.brand-text h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.brand-text p {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 2px;
}

/* ==========================================
   Navigation Menu
   ========================================== */
.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu ul li a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-fast);
}

.nav-menu ul li a:hover {
    color: var(--primary-orange);
}

/* ==========================================
   Equal Width Buttons (Smaller & Balanced)
   ========================================== */
.header-btn {
    display: flex;
    gap: 10px; /* બટન વચ્ચેની જગ્યા થોડી ઘટાડી */
    align-items: center;
}

.btn-primary, .btn-whatsapp {
    padding: 8px 0; /* પેડિંગ (ઊંચાઈ) ઘટાડી */
    width: 135px; /* પહોળાઈ 155px થી ઘટાડીને 135px કરી */
    border-radius: 6px; 
    font-size: 13px; /* ફોન્ટ સાઈઝ નાની કરી */
    font-weight: 500; /* ફોન્ટ વેઇટ (જાડાઈ) થોડી નોર્મલ કરી */
    transition: var(--transition-fast);
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* આઈકન અને ટેક્સ્ટ વચ્ચેની જગ્યા ઘટાડી */
    
    color: #fff;
}

/* Call Now બટન (Orange) */
.btn-primary {
    background-color: var(--primary-orange);
}
.btn-primary:hover {
    background-color: #e67300;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 127, 0, 0.20);
}

/* Whatsapp Us બટન (Green) */
.btn-whatsapp {
    background-color: var(--primary-green);
}
.btn-whatsapp:hover {
    background-color: #009945;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 176, 80, 0.20);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
}

/* Responsive - Mobile & Tablet */
@media (max-width: 991px) {
    .nav-menu, .header-btn {
        display: none; 
    }
    .mobile-toggle {
        display: flex;
    }
    .brand-logo {
        height: 40px;
    }
    .brand-text h2 {
        font-size: 18px;
    }
}


/* ==========================================
   Footer (Floating Island Glass & Hover Effects)
   ========================================== */
.floating-glass-footer {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin: 40px 20px 20px 20px; 
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 40px 0 20px 0; /* પેડિંગ સેટ કર્યું */
    transition: all 0.4s ease; /* એનિમેશન માટે */
}

/* આખા ફૂટર પર Hover એનિમેશન */
.floating-glass-footer:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 176, 80, 0.15); /* હળવો ગ્રીન ગ્લો */
    border-color: rgba(0, 176, 80, 0.3);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.3fr; /* સ્પેસિંગ બેલેન્સ કર્યું */
    gap: 30px;
    margin-bottom: 30px;
}

.links-col {
    justify-self: center; /* ક્વિક લિંક્સને બરાબર વચ્ચે સેટ કરવા */
}

.footer-col h4 {
    color: var(--primary-orange);
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 600;
}

.brand-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 15px; /* લોગોથી નીચે જગ્યા */
}

/* Quick Links Animation */
.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition-fast);
    display: inline-block;
}

.links-col ul li a:hover {
    color: var(--primary-green);
    transform: translateX(6px); 
}

/* Contact Info Links Animation */
.contact-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition-fast);
    line-height: 1.6;
}

.contact-link i {
    color: var(--primary-green);
    margin-top: 4px;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: #fff; 
}

.contact-link:hover i {
    color: var(--primary-orange); 
    transform: scale(1.2); 
}

/* Footer Bottom (Copyright & Designed By) */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.designer-link {
    color: var(--primary-green);
    font-weight: 600;
    transition: var(--transition-fast);
}

.designer-link:hover {
    color: var(--primary-orange);
    text-shadow: 0 0 8px rgba(255, 127, 0, 0.5); 
}


/* ==========================================
   Floating Action Button (Sticky Contact)
   ========================================== */
.floating-action-menu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.fab-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    pointer-events: none; /* છુપાયેલું હોય ત્યારે ક્લિક ન થાય */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ફક્ત ડેસ્કટોપ (માઉસ) પર જ Hover ઇફેક્ટ લાગુ પડશે */
@media (hover: hover) {
    .floating-action-menu:hover .fab-options {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }
}

/* મોબાઈલ (ટચ) માટે JS દ્વારા લગાવાતો ક્લાસ */
.floating-action-menu.show-options .fab-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.fab-item, .fab-main {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.fab-whatsapp { background-color: var(--primary-green); }
.fab-call { background-color: var(--primary-orange); }
.fab-main { 
    background-color: var(--dark-bg); 
    border: 2px solid var(--primary-orange); 
    font-size: 22px;
}

.fab-item:hover, .fab-main:hover { 
    transform: scale(1.1); 
}



/* ==========================================
   Responsive - Mobile & Tablet Settings
   ========================================== */
@media (max-width: 991px) {
    
    /* 1. Mobile Menu Fix (Removed display: none clash) */
    .header-btn {
        display: none; 
    }
    
    .nav-menu {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: rgba(11, 15, 25, 0.98); /* ડાર્ક બેકગ્રાઉન્ડ */
        border-bottom: 2px solid var(--primary-orange);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: all 0.3s ease;
        z-index: 998;
    }
    
    .nav-menu.mobile-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        text-align: left; /* મેનુ પણ ડાબી બાજુ સેટ કર્યું */
        padding: 10px 0;
    }
    
    .nav-menu ul li a {
        display: block;
        padding: 15px 25px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .brand-text h2 {
        font-size: 18px;
    }

    /* 2. Footer Mobile Fix (One Column & Left Aligned) */
    .floating-glass-footer {
        margin: 20px 15px;
        padding: 30px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr; /* બધું એક જ કોલમમાં આવશે */
        gap: 35px;
        text-align: left; /* બધું ડાબી બાજુ સેટ થશે */
    }
    
    .links-col {
        justify-self: start; /* ક્વિક લિંક્સને વચ્ચેથી ડાબી બાજુ લીધી */
    }
    
    .contact-link {
        justify-content: flex-start; /* આઈકન અને ટેક્સ્ટ ડાબી બાજુ */
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start; /* કોપીરાઈટ ડાબી બાજુ */
        gap: 12px;
        text-align: left;
    }

    /* 3. Floating Button Fix */
    .floating-action-menu {
        bottom: 35px; 
        right: 20px;
    }
    
    .fab-item, .fab-main {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}


/* ==========================================
   Hero Section (Bento Grid Layout - Light Theme)
   ========================================== */
.hero-bento {
    padding: 160px 0 80px; 
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Light Card Style */
.bento-item {
    background: #ffffff; 
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05); 
    transition: var(--transition-fast);
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 176, 80, 0.3);
    box-shadow: 0 15px 35px rgba(0, 176, 80, 0.1);
}

/* Main Box */
.main-box {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.badge {
    background: rgba(255, 127, 0, 0.15);
    color: var(--primary-orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Adjusted H1 & Justify */
.main-box h1 {
    font-size: 34px; 
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: justify; 
    color: var(--text-dark);
}

/* Adjusted Description & Justify */
.main-box p {
    font-size: 16px;
    color: var(--text-muted-dark); 
    line-height: 1.7;
    margin-bottom: 35px;
    text-align: justify; 
}

/* Buttons Group */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.btn-explore {
    background: var(--primary-green);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.btn-explore:hover {
    background: #009945;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 176, 80, 0.3);
}

/* Elegant Ghost Buttons */
.btn-ghost {
    background: transparent;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.call-ghost {
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
}

.call-ghost:hover {
    background: var(--primary-orange);
    color: #fff;
}

.wa-ghost {
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
}

.wa-ghost:hover {
    background: var(--primary-green);
    color: #fff;
}

/* Small Boxes */
.small-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
}

.small-box i {
    font-size: 32px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.small-box h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

.box-desc {
    font-size: 13px;
    color: var(--text-muted-dark);
    margin-top: 8px;
}

.box-1 { 
    grid-column: 2 / 4; 
    grid-row: 1 / 2; 
    flex-direction: row; 
    align-items: center; 
    gap: 25px;
}
.box-1 i { margin-bottom: 0; font-size: 45px;}
.box-2 { grid-column: 2 / 3; grid-row: 2 / 3; }
.box-3 { grid-column: 3 / 4; grid-row: 2 / 3; }

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-bento { padding: 120px 0 60px; min-height: auto; }
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .main-box { grid-column: 1 / -1; padding: 35px 25px; }
    .main-box h1 { font-size: 26px; }
    .box-1, .box-2, .box-3 { grid-column: 1 / -1; align-items: center; text-align: center; flex-direction: column; }
    .box-1 i { margin-bottom: 15px;}
    .hero-cta-group { justify-content: center; }
}