/* ========================================
   RUGGED TECHNOLOGY SERVICES - STYLES.CSS
   Enhanced consolidated styles for all pages
   ======================================== */

/* CSS Variables */
:root {
    --dark-grey: #0f172a;
    --light-grey: #e2e8f0;
    --mid-grey: #1e293b;
    --accent-blue: #3b82f6;
    --accent-orange: #f59e0b;
    --white: #f8fafc;
    --muted-grey: #64748b;
    --success-green: #10b981;
    --danger-red: #ef4444;
    --card-bg: #1e293b;
    --border-color: #334155;
}

/* ========================================
   BASE STYLES
   ======================================== */

/* Reset and Base */
* {
    scroll-behavior: smooth;
}
html, body {
  width: 100%;
  overflow-x: hidden !important;
}
body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 18px; /* Increased from default 16px */
    background: linear-gradient(135deg, var(--dark-grey) 0%, #1a202c 100%);
    color: var(--light-grey);
    transition: opacity 0.8s ease-in-out;
    overflow-x: hidden;
    line-height: 1.7; /* Better readability */
}

@media screen and (max-width: 768px) {
    body {
        font-size: 16px; /* Slightly smaller on mobile but still readable */
        line-height: 1.6;
    }
}


/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

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

/* Glass morphism effect */
.glass {
    background: rgba(30, 41, 59, 0.7);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

strong {
    color: white !important;
}

/* ========================================
   LAYOUT COMPONENTS
   ======================================== */

/* Container Styles */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 0.5rem;
    }
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section.is-medium {
    padding: 8rem 0;
}

.section.is-large {
    padding: 10rem 0;
}

.is-vcentered {
    align-content: center;
}

/* ========================================
   NAVIGATION & LOGO (CONSOLIDATED)
   ======================================== */

/* Navigation Bar */
.navbar {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s ease;
    min-height: 7rem; /* Increased to accommodate larger logo */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    min-height: 5.5rem; /* Proportional reduction */
}



/* Logo Container - Cleaned Up */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0 !important;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.06);
}

.logo-container img {
    width: 150px !important;
    height: 150px !important;
    object-fit: contain;
    filter: drop-shadow(0 3px 12px rgba(59, 130, 246, 0.4));
    transition: all 0.3s ease;
    max-width: none !important;
    max-height: none !important;
}

.logo-container:hover img {
    filter: drop-shadow(0 6px 20px rgba(59, 130, 246, 0.6));
}

.logo-svg {
    width: 150px !important;
    height: 150px !important;
    filter: drop-shadow(0 3px 12px rgba(59, 130, 246, 0.4));
    max-width: none !important;
    max-height: none !important;
}

/* Hide logo text in navbar, show in footer */
.navbar .logo-text {
    display: none;
}

/* Scrolled state - smaller logo */
.navbar.scrolled .logo-container img {
    width: 100px !important;
    height: 100px !important;
}

.navbar.scrolled .logo-svg {
    width: 100px !important;
    height: 100px !important;
}

/* Navbar brand with compact padding */
.navbar-brand .navbar-item {
    padding: 1rem 0.3rem !important;
}

/* Navbar menu positioning */
.navbar-menu {
    background-color: transparent;
    align-items: center;
}

.navbar-end {
    align-items: center;
    gap: 0.5rem;
    padding-right: 0.5rem;
}

.navbar-item {
    color: var(--light-grey) !important;
    font-weight: 500;
    font-size: 1.2rem; /* Increased from 1.1rem */
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem;
}

@media screen and (max-width: 768px) {
    .navbar-item {
        font-size: 1.1rem; /* Larger on mobile too */
    }
}

.navbar-item:hover {
    color: var(--accent-blue) !important;
    background-color: rgba(59, 130, 246, 0.1) !important;
    border-radius: 8px;
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-item:hover::after {
    width: 80%;
}

/* Mobile Navbar */
.navbar-burger {
    color: var(--light-grey);
    height: 3.25rem;
    width: 3.25rem;
}

.navbar-burger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-burger.is-active {
    color: var(--accent-blue);
}

/* Enhanced mobile responsiveness */
@media screen and (max-width: 768px) {
    .navbar {
        min-height: 6rem !important;
    }
    
    .navbar.scrolled {
        min-height: 4.5rem !important;
    }
    
    .logo-container {
        padding: 0.3rem 0 !important;
    }
    
    .logo-container img {
        width: 80px !important;
        height: 80px !important;
    }
    
    .logo-svg {
        width: 80px !important;
        height: 80px !important;
    }
    
    .navbar.scrolled .logo-container img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .navbar.scrolled .logo-svg {
        width: 60px !important;
        height: 60px !important;
    }
    
    .navbar-brand .navbar-item {
        padding: 0.75rem 0.3rem !important;
    }
    
    .navbar-item {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
    }
    
    .navbar-end {
        padding-right: 0.25rem;
        gap: 0.25rem;
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .logo-container img {
        width: 120px !important;
        height: 120px !important;
    }
    
    .logo-svg {
        width: 120px !important;
        height: 120px !important;
    }
    
    .navbar {
        min-height: 7rem;
    }
    
    .navbar.scrolled .logo-container img {
        width: 90px !important;
        height: 90px !important;
    }
    
    .navbar.scrolled .logo-svg {
        width: 90px !important;
        height: 90px !important;
    }
}

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

/* Particle Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    animation: particleFloat 15s ease-in-out infinite alternate;
}

@keyframes particleFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(1deg); }
}

/* Hero Base */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Variants */
.hero.is-medium {
    min-height: 60vh;
}

.hero.is-small {
    min-height: 50vh;
}

.hero-body {
    padding: 3rem 1.5rem;
    z-index: 2;
    padding-top: 8rem; /* For full-height hero (index.html) */
}

/* For medium hero sections (About, Services, Contact pages) */
.hero.is-medium .hero-body {
    padding-top: 10rem; /* Increased from 6rem to 10rem for large screens */
}

/* Large desktop screens need even more space */
@media screen and (min-width: 1200px) {
    .hero.is-medium .hero-body {
        padding-top: 12rem; /* Extra space for large desktops */
    }
}

/* Desktop screens */
@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .hero.is-medium .hero-body {
        padding-top: 11rem; /* Medium-large screens */
    }
}

/* Tablet adjustments */
@media screen and (min-width: 769px) and (max-width: 1023px) {
    .hero.is-medium .hero-body {
        padding-top: 9rem; /* Tablet screens */
    }
}

@media screen and (max-width: 768px) {
    .hero-body {
        padding-top: 6rem; /* Adjusted for mobile */
    }
    
    .hero.is-medium .hero-body {
        padding-top: 7rem; /* Increased from 5rem for mobile */
    }
}




.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem; /* Increased from 1.25rem */
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--light-grey);
    opacity: 0.9;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.25rem; /* Increased from 1.1rem */
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: var(--light-grey);
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}


/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(15deg); }
}

/* ========================================
   ENHANCED BUTTONS
   ======================================== */

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #2563eb 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    cursor: pointer;
    font-family: "Inter", sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, var(--accent-blue) 100%);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-white {
    background: white;
    color: var(--accent-blue);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-family: "Inter", sans-serif;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: var(--accent-blue);
}

/* Pulse Button */
.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5), 0 0 30px rgba(59, 130, 246, 0.3); }
    100% { box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3); }
}

/* ========================================
   ENHANCED CARDS
   ======================================== */

/* Base Card Styles */
.service-card,
.about-card,
.contact-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before,
.about-card::before,
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before,
.about-card:hover::before,
.contact-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover,
.about-card:hover,
.contact-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-blue);
}

.service-card::after {
    content: none;
}
.service-card:hover::after {
    opacity: 0;
    animation: none;
}


/* Card Icons */
.service-icon,
.about-icon,
.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.contact-icon {
    margin: 0 auto 1.5rem;
}

/* Card Titles */
.service-title,
.about-title,
.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-card .contact-title {
    text-align: center;
}

/* Card Descriptions */
.service-description,
.about-description,
.contact-description {
    color: var(--light-grey);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-card .contact-description {
    text-align: center;
}

/* ========================================
   SERVICE-SPECIFIC STYLES
   ======================================== */

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--light-grey);
    opacity: 0.8;
}

.service-features li i {
    color: var(--success-green);
    font-size: 0.9rem;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

/* Detailed Service Sections */
.detailed-service {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.detailed-service h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detailed-service .service-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.detailed-service .content {
    color: var(--light-grey);
    line-height: 1.7;
}

.detailed-service .columns {
    margin-top: 2rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--light-grey);
}

.benefit-list li i {
    color: var(--success-green);
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

/* ========================================
   ENHANCED TEAM STYLES
   ======================================== */

/* Team Member Cards */
.team-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.team-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.team-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--accent-blue);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.team-bio {
    color: var(--light-grey);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ========================================
   PROCESS STYLES
   ======================================== */

/* Process Section */
.process-section {
    background: linear-gradient(135deg, var(--mid-grey) 0%, var(--dark-grey) 100%);
}

.process-step {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.process-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.process-description {
    color: var(--light-grey);
    opacity: 0.8;
    line-height: 1.6;
}

/* ========================================
   STATS STYLES
   ======================================== */

.stats-section {
    padding: 5rem 0;
    background: var(--dark-grey);
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    display: block;
    font-family: "JetBrains Mono", monospace;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-grey);
    font-weight: 500;
    margin-top: 0.5rem;
}

/* ========================================
   FORM STYLES
   ======================================== */

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1rem; /* Increased from 0.9rem */
}

@media screen and (max-width: 768px) {
    .form-field label {
        font-size: 1.1rem; /* Even larger on mobile for accessibility */
    }
}


.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: var(--dark-grey);
    color: var(--light-grey);
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: var(--muted-grey);
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, var(--success-green), #059669);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    animation: slideInRight 0.3s ease;
}

.notification-success {
    border-left: 4px solid var(--success-green);
}

.notification-error {
    border-left: 4px solid var(--danger-red);
}

.notification-info {
    border-left: 4px solid var(--accent-blue);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: var(--muted-grey);
    cursor: pointer;
    font-size: 1.2rem;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   BUSINESS HOURS STYLES
   ======================================== */

.hours-section {
    background: linear-gradient(135deg, var(--mid-grey) 0%, var(--dark-grey) 100%);
}

.hours-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--white);
}

.hours-time {
    color: var(--light-grey);
}

.hours-emergency {
    background: linear-gradient(135deg, var(--success-green), #059669);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
}

/* ========================================
   LOCATION STYLES
   ======================================== */

.location-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    height: 100%;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.location-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-map:hover {
    transform: scale(1.05);
}

.location-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--light-grey);
}

.location-details li i {
    color: var(--accent-blue);
    width: 20px;
    text-align: center;
}

/* Mobile map adjustment */
@media screen and (max-width: 768px) {
    .map-container {
        height: 200px;
    }
}

/* ========================================
   FLOATING ACTION BUTTONS
   ======================================== */

.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.fab.call {
    background: linear-gradient(135deg, var(--success-green), #059669);
}

.fab.email {
    background: linear-gradient(135deg, var(--accent-blue), #2563eb);
}

.fab:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: white;
}

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-orange) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* ========================================
   SPECIALIZED SECTIONS
   ======================================== */

/* Values Section */
.values-section {
    background: linear-gradient(135deg, var(--mid-grey) 0%, var(--dark-grey) 100%);
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--mid-grey) 0%, var(--dark-grey) 100%);
}

/* Contact Info */
.contact-info {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-align: center;
}

.contact-info a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-orange);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--dark-grey);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer .logo-container {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer .logo-container img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.footer .logo-text {
    display: block; /* Show text in footer for branding */
    font-size: 1.6rem;
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
    text-align: center;
}

.footer-description {
    color: var(--muted-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .footer .logo-container img {
        width: 65px;
        height: 65px;
    }
    
    .footer .logo-text {
        font-size: 1.3rem;
    }
}



.footer-description {
    color: var(--muted-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--mid-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-grey);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    color: var(--muted-grey);
}

/* ========================================
   ANIMATIONS
   ======================================== */

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-grey);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-logo {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

/* Page transition effects */
.page-transition {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.page-transition.loaded {
    opacity: 1;
}


/* Base Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: slideInUp 0.8s ease-out forwards;
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 600ms linear;
    background-color: rgba(255, 255, 255, 0.6);
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ========================================
   MOBILE RESPONSIVE
   ======================================== */

@media screen and (max-width: 768px) {
    /* Hero adjustments */
    .hero-body {
        padding: 2rem 1rem;
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Card adjustments */
    .service-card,
    .about-card,
    .contact-card {
        margin-bottom: 2rem;
        padding: 2rem;
    }
    
    .service-card:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .button {
        width: 100%;
    }
    
    /* Form adjustments */
    .contact-form {
        padding: 2rem;
    }
    
    .detailed-service {
        padding: 2rem;
    }
    
    .detailed-service h3 {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    /* Floating actions mobile */
    .floating-actions {
        bottom: 1rem;
        right: 1rem;
    }
    
    .fab {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Notification mobile */
    .notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Text utilities */
.has-text-white {
    color: var(--white) !important;
}

.has-text-light {
    color: var(--light-grey) !important;
}

.has-text-grey-light {
    color: var(--muted-grey) !important;
}

.has-text-primary {
    color: var(--accent-blue) !important;
}

.has-text-centered {
    text-align: center !important;
}

/* Spacing utilities */
.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 2rem !important;
}

.mb-6 {
    margin-bottom: 3rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

/* Button utilities */
.is-fullwidth {
    width: 100% !important;
}

.is-large {
    font-size: 1.25rem !important;
    padding: 1rem 2rem !important;
}

/* Flexbox utilities */
.is-centered {
    justify-content: center !important;
}

/* Content utilities */
.content {
    line-height: 1.6;
}

.content ul {
    list-style: disc;
    margin-left: 2rem;
}

.content p {
    margin-bottom: 1rem;
}

/* Title utilities */
.title {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.title.is-1 {
    font-size: 3rem;
    line-height: 1.125;
}

.title.is-2 {
    font-size: 2.5rem;
    line-height: 1.25;
}

.title.is-3 {
    font-size: 2rem;
    line-height: 1.25;
}

.title.is-4 {
    font-size: 1.5rem;
    line-height: 1.25;
}

.title.is-5 {
    font-size: 1.25rem;
    line-height: 1.25;
}

.title.is-6 {
    font-size: 1rem;
    line-height: 1.25;
}

.subtitle {
    font-weight: 400;
    color: var(--light-grey);
    margin-bottom: 1.5rem;
}

.subtitle.is-4 {
    font-size: 1.25rem;
}

/* Icon utilities */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.5rem;
    width: 1.5rem;
}

/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */

.keyboard-navigation *:focus {
    outline: 2px solid var(--accent-blue) !important;
    outline-offset: 2px !important;
}

/* Will-change for animations */
.service-card,
.about-card,
.contact-card,
.team-card,
.process-step {
    will-change: transform;
}

.navbar {
    will-change: background-color, box-shadow;
}

/* GPU acceleration for transforms */
.hero {
    transform: translateZ(0);
}

/* Smooth scrolling performance */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* Enhanced Mobile Menu Styles */

@media screen and (max-width: 1023px) {
    .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98) !important;
        backdrop-filter: blur(25px);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navbar-menu.is-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    */
    .navbar-item {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-item:last-child {
        border-bottom: none;
    }
    
    .navbar-burger {
        display: block;
    }
}



/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .navbar,
    .floating-actions,
    .cta-section,
    .footer {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-title,
    .title {
        color: black !important;
    }
    
    .service-card,
    .about-card,
    .contact-card {
        border: 1px solid #ccc !important;
        background: white !important;
        box-shadow: none !important;
    }
}
/* Enhanced Card Typography */
.service-description,
.about-description,
.contact-description {
    color: var(--light-grey);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem; /* Explicitly larger */
}

.service-title,
.about-title,
.contact-title {
    font-size: 1.6rem; /* Increased from 1.5rem */
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    .service-description,
    .about-description,
    .contact-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .service-title,
    .about-title,
    .contact-title {
        font-size: 1.4rem;
    }
}
/* Enhanced Footer Typography */
.footer-description {
    color: var(--muted-grey);
    line-height: 1.7; /* Increased from 1.6 */
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.1rem; /* Explicitly larger */
}

.footer-links a {
    color: var(--light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem; /* Ensure readable footer links */
}

@media screen and (max-width: 768px) {
    .footer-description {
        font-size: 1rem;
        line-height: 1.6;
    }
}
/* Enhanced Typography for Large Desktops */
@media screen and (min-width: 1440px) {
    body {
        font-size: 20px; /* Even larger on big screens */
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1.4rem;
    }
    
    .navbar-item {
        font-size: 1.3rem;
    }
    
    .service-title,
    .about-title,
    .contact-title {
        font-size: 1.8rem;
    }
    
    .service-description,
    .about-description,
    .contact-description {
        font-size: 1.2rem;
    }
}
/* Performance optimizations */
* {
    box-sizing: border-box;
}

/* Optimize animations for 60fps */
.service-card,
.about-card,
.contact-card,
.team-card {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optimize images */
img {
    image-rendering: optimizeQuality;
}

/* Ensure focus is visible for accessibility */
*:focus {
    outline: 2px solid var(--accent-blue) !important;
    outline-offset: 2px !important;
}
@media screen and (max-width: 768px) {
  .floating-actions {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
    .navbar-burger {
        display: none !important;
    }
    .navbar-menu {
        display: flex !important;
    }
}
@media screen and (max-width: 768px) {
  .hero {
    padding-top: 106px !important;
  }
}