/* ==========================================================================
   TOTAL SOLUTIONS - Public Website Stylesheet
   ========================================================================== */

/* Design System Variables */
:root {
    --primary: #fdb813; /* Vikram Solar Yellow */
    --primary-hover: #e5a506;
    --primary-light: rgba(253, 184, 19, 0.12);
    
    --secondary: #00a859; /* Eco Green */
    --secondary-hover: #008a47;
    
    --bg-dark: #071b3d; /* Vikram Deep Corporate Navy */
    --bg-card: #0d2754; /* Navy card */
    --bg-light: #f4f7fa; /* Soft slate grey-blue body */
    --bg-card-light: #ffffff;
    
    --text-dark: #071b3d; /* Dark Navy text */
    --text-light: #ffffff;
    --text-muted: #526685; /* Slate blue */
    --text-muted-light: #a0b2cc; /* Lighter slate blue */
    
    --border-light: #e1e7f0;
    --border-dark: rgba(255, 255, 255, 0.05);
    
    --success: #00a859;
    --danger: #ef4444;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow: 0 8px 30px rgba(7, 27, 61, 0.04);
    --shadow-lg: 0 16px 45px rgba(7, 27, 61, 0.08);
    
    --container-width: 1200px;
}

/* Base resets & styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Top Info Bar */
.top-bar {
    background-color: var(--bg-dark);
    color: var(--text-muted-light);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-dark);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 20px;
}

.top-info span i {
    color: var(--primary);
    margin-right: 5px;
}

.top-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-socials a:hover {
    color: var(--primary);
}

.admin-login-link {
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary) !important;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

.admin-login-link:hover {
    background: var(--primary);
    color: var(--bg-dark) !important;
}

/* Navigation Header */
.header {
    position: absolute;
    left: 0;
    width: 100%;
    background-color: transparent;
    backdrop-filter: none;
    z-index: 100;
    box-shadow: none;
    border-bottom: none;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Scrolled sticky state */
.header.scrolled {
    position: fixed;
    top: 0;
    background-color: rgba(7, 27, 61, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-dark);
    border-radius: 10px;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(253, 184, 19, 0.25);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-light);
}

.logo-text span {
    color: var(--primary);
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0.85;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-hover);
    opacity: 1;
}

.btn-nav-booking {
    background-color: var(--bg-dark);
    color: var(--primary) !important;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-nav-booking:hover {
    background-color: var(--primary);
    color: var(--bg-dark) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    position: relative;
    transition: background-color 0.3s;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: transform 0.3s;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Hero Section */
.hero-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    padding: 100px 0 140px;
    overflow: hidden;
}

/* Vikram Corporate Slider Mockup */
.hero-corporate {
    padding: 140px 0 180px;
    position: relative;
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 27, 61, 0.94) 0%, rgba(7, 27, 61, 0.8) 100%),
                repeating-linear-gradient(45deg, rgba(253, 184, 19, 0.015) 0px, rgba(253, 184, 19, 0.015) 1px, transparent 1px, transparent 10px),
                repeating-linear-gradient(-45deg, rgba(0, 168, 89, 0.015) 0px, rgba(0, 168, 89, 0.015) 1px, transparent 1px, transparent 10px);
    z-index: 1;
}

.hero-grid-corp {
    position: relative;
    z-index: 10;
}

.hero-content-corp {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-corp h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.hero-content-corp p {
    font-size: 18px;
    color: var(--text-muted-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge-green {
    background: rgba(0, 168, 89, 0.15);
    border: 1px solid rgba(0, 168, 89, 0.3);
    color: var(--secondary) !important;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot-indicator.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

.hero-bg-accent {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0) 70%);
    top: -100px;
    right: -100px;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted-light);
    margin-bottom: 35px;
    max-width: 560px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    margin-bottom: 45px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item h3 {
    font-size: 32px;
    color: var(--primary);
}

.stat-item span {
    font-size: 13px;
    color: var(--text-muted-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-dark);
}

/* Hero Visual Card */
.hero-visual {
    position: relative;
}

.visual-card {
    background: rgba(30, 41, 59, 0.65);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.visual-header {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.red { background-color: var(--danger); }
.yellow { background-color: var(--primary); }
.green { background-color: var(--success); }

.visual-body h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.visual-body p {
    font-size: 14px;
    color: var(--text-muted-light);
    margin-bottom: 20px;
}

.quick-selectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quick-sel-btn {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    font-family: inherit;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.quick-sel-btn:hover {
    background-color: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
    color: var(--primary);
    transform: translateY(-2px);
}

.floating-badge {
    position: absolute;
    background-color: #ffffff;
    color: var(--bg-dark);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 20;
    max-width: 200px;
}

.floating-badge h4 {
    font-size: 14px;
    color: var(--text-dark);
}
.floating-badge p {
    font-size: 11px;
    color: var(--text-muted);
}
.floating-badge .icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: var(--primary-light);
    color: var(--primary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.badge-1 {
    top: -20px;
    left: -30px;
    animation: float 6s ease-in-out infinite;
}

.badge-2 {
    bottom: -25px;
    right: -10px;
    animation: float 6s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Features & Stats Panel (Vikram Solar Style) */
.stats-panel {
    background-color: #ffffff;
    box-shadow: 0 15px 40px rgba(7, 27, 61, 0.05);
    border-radius: 16px;
    max-width: calc(var(--container-width) - 40px);
    margin: -60px auto 0;
    position: relative;
    z-index: 30;
    border: 1px solid var(--border-light);
}

.stats-grid-corp {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 40px;
    gap: 30px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon-wrap {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary-hover);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.stat-divider-corp {
    width: 1px;
    height: 50px;
    background-color: var(--border-light);
}

/* Sections Global */
.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.sub-title {
    display: inline-block;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Business Verticals (Product Cards Style) */
.verticals-section {
    background-color: #ffffff;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.vertical-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.vertical-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 168, 89, 0.2);
}

.vertical-image-placeholder {
    height: 200px;
    position: relative;
    overflow: hidden;
}

/* Virtual Backgrounds representing services */
.solar-vbg {
    background: linear-gradient(135deg, rgba(7, 27, 61, 0.1), rgba(7, 27, 61, 0.7)),
                repeating-linear-gradient(90deg, rgba(253, 184, 19, 0.2) 0px, rgba(253, 184, 19, 0.2) 1px, transparent 1px, transparent 20px),
                linear-gradient(45deg, #00a859 0%, #071b3d 100%);
}

.electrical-vbg {
    background: linear-gradient(135deg, rgba(7, 27, 61, 0.1), rgba(7, 27, 61, 0.7)),
                repeating-linear-gradient(45deg, rgba(253, 184, 19, 0.15) 0px, rgba(253, 184, 19, 0.15) 2px, transparent 2px, transparent 15px),
                linear-gradient(135deg, #f97316 0%, #071b3d 100%);
}

.plumbing-vbg {
    background: linear-gradient(135deg, rgba(7, 27, 61, 0.1), rgba(7, 27, 61, 0.7)),
                radial-gradient(circle, rgba(59, 130, 246, 0.3) 10%, transparent 60%),
                linear-gradient(135deg, #3b82f6 0%, #00a859 100%);
}

.cctv-vbg {
    background: linear-gradient(135deg, rgba(7, 27, 61, 0.1), rgba(7, 27, 61, 0.7)),
                repeating-radial-gradient(circle, rgba(139, 92, 246, 0.15) 0px, rgba(139, 92, 246, 0.15) 5px, transparent 5px, transparent 25px),
                linear-gradient(135deg, #8b5cf6 0%, #071b3d 100%);
}

.backup-vbg {
    background: linear-gradient(135deg, rgba(7, 27, 61, 0.1), rgba(7, 27, 61, 0.7)),
                repeating-linear-gradient(0deg, rgba(236, 72, 153, 0.15) 0px, rgba(236, 72, 153, 0.15) 4px, transparent 4px, transparent 12px),
                linear-gradient(135deg, #ec4899 0%, #fdb813 100%);
}

.vertical-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(7, 27, 61, 0.92) 0%, rgba(7, 27, 61, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.vertical-tag {
    background-color: var(--secondary);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-bottom: 8px;
}

.vertical-overlay h3 {
    color: #ffffff;
    font-size: 20px;
    font-family: var(--font-heading);
}

.vertical-body {
    padding: 30px;
}

.vertical-body p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 65px;
}

.vertical-list {
    list-style: none;
    margin-bottom: 25px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.vertical-list li {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-vertical {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    transition: var(--transition);
}

.btn-vertical:hover {
    color: var(--primary-hover);
    transform: translateX(4px);
}

/* Sustainability & KPI Section Styling */
.sustainability-section {
    background-color: var(--bg-light);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.kpi-block {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kpi-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kpi-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.kpi-bar {
    height: 6px;
    background-color: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
}

.kpi-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 3px;
}

.sustainability-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-wrapper {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.visual-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--secondary);
    top: 15px;
    left: -15px;
    border-radius: 20px;
    z-index: 1;
}

.sustain-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: relative;
    z-index: 10;
    text-align: center;
}

.sustain-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.sustain-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Booking Widget Card */
.booking-section {
    background-color: #ffffff;
}

.booking-card {
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
}

.booking-info-pane {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-info-pane h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 15px;
}

.booking-info-pane p {
    color: var(--text-muted-light);
    margin-bottom: 40px;
}

.info-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-badge i {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.booking-form-pane {
    padding: 50px;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: var(--transition);
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-group textarea {
    resize: vertical;
}

.form-response {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    display: none;
}
.form-response.success {
    background-color: rgba(16, 185, 129, 0.15);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: block;
}
.form-response.error {
    background-color: rgba(239, 68, 68, 0.15);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block;
}

/* Contact Section styles */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow);
    align-items: center;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--primary-light);
    color: var(--primary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.info-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.info-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.contact-form-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Footer layout */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-muted-light);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.logo-light .logo-text {
    color: #ffffff;
}

.footer-desc {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted-light);
    font-size: 16px;
}

.footer-social-icons a:hover {
    background-color: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.footer-links h3, .footer-contact h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

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

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

.footer-links a {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a i {
    font-size: 10px;
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact p i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding: 30px 0;
    font-size: 13px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Success/Toast Popup Alert */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ffffff;
    color: var(--text-dark);
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-width: 320px;
    max-width: 420px;
    z-index: 1000;
    border-left: 5px solid var(--primary);
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toast-content i {
    font-size: 24px;
}

.toast-message h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.toast-message p {
    font-size: 13px;
    color: var(--text-muted);
}

.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 16px;
}

.toast-close:hover {
    color: var(--text-dark);
}

/* Toast Dialects */
.toast.toast-success { border-left-color: var(--success); }
.toast.toast-success i { color: var(--success); }
.toast.toast-error { border-left-color: var(--danger); }
.toast.toast-error i { color: var(--danger); }

/* Brand Enhancements Styles */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partners-section {
    background-color: #ffffff;
    padding: 50px 0;
    border-bottom: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
}

.partners-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-align: center;
}

.partners-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.4;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.partner-logo i {
    font-size: 22px;
}

.partner-logo:hover {
    opacity: 0.95;
    color: var(--bg-dark);
    transform: scale(1.05);
}

.testimonials-section {
    background-color: var(--bg-light);
}

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

.testimonial-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.rating {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 15px;
}

.testimonial-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.client-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.client-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.faq-section {
    background-color: #ffffff;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1.5px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}

.faq-question i {
    font-size: 14px;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.05);
}

.faq-item.active .faq-question {
    color: var(--primary-hover);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-hover);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding-top: 40px;
    }
    .hero-content h1 {
        font-size: 42px;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #071b3d;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 20px;
        display: none;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 15px;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 8px 0;
    }

    .btn-nav-booking {
        display: inline-block;
        width: 100%;
        text-align: center;
    }
    
    .header.active .hamburger {
        background-color: transparent;
    }
    .header.active .hamburger::before {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .header.active .hamburger::after {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .top-bar {
        display: none;
    }

    /* Stats Panel Mobile Alignment Optimization */
    .stats-grid-corp {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        padding: 30px 20px;
    }
    .stat-divider-corp {
        display: none;
    }
    .stat-box {
        justify-content: flex-start;
        padding-left: 20%;
    }

    /* Hero Typography Responsive overrides */
    .hero-content-corp h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }
    .hero-content-corp p {
        font-size: 15px !important;
        margin-bottom: 25px !important;
    }
    .hero-ctas {
        gap: 10px !important;
    }

    @media (max-width: 480px) {
        .hero-content-corp h1 {
            font-size: 26px !important;
        }
        .logo-image {
            max-height: 52px !important;
        }
        .stats-grid-corp {
            grid-template-columns: 1fr;
            gap: 25px;
            padding: 30px 25px;
        }
        .stat-box {
            padding-left: 15%;
        }
    }
}

/* Floating Actions Widget (WhatsApp & Enquiry Buttons) */
.floating-buttons-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #ffffff !important;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.floating-btn .floating-text {
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding-left: 0;
}

.floating-btn:hover {
    width: 140px;
    border-radius: 30px;
    justify-content: flex-start;
    padding-left: 20px;
}

.floating-btn:hover .floating-text {
    max-width: 100px;
    opacity: 1;
    padding-left: 10px;
}

.floating-btn i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.floating-btn:hover i {
    transform: scale(1.1);
}

/* Colors & Gradients */
.floating-whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.floating-enquiry-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
}

/* Pulsing effect for WhatsApp button */
.floating-whatsapp-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: whatsapp-pulse-anim 2s infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes whatsapp-pulse-anim {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile responsive override */
@media (max-width: 768px) {
    .floating-buttons-wrapper {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    .floating-btn i {
        font-size: 20px;
    }
    /* Disable hover expansion on mobile touchscreens */
    .floating-btn:hover {
        width: 50px;
        border-radius: 50%;
        justify-content: center;
        padding-left: 0;
    }
    .floating-btn:hover .floating-text {
        max-width: 0;
        opacity: 0;
        padding-left: 0;
    }
}

/* Mobile Only Admin Link styling */
.mobile-only-admin {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only-admin {
        display: block !important;
        border-top: 1px dashed rgba(255, 255, 255, 0.15);
        margin-top: 10px;
        padding-top: 10px;
        width: 100%;
    }
}
