/* 
 * SQ Logistics & Waste Removals - Modern CSS
 * Mobile-first responsive design with detailed comments for learning
 */

/* CSS Reset and Base Styles */
/* Using border-box for easier sizing calculations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables for consistent theming */
/* CSS custom properties allow easy theme updates and consistency */
:root {
    /* New Premium Color Palette - Stripe/Apple aesthetic */
    --color-primary: #0f172a;      /* Deep Navy - primary brand color */
    --color-secondary: #10b981;    /* Vibrant Emerald - secondary/accent color */
    --color-accent: #34d399;       /* Lighter emerald for highlights */
    --color-light: #f8fafc;        /* Soft Gray - light background */
    --color-white: #ffffff;        /* White */
    --color-gray: #64748b;         /* Gray for text */
    --color-dark: #1e293b;         /* Dark gray */
    
    /* Typography - Premium fonts */
    --font-primary: 'Inter', 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'Plus Jakarta Sans', 'Inter', sans-serif;
    
    /* Spacing - Consistent spacing system */
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 1rem;      /* 16px */
    --spacing-md: 1.5rem;    /* 24px */
    --spacing-lg: 2rem;      /* 32px */
    --spacing-xl: 3rem;      /* 48px */
    --spacing-xxl: 4rem;     /* 64px */
    
    /* Border Radius - Modern rounded corners */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;   /* For fully rounded elements like buttons */
    
    /* Shadows - Subtle, modern shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Blur effects for modern glassmorphism */
    --backdrop-blur: blur(12px);
    
    /* Hero overlay colors for premium design */
    --hero-overlay-dark: rgba(15, 23, 42, 0.9);
    --hero-overlay-light: rgba(15, 23, 42, 0.4);
    --hero-overlay-gradient: linear-gradient(90deg, var(--hero-overlay-dark) 0%, var(--hero-overlay-light) 100%);
    
    /* Glassmorphism effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(10px);
}

/* Base Typography */
/* Using rem units for scalable typography relative to root font size */
html {
    font-size: 16px; /* Base font size for rem calculations */
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-secondary);
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Container Utility */
/* Centered container with max-width for better readability on large screens */
.container {
    width: 100%;
    max-width: 1200px; /* Maximum width for content */
    margin: 0 auto;    /* Center the container */
    padding: 0 var(--spacing-sm); /* Padding on sides for mobile */
}

/* Responsive container padding */
@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

/* Typography Styles */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2rem; /* 32px on mobile */
}

h2 {
    font-size: 1.75rem; /* 28px on mobile */
}

h3 {
    font-size: 1.25rem; /* 20px on mobile */
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-gray);
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-normal);
    text-align: center;
}

.btn-primary { background-color: var(--color-secondary); color: var(--color-white); }

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px); /* Subtle lift effect */
    box-shadow: var(--shadow-md);
    color:#fff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn-secondary:hover { background-color: var(--color-secondary); color: var(--color-white); }

.btn-block {
    width: 100%; /* Full width button */
}

.btn-icon {
    font-size: 1.2rem;
}

/* Premium Header Styles with Glassmorphism Effect */
/* Using position: sticky with backdrop-filter for modern glass effect */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent white */
    backdrop-filter: var(--backdrop-blur); /* Creates the glassmorphism effect */
    -webkit-backdrop-filter: var(--backdrop-blur); /* Safari support */
    border-bottom: 1px solid rgba(15, 23, 42, 0.1); /* Subtle bottom border */
    padding: var(--spacing-sm) 0;
    transition: all var(--transition-normal);
}

/* When scrolled, make header more solid */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

/* Navbar container using Flexbox for horizontal layout */
/* Flexbox is ideal for navigation bars because it handles horizontal spacing naturally */
.navbar {
    display: flex;
    justify-content: space-between; /* Logo on left, nav on right */
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping on mobile */
}

/* Logo styling */
.logo-link {
    text-decoration: none;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-secondary);
    transition: color var(--transition-fast);
}

.logo-link:hover {
    color: var(--color-secondary);
}

/* Desktop Navigation - using Flexbox for horizontal menu */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl); /* Space between nav items and button */
}

/* Navigation menu using Flexbox for horizontal layout */
.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg); /* Equal spacing between menu items */
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--color-gray);
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--spacing-xs) 0;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-secondary);
}

/* Underline effect for active link */
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
    border-radius: var(--radius-full);
}

/* Primary CTA Button - Rounded full design */
.btn-call { border-radius: var(--radius-full); /* Fully rounded button */ padding: var(--spacing-sm) var(--spacing-lg); font-weight: 600; background-color: var(--color-secondary); color: var(--color-white); border: none; display: flex; align-items: center; gap: var(--spacing-xs); transition: all var(--transition-normal); }

.btn-call:hover {
    background-color: var(--color-accent);
    transform: translateY(-2px); /* Subtle lift effect */
    box-shadow: var(--shadow-md);
	color: var(--color-white);
}

/* Mobile Menu Toggle (Hidden on desktop) */
.mobile-menu-toggle {
    display: none; /* Hidden by default, shown on mobile */
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: var(--color-light);
    position: relative;
    z-index: 1001;
    transition: background-color var(--transition-fast);
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-menu-toggle:active {
    background-color: rgba(0, 0, 0, 0.1);
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-secondary);
    position: relative;
    transition: background-color var(--transition-fast);
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--color-secondary);
    left: 0;
    transition: transform var(--transition-normal);
}

.menu-icon::before {
    top: -6px;
}

.menu-icon::after {
    bottom: -6px;
}

/* Mobile Menu Styles */
/* NOTE: This element must live OUTSIDE <header> in the HTML.
   backdrop-filter on the header creates a containing block in Chrome/WebKit,
   which traps position:fixed children inside the header bounds. */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-secondary);
    z-index: 1001; /* Above header (z-index: 1000) so menu is visible */
    overflow-y: auto;
    padding-top: 80px; /* Space for sticky header */
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: var(--spacing-lg) 0;
    display: block !important;
    height: auto !important;
    min-height: 200px;
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: var(--spacing-xl);
}

.mobile-nav-item {
    margin-bottom: var(--spacing-sm);
}

/* Mobile menu close button */
.mobile-menu-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--color-white); font-size: 1.5rem; cursor: pointer; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-md); transition: background-color var(--transition-fast); z-index: 1002; }

.mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    display: block;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--color-secondary) !important;
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.btn-call-mobile,
.btn-email-mobile {
    width: 100%;
    justify-content: center;
    padding: var(--spacing-md);
    font-size: 1rem;
}

/* Mobile menu toggle active state */
.mobile-menu-toggle.active .menu-icon {
    background-color: transparent;
}

.mobile-menu-toggle.active .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .menu-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Ensure mobile menu is fully visible */
.mobile-menu * {
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-menu-content {
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-nav-menu,
.mobile-nav-item,
.mobile-nav-link {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Premium Hero Section with Two-Column Grid Layout */
/*
 * CSS Grid is used here for the two-column layout because:
 * 1. Grid provides precise control over column sizing and alignment
 * 2. It handles responsive design elegantly with media queries
 * 3. The gap property creates consistent spacing between columns
 * 4. align-items: center vertically centers content in both columns
 */
.hero {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

/*
 * CSS Grid Container for Responsive Layout:
 * - Mobile (default): 1fr (single column)
 * - Desktop (768px+): 1fr 1fr (two equal columns via media query)
 *
 * Why use 1fr instead of fixed widths?
 * 1fr creates flexible columns that use available space proportionally
 * This ensures the layout adapts to different screen sizes
 */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile by default */
    gap: var(--spacing-xxl); /* Consistent spacing using CSS variable */
    align-items: center; /* Vertically centers content in grid cells */
}

/* Hero Content (Left Column) */
.hero-content {
    max-width: 600px; /* Optimal line length for readability */
}

/* Tagline using uppercase and accent color */
.hero-tagline {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

/*
 * Main Heading using clamp() for Responsive Fluid Typography:
 *
 * clamp(minimum, preferred, maximum)
 * - minimum: 2.5rem (40px) - smallest size on mobile
 * - preferred: 5vw - scales with viewport width (5% of viewport width)
 * - maximum: 3.5rem (56px) - largest size on desktop
 *
 * Why use clamp() instead of media queries for font sizes?
 * 1. Creates truly fluid typography that scales smoothly
 * 2. Reduces the need for multiple media query breakpoints
 * 3. More maintainable and responsive to different screen sizes
 * 4. Provides better UX with gradual scaling instead of abrupt jumps
 */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Fluid scaling from 2.5rem to 3.5rem */
    line-height: 1.1;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-lg);
}

/* Sub-heading with comfortable line height */
.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: var(--spacing-xl);
    max-width: 90%;
}

/* Hero Buttons - using Flexbox for horizontal layout on desktop */
.hero-buttons {
    display: flex;
    flex-direction: column; /* Stack vertically on mobile */
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

/* Large button variant */
.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1.125rem;
}

/* Secondary button as outline/ghost style */
.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover { background-color: var(--color-secondary); color: var(--color-white); }

/* Trust Badges using Flexbox for horizontal layout */
.trust-badges {
    display: flex;
    flex-direction: column; /* Stack vertically on mobile */
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-lg);
    background-color: var(--color-secondary);
    border: 1px solid rgba(15, 23, 42, 0.1);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.badge-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-light);
    border-radius: var(--radius-full);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 600;
    color: var(--color-secondary);
    font-size: 0.95rem;
}

.badge-desc {
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* Hero Visual (Right Column) - Keeping for reference but not used in premium design */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-white) 0%, #f1f5f9 100%);
    border-radius: 24px; /* Large border radius for modern look */
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.1);
}

.placeholder-content {
    text-align: center;
    padding: var(--spacing-xl);
}

.van-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.placeholder-content h3 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
}

.placeholder-content p {
    color: var(--color-gray);
    font-size: 1rem;
}

/* =========================================== */
/* PREMIUM 2026 HERO SECTION - HIGH-END DESIGN */
/* =========================================== */

/* Full-screen background with gradient overlay */
.hero-premium {
    position: relative;
    min-height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    padding: 100px 0; /* Minimum 100px padding top and bottom */
    overflow: hidden;
    color: #ffffff; /* White text for high contrast */
}

/* Background image with gradient overlay */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url('img/local-van-handyman.webp');
    background-size: cover; /* Ensures image covers entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat;
}

/* Gradient overlay using CSS variable */
.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--hero-overlay-gradient); /* linear-gradient(90deg, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.4) 100%) */
    z-index: 1;
}

/* Hero content container */
.hero-content-premium {
    max-width: 700px; /* Optimal width for readability */
    position: relative;
    z-index: 2; /* Above the background overlay */
}

/* Tagline - Emerald green as requested */
.hero-tagline-premium {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary); /* Emerald green (#10b981) */
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

/* Main Heading - Reduced size for better proportion */
.hero-title-premium {
    font-size: clamp(2rem, 4.5vw, 3.5rem); /* Reduced from 2.5-4.5rem to 2-3.5rem */
    line-height: 1.15;
    font-weight: 800; /* Extra bold */
    color: #ffffff; /* White text */
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Subtle text shadow to "pop" against background */
}

/* Sub-heading with reduced font size */
.hero-subtitle-premium {
    font-size: 1.1rem; /* Reduced from 1.25rem */
    line-height: 1.6; /* Increased for better readability */
    color: rgba(255, 255, 255, 0.8); /* White with 0.8 opacity */
    margin-bottom: var(--spacing-lg);
    max-width: 90%;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Matching text shadow for consistency */
}

/* Hero buttons container */
.hero-buttons-premium {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

/* Premium Primary Button with inner glow and soft outer glow */
.btn-primary-premium {
    background-color: var(--color-secondary); /* Emerald green */
    color: #ffffff;
    border: none;
    border-radius: var(--radius-full);
    padding: var(--spacing-sm) var(--spacing-lg); /* Reduced padding */
    font-size: 1rem; /* Reduced from 1.125rem */
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 20px rgba(16, 185, 129, 0.4); /* Soft green outer glow */
    position: relative;
    overflow: hidden;
}

.btn-primary-premium:hover {
    transform: translateY(-3px); /* Lift effect */
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 25px rgba(16, 185, 129, 0.6); /* Enhanced glow on hover */
    background-color: var(--color-accent); /* Lighter green on hover */
}

/* Button icon styling for Font Awesome icons */
.btn-primary-premium .btn-icon,
.btn-secondary-premium .btn-icon {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Premium Secondary Button (Ghost Button) */
.btn-secondary-premium {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: var(--radius-full);
    padding: var(--spacing-sm) var(--spacing-lg); /* Reduced padding */
    font-size: 1rem; /* Reduced from 1.125rem */
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary-premium:hover {
    background-color: #ffffff;
    color: var(--color-secondary); /* Dark navy text on white background */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Glassmorphism Trust Badges */
.trust-badges-premium {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.trust-badge-premium {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    background: var(--glass-bg); /* rgba(255, 255, 255, 0.05) */
    backdrop-filter: var(--glass-blur); /* blur(10px) */
    -webkit-backdrop-filter: var(--glass-blur); /* Safari support */
    border: 1px solid var(--glass-border); /* rgba(255, 255, 255, 0.1) */
    color: #ffffff;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    max-width: 350px;
}

.trust-badge-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08); /* Slightly more opaque on hover */
}

.badge-icon-premium {
    font-size: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

.badge-text-premium {
    display: flex;
    flex-direction: column;
}

.badge-title-premium {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}

.badge-desc-premium {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* =========================================== */
/* HIGH-END CORPORATE BADGE DESIGN */
/* =========================================== */

/* Corporate badge container - horizontal row with gap */
.trust-badges-corporate {
    display: flex;
    gap: 1.5rem; /* Reduced from 2rem */
    margin-top: var(--spacing-lg); /* Reduced margin */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Individual corporate badge with subtle glass effect */
.trust-badge-corporate {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Reduced gap between icon and text */
    padding: 1rem 1.25rem; /* Reduced padding */
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03); /* Even more subtle background */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Subtle border */
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: #ffffff;
    transition: transform var(--transition-normal), background var(--transition-normal);
    flex: 1; /* Flexible width */
    min-width: 180px; /* Reduced minimum width */
    max-width: 250px; /* Reduced maximum width */
}

.trust-badge-corporate:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.05); /* Slightly more visible on hover */
}

/* Corporate badge icon - Emerald green with thin styling */
.badge-icon-corporate {
    font-size: 1.25rem; /* Reduced icon size */
    color: var(--color-secondary); /* Emerald Green (#10b981) */
    width: 42px; /* Reduced size */
    height: 42px; /* Reduced size */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1); /* Subtle green background */
    border-radius: var(--radius-full);
    flex-shrink: 0; /* Prevent icon from shrinking */
}

/* Corporate badge text container */
.badge-text-corporate {
    display: flex;
    flex-direction: column;
    gap: 0.25rem; /* Small gap between title and description */
}

/* Corporate badge title - White, Bold, Small */
.badge-title-corporate {
    font-weight: 700; /* Bold */
    font-size: 0.9rem; /* Small size */
    color: #ffffff; /* White */
    letter-spacing: 0.02em;
}

/* Corporate badge description - Very light gray, smaller, with opacity */
.badge-desc-corporate {
    font-size: 0.75rem; /* Even smaller */
    color: rgba(255, 255, 255, 0.7); /* Very light gray with 0.7 opacity */
    line-height: 1.4;
}

/* =========================================== */
/* FADE-UP ANIMATIONS FOR 2026 PREMIUM FEEL */
/* =========================================== */

/* Keyframes for fade-up animation */
@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Start 20px lower */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* End at normal position */
    }
}

/* Apply animation to elements with this class */
.animate-fade-up {
    animation: fade-up 0.8s ease-out forwards;
    opacity: 0; /* Start invisible, animation will make it visible */
}

/* Responsive adjustments for premium hero */
@media (min-width: 768px) {
    .hero-buttons-premium {
        flex-direction: row; /* Side-by-side buttons on desktop */
        flex-wrap: wrap;
    }
    
    .trust-badges-premium {
        flex-direction: row; /* Horizontal trust badges on desktop */
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }
    
    .trust-badge-premium {
        flex: 1;
        min-width: 200px;
        max-width: none;
    }
    
    .hero-subtitle-premium {
        max-width: 80%;
    }
}

@media (max-width: 767px) {
    .hero-premium {
        min-height: 90vh; /* Slightly shorter on mobile */
        padding: 80px 0;
        text-align: center; /* Center content on mobile */
    }
    
    .hero-content-premium {
        text-align: center;
    }
    
    .hero-subtitle-premium {
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-badge-premium {
        max-width: 100%;
    }
    
    .hero-title-premium {
        font-size: clamp(2rem, 6vw, 3rem); /* Smaller on mobile */
    }
    
    /* Corporate badges mobile responsiveness */
    .trust-badges-corporate {
        flex-direction: column; /* Stack vertically on mobile */
        gap: 1rem; /* Reduced gap for mobile */
        align-items: center; /* Center badges on mobile */
    }
    
    .trust-badge-corporate {
        min-width: 100%; /* Full width on mobile */
        max-width: 100%;
        justify-content: flex-start; /* Align content to start */
    }
    
    /* Alternative: 2-column grid for badges on very small screens */
    @media (max-width: 480px) { .trust-badges-corporate { display: grid; grid-template-columns: repeat(2, 1fr); /* 2-column grid */ gap: 0.75rem; } .trust-badge-corporate:nth-child(3) { grid-column: 1 / -1; /* Span all columns */ justify-self: center; /* Center horizontally */ max-width: 50%; /* Limit width */ }
        
        .trust-badge-corporate {
            min-width: auto; /* Allow grid to control width */
            flex-direction: column; /* Stack icon and text vertically */
            text-align: center;
            padding: 1rem;
            gap: 0.5rem;
        }
        
        .badge-icon-corporate {
            width: 40px;
            height: 40px;
            font-size: 1.25rem;
        }
        
        .badge-text-corporate {
            align-items: center;
        }
    }
}

/* Section Common Styles */
.section-title {
    text-align: center;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
/* CSS Grid for responsive card layout */
.services-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column on mobile */
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.service-title {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.service-description {
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
    min-height: 60px; /* Consistent height for descriptions */
}

.service-price {
    margin-top: var(--spacing-sm);
}

.price-badge {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
}

/* =========================================== */
/* PREMIUM SERVICES SECTION - HIGH-END DESIGN */
/* =========================================== */

/* Premium Services Section */
.services-premium { padding: var(--spacing-xxl) 0; background-color: #ffffff; /* White background to contrast with dark Hero */ }

/* Premium Section Header */
.section-header-premium {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-title-premium {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary); /* Navy (#0f172a) */
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-title-premium::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-secondary); /* Emerald Green (#10b981) */
    border-radius: var(--radius-full);
}

.section-subtitle-premium {
    font-size: 1.125rem;
    color: var(--color-gray); /* Slate-gray (#64748b) */
    max-width: 600px;
    margin: var(--spacing-lg) auto 0;
    line-height: 1.6;
}

/* Premium Services Grid - Responsive with CSS Grid */
/* Using auto-fit for basic responsiveness and media queries for precise control */
.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /*
     * Explanation of grid-template-columns:
     * - repeat(auto-fit, ...): Creates as many columns as can fit in the container
     * - minmax(280px, 1fr): Each column has minimum width of 280px and maximum of 1fr (equal fraction)
     * This creates responsive columns: 1 column on mobile (< 280px), 2 on tablet (560px+), 4 on desktop (1120px+)
     * No media queries needed for basic responsiveness!
     */
    gap: 2rem; /* 2rem gap for breathing room as requested */
    margin-bottom: var(--spacing-xl);
}

/* Media queries for precise column control */
@media (min-width: 768px) {
    .services-grid-premium {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (min-width: 1024px) {
    .services-grid-premium {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    }
}

/* Premium Service Card */
.service-card-premium {
    background-color: #f8fafc; /* Very subtle off-white/light gray background */
    border: 1px solid #e2e8f0; /* Thin border (#e2e8f0) */
    border-radius: 16px; /* 16px border radius for modern rounded feel */
    padding: var(--spacing-lg);
    transition: all 0.3s ease; /* Smooth transition for all properties */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%; /* Ensure all cards have equal height */
    position: relative;
    overflow: hidden;
}

/* Hover effects for premium card */
.service-card-premium:hover {
    transform: translateY(-5px); /* Lift up on hover */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft, modern shadow on hover */
    border-color: rgba(16, 185, 129, 0.2); /* Slight green tint on border */
}

/* Icon Container */
.service-icon-container {
    width: 80px;
    height: 80px;
    background-color: rgba(16, 185, 129, 0.1); /* Soft green background with low opacity */
    border-radius: 50%; /* Circular background */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.service-card-premium:hover .service-icon-container {
    background-color: rgba(16, 185, 129, 0.15); /* Slightly more opaque on hover */
    transform: scale(1.05); /* Subtle scale effect */
}

/* Font Awesome Icons - Monochrome Emerald Green */
.service-icon-premium {
    font-size: 2rem;
    color: #10b981; /* Emerald Green (#10b981) */
}

/* Service Title */
.service-title-premium {
    font-size: 1.25rem; /* 1.25rem as requested */
    font-weight: 700;
    color: #0f172a; /* Bold Navy (#0f172a) */
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

/* Service Description */
.service-description-premium {
    font-size: 0.95rem;
    color: #64748b; /* Slate-gray text (#64748b) */
    line-height: 1.6; /* Good line height for readability */
    margin-bottom: var(--spacing-lg);
    flex-grow: 1; /* Push price to bottom */
}

/* Price Styling - Clean text element */
.service-price-premium {
    margin-top: auto; /* Push to bottom of card */
    margin-bottom: var(--spacing-md);
    text-align: center;
    width: 100%;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: 4px;
}

.price-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a; /* Bold Navy for price */
    line-height: 1.2;
}

/* Special case for "Quote on request" */
.service-price-premium .price-label:only-child {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
}

/* Learn More Link with Arrow Icon */
.service-link-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-secondary); /* Emerald Green */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: var(--spacing-sm);
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.service-link-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.service-link-premium:hover {
    color: var(--color-secondary); /* Navy on hover */
    gap: 12px; /* Increase gap on hover for arrow movement */
}

.service-link-premium:hover::after {
    width: 100%; /* Animated underline effect */
}

.service-link-premium i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-link-premium:hover i {
    transform: translateX(4px); /* Arrow moves right on hover */
}

/* Areas Grid */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.area-card {
    background: var(--color-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    transition: background-color var(--transition-fast);
}

.area-card:hover {
    background-color: rgba(45, 106, 79, 0.1); /* Light green tint */
}

.area-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.area-name {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.area-description {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 0;
}

/* =========================================== */
/* PREMIUM AREAS SECTION - MODERN COVERAGE MAP */
/* =========================================== */

/* Premium Areas Section */
.areas-premium {
    padding: var(--spacing-xxl) 0;
    background-color: #f8fafc; /* Very subtle light slate/off-white background */
}

/* Flexbox wrapper for split layout */
.areas-wrapper-premium {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: var(--spacing-xxl);
    align-items: center;
}

/* Left Side: Text Content */
.areas-content-premium {
    flex: 1;
    max-width: 100%;
}

.areas-title-premium {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-primary); /* Bold Navy (#0f172a) */
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.areas-description-premium {
    font-size: 1.125rem;
    color: var(--color-gray); /* Slate-gray (#64748b) */
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
}

/* 20-Mile Radius Highlight */
.radius-highlight-premium {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background-color: rgba(16, 185, 129, 0.05); /* Very subtle green background */
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
}

.radius-icon-premium {
    width: 60px;
    height: 60px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.radius-icon-premium i {
    font-size: 1.75rem;
    color: var(--color-secondary); /* Emerald Green (#10b981) */
}

.radius-text-premium {
    flex: 1;
}

.radius-title-premium {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.radius-desc-premium {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.5;
}

/* Secondary CTA */
.areas-cta-premium {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-radius: var(--radius-lg);
    max-width: 500px;
}

.cta-text-premium {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary); /* Use navy for better contrast on light background */
    margin-bottom: var(--spacing-md);
}

.btn-sm {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.95rem;
}

/* Override button colors for light background in areas section */
.areas-premium .btn-secondary-premium {
    color: #fff;
    border: 2px solid var(--color-secondary);
    background-color: transparent;
}

.areas-premium .btn-secondary-premium:hover { background-color: var(--color-secondary); color: var(--color-white); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2); }

/* Right Side: Visual List */
.areas-visual-premium {
    flex: 1;
    width: 100%;
    max-width: 100%;
}

.areas-list-premium { display: flex; flex-direction: column; gap: var(--spacing-sm); background-color: #ffffff; border-radius: var(--radius-xl); padding: var(--spacing-lg); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); border: 1px solid #e2e8f0; }

/* Area Item */
.area-item-premium {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.area-item-premium:hover {
    background-color: rgba(16, 185, 129, 0.05);
    transform: translateX(5px);
    border-left: 3px solid var(--color-secondary);
}

.area-icon-premium {
    width: 50px;
    height: 50px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.area-icon-premium i {
    font-size: 1.25rem;
    color: var(--color-secondary); /* Emerald Green (#10b981) */
}

.area-details-premium {
    flex: 1;
}

.area-name-premium {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary); /* Bold Navy (#0f172a) */
    margin-bottom: 4px;
}

.area-tag-premium { font-size: 0.9rem; color: var(--color-gray); margin-bottom: 0; }

/* Hover Info (hidden by default) */
.area-hover-info {
    position: absolute;
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.area-item-premium:hover .area-hover-info {
    opacity: 1;
}

/* Animation Keyframes */
@keyframes fade-left {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-right {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-left {
    animation: fade-left 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-right {
    animation: fade-right 0.8s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .areas-wrapper-premium {
        flex-direction: row; /* Side-by-side on tablet and desktop */
        align-items: flex-start;
        gap: var(--spacing-xxl);
    }
    
    .areas-content-premium {
        max-width: 45%;
    }
    
    .areas-visual-premium {
        max-width: 55%;
    }
}

@media (max-width: 767px) {
    .areas-title-premium {
        font-size: 1.75rem;
    }
    
    .areas-description-premium {
        font-size: 1rem;
    }
    
    .radius-highlight-premium {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .radius-icon-premium {
        width: 50px;
        height: 50px;
    }
    
    .radius-icon-premium i {
        font-size: 1.5rem;
    }
    
    .area-item-premium {
        padding: var(--spacing-sm);
    }
    
    .area-icon-premium {
        width: 40px;
        height: 40px;
    }
    
    .area-icon-premium i {
        font-size: 1rem;
    }
    
    .area-name-premium {
        font-size: 1.1rem;
    }
}

/* Coverage Map Section */
.coverage-map-premium {
    padding: var(--spacing-xxl) 0;
    background-color: #f8fafc;
}

.coverage-content-premium {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.coverage-map-visual {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.map-placeholder {
    padding: var(--spacing-xl);
}

.map-icon {
    font-size: 4rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.map-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-secondary);
}

.map-description {
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
}

.map-key {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.key-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.key-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.primary-dot {
    background-color: var(--color-secondary);
}

.secondary-dot {
    background-color: var(--color-secondary);
}

.radius-dot {
    background-color: #94a3b8;
}

.coverage-details-premium {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
}

.coverage-details-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--color-secondary);
	text-align: center;
}

.coverage-list-premium {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.coverage-item-premium {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.coverage-icon {
    color: var(--color-secondary);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.coverage-cta-premium {
    margin-top: var(--spacing-xl);
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid #e2e8f0;
}

.coverage-cta-text {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-secondary);
}
.coveragebtn:hover{
	color: #fff;
}
/* Areas CTA Section (Bottom) - Match services page style */
.areas-cta-premium {
    padding: 5rem 0;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
    text-align: center;
}

.cta-content-premium {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title-premium {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.cta-description-premium {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons-premium {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================== */
/* PREMIUM CONTACT & QUOTE SECTION - SaaS Style */
/* =========================================== */

/* Premium Contact Section */
.contact-premium { padding: var(--spacing-xxl) 0; background-color: var(--color-primary); /* Deep Navy (#0f172a) */ color: var(--color-white); }

/* Flexbox wrapper for split layout */
.contact-wrapper-premium {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: var(--spacing-xxl);
    align-items: center;
}

/* Left Side: Information */
.contact-info-premium {
    flex: 1;
    max-width: 100%;
}

.contact-title-premium {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.contact-subtitle-premium {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
}

/* Icon-based contact list */
.contact-details-premium {
    margin-bottom: var(--spacing-xl);
}

.contact-item-premium {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.contact-item-premium:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-icon-premium {
    width: 50px;
    height: 50px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-premium i {
    font-size: 1.25rem;
    color: var(--color-secondary); /* Emerald Green (#10b981) */
}

.contact-text-premium h3 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.contact-link-premium {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link-premium:hover {
    color: var(--color-secondary);
}

.contact-text-premium p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Trust Element */
.trust-badge-premium {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    max-width: 500px;
}

.trust-icon-premium {
    width: 50px;
    height: 50px;
    background-color: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon-premium i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.trust-text-premium h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.trust-text-premium p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Right Side: Glassmorphism Form */
.contact-form-premium {
    flex: 1;
    width: 100%;
    max-width: 100%;
}

.form-card-premium {
    background: rgba(255, 255, 255, 0.05); /* Glassmorphism effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.form-title-premium {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.form-subtitle-premium {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-lg);
}

/* Modern Form Styles */
.form-group-premium {
    margin-bottom: var(--spacing-lg);
}

.form-group-premium label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.postcode-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.important-badge { font-size: 0.75rem; font-weight: 600; color: #fff; background-color: rgba(16, 185, 129, 0.1); padding: 2px 8px; border-radius: var(--radius-full); }

.form-group-premium input,
.form-group-premium textarea,
.custom-select select {
    width: 100%;
    padding: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

.form-group-premium input::placeholder, .form-group-premium textarea::placeholder, .custom-select select { color: rgba(255, 255, 255, 0.5); }

.form-group-premium input:focus,
.form-group-premium textarea:focus,
.custom-select select:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Custom Select Styling */
.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 50px;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255, 255, 255, 0.5);
}

/* Postcode field emphasis */
.postcode-input {
    border: 1px solid rgba(16, 185, 129, 0.3);
    background-color: rgba(16, 185, 129, 0.05);
}

.postcode-input:focus {
    border-color: var(--color-secondary);
    background-color: rgba(16, 185, 129, 0.1);
}

/* Button with shine effect */
.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.btn-shine:hover::before {
    left: 100%;
}

/* Automatic periodic shine animation */
@keyframes auto-shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.btn-shine-auto {
    position: relative;
    overflow: hidden;
}

.btn-shine-auto::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: auto-shine 5s infinite;
    animation-delay: 2s;
}

/* Form Note */
.form-note-premium {
    margin-top: var(--spacing-md);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.form-note-premium i {
    color: var(--color-secondary);
    margin-right: 6px;
}

/* Success Message (Hidden by default) */
.success-message-premium {
    display: none;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background-color: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.success-icon-premium {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.success-title-premium {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
}

.success-text-premium {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
}

/* Responsive Design */
@media (min-width: 768px) {
    .contact-wrapper-premium {
        flex-direction: row; /* Side-by-side on tablet and desktop */
        align-items: flex-start;
        gap: var(--spacing-xxl);
    }
    
    .contact-info-premium {
        max-width: 45%;
    }
    
    .contact-form-premium {
        max-width: 55%;
    }
}

@media (max-width: 767px) {
    .contact-title-premium {
        font-size: 2rem;
    }
    
    .contact-subtitle-premium {
        font-size: 1rem;
    }
    
    .contact-item-premium {
        padding: var(--spacing-sm);
    }
    
    .contact-icon-premium {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon-premium i {
        font-size: 1rem;
    }
    
    .form-card-premium {
        padding: var(--spacing-lg);
    }
    
    .form-title-premium {
        font-size: 1.5rem;
    }
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 1;
    background: var(--color-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
}

.contact-details {
    margin-top: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.contact-link {
    font-weight: 600;
    color: var(--color-secondary);
}

/* Form Styles */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--color-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.form-note {
    margin-top: var(--spacing-md);
    font-size: 0.85rem;
    color: var(--color-gray);
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    flex-direction: column; /* Stack on mobile */
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo h3 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: var(--spacing-lg);
}

.footer-column h4 {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--spacing-xs);
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Premium Footer */
.footer-premium {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
}

.footer-content-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .footer-content-premium {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-lg);
    }
}

.footer-column-premium {
    display: flex;
    flex-direction: column;
}

.footer-logo-premium {
    margin-bottom: var(--spacing-lg);
}

.footer-logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.footer-logo-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.footer-social-premium {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-link-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}
.fab:hover {
    color: #000;  
}
.social-link-premium:hover {    background-color: var(--color-secondary);    color: var(--color-white);    transform: translateY(-2px);}

.footer-title-premium {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-xs);
}

.footer-title-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-list-premium {
    list-style: none;
}

.footer-list-premium li {
    margin-bottom: var(--spacing-sm);
}

.footer-list-premium a,
.footer-list-premium li {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 0.9rem;
}

.footer-list-premium a:hover {
    color: var(--color-secondary);
    padding-left: 4px;
}

.footer-bottom-premium {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--spacing-lg);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.copyright-premium {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-align: center;
}

.design-premium {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-style: italic;
}

.footer-social-bottom {
    display: flex;
    gap: var(--spacing-sm);
}

.social-bottom-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.social-bottom-link:hover {
    color: var(--color-secondary);
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #F7F7F7;
    padding: var(--spacing-sm) 0;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

@media (max-width: 767px) {
    .mobile-sticky-bar {
        display: block;
    }
}

.sticky-bar-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-secondary);
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.sticky-btn:hover {
    transform: translateY(-2px);
}

.sticky-btn i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.call-btn {
    color: var(--color-secondary);
}

.whatsapp-btn {
    color: #25D366;
}

/* Floating Action Button (Mobile Only) */
/* Using position: fixed to keep FAB at bottom right of viewport */
.fab-container {
    position: fixed;
    bottom: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.fab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px; /* Standard FAB size */
    height: 56px;
    border-radius: 50%;
    color: var(--color-secondary);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.fab:hover {
    transform: scale(1.1); /* Slight scale on hover */
    box-shadow: var(--shadow-lg);
}

.whatsapp-fab {
    background-color: #25D366; /* WhatsApp brand color */
}

.phone-fab {
    background-color: var(--color-secondary);
}

.fab-icon {
    font-size: 1.5rem;
}

.fab-text {
    display: none; /* Hide text on mobile, show icon only */
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--color-secondary); /* Emerald Green */
    color: var(--color-secondary);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Mobile Responsiveness - Small screens (below 768px) */
@media (max-width: 767px) {
    /* Header adjustments for mobile */
    .nav-desktop {
        display: none; /* Hide desktop nav on mobile */
    }
    
    .mobile-menu-toggle {
        display: flex; /* Show mobile menu toggle */
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    /* Center logo on mobile */
    .navbar {
        justify-content: space-between;
    }
    
    /* Hero section mobile adjustments */
    .hero-grid {
        text-align: center; /* Center content on mobile */
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 2.5rem); /* Smaller font on mobile */
    }
    
    .hero-subtitle {
        max-width: 100%;
        font-size: 1rem; /* Slightly smaller on mobile */
    }
    
    .hero-buttons {
        justify-content: center; /* Center buttons on mobile */
    }
    
    .btn-lg {
        padding: var(--spacing-sm) var(--spacing-lg); /* Smaller padding on mobile */
        font-size: 1rem;
    }
    
    /* Trust badges stack vertically on mobile */
    .trust-badge {
        min-width: 100%; /* Full width on mobile */
    }
    
    /* Visual placeholder smaller on mobile */
    .visual-placeholder {
        height: 300px;
        margin-top: var(--spacing-xl);
    }
    
    .van-icon {
        font-size: 3rem;
    }
    
    .placeholder-content h3 {
        font-size: 1.25rem;
    }

    /* Mobile sticky bar shown on mobile */
    .mobile-sticky-bar {
        display: block;
    }
}

/* Responsive Design - Tablet (768px and up) */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Hero Grid: Two-column layout on tablet and desktop */
    /* CSS Grid with 1fr 1fr creates two equal columns */
    .hero-grid {
        grid-template-columns: 1fr 1fr; /* Two equal columns */
        gap: var(--spacing-xxl);
    }
    
    /* Center text on mobile, left-align on desktop */
    .hero-content {
        text-align: left; /* Left alignment on desktop */
    }
    
    .hero-subtitle {
        max-width: 100%; /* Full width on desktop */
    }
    
    /* Hero buttons horizontal on desktop */
    .hero-buttons {
        flex-direction: row; /* Side-by-side buttons */
        flex-wrap: wrap; /* Allow wrapping if needed */
    }
    
    /* Trust badges horizontal on desktop */
    .trust-badges {
        flex-direction: row; /* Horizontal layout */
        flex-wrap: wrap; /* Allow wrapping */
        gap: var(--spacing-md);
    }
    
    .trust-badge {
        flex: 1; /* Flexible width */
        min-width: 200px; /* Minimum width for badges */
    }
    
    /* Services grid: 2 columns on tablet */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet */
    }
    
    .contact-wrapper {
        flex-direction: row; /* Side-by-side contact form and info */
    }
    
    .footer-content {
        flex-direction: row; /* Side-by-side footer sections */
        justify-content: space-between;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet */
    }
    
    /* Show FAB text on larger screens */
    .fab {
        width: auto;
        height: auto;
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: var(--radius-xl);
        gap: var(--spacing-xs);
    }
    
    .fab-text {
        display: inline;
        font-weight: 600;
    }
    
    /* Mobile menu toggle hidden on desktop */
    .mobile-menu-toggle {
        display: none;
    }
}

/* Responsive Design - Desktop (1024px and up) */
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
    }
    
    .areas-grid {
        grid-template-columns: repeat(6, 1fr); /* 6 columns on desktop */
    }
    
    .hero {
        min-height: 90vh; /* Taller hero on desktop */
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }

/* Services Page Specific Styles */
.services-hero-premium {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2310b981' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.services-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.services-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Areas Page Specific Styles */
.areas-hero-premium {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.areas-hero-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2310b981' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

/* Quote Page Specific Styles */
.quote-hero-premium {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-hero-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2310b981' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.quote-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.quote-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.quote-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.quote-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Specific Styles */
.contact-hero-premium {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2310b981' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.areas-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.areas-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.areas-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.areas-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.herobtnw:hover{
	color:#fff;
}
/* Why Choose Us Section */
.why-choose-us-premium {
    padding: 5rem 0;
    background-color: #f8fafc;
}

.benefits-grid-premium {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid-premium {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card-premium {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon-premium {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.benefit-title-premium {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.benefit-description-premium {
    color: #64748b;
    line-height: 1.6;
}

/* Services CTA Section */
.services-cta-premium {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, rgba(16, 185, 129, 0.8) 100%);
    color: white;
    text-align: center;
}

.cta-content-premium {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title-premium {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description-premium {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons-premium {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section padding for all premium sections */
.services-premium,
.why-choose-us-premium,
.services-cta-premium {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2.25rem;
    }
    
    .services-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .cta-title-premium {
        font-size: 2rem;
    }
    
    .services-hero-cta,
    .cta-buttons-premium {
        flex-direction: column;
        align-items: center;
    }
    
    .services-hero-cta .btn,
    .cta-buttons-premium .btn {
        width: 100%;
        max-width: 300px;
    }
}



/* Fix for service type select contrast issue */
#servicePremium {
    color: var(--color-primary) !important;
}


/* Ensure header stays white */
.header {
    background-color: rgba(255, 255, 255, 0.95) !important;
}



/* Fix mobile menu button contrast */
.mobile-menu .btn-secondary {
    color: var(--color-white) !important;
    border-color: var(--color-white) !important;
}
/* Fix mobile menu button hover */
.mobile-menu .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: var(--color-white) !important;
}
/* Fix mobile menu primary button */
.mobile-menu .btn-primary {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.mobile-menu .btn-primary:hover {
    background-color: rgba(15, 23, 42, 0.9) !important;
}



/* Fix for trust badges mobile layout - 2 on top, 1 centered below */
@media (max-width: 480px) {
    .trust-badges-corporate {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .trust-badge-corporate:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 50%;
    }
}
/* Update trust badges for all mobile sizes */
@media (max-width: 768px) {
    .trust-badges-corporate {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .trust-badge-corporate:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 50%;
    }


/* Fix areas CTA button contrast */
.areas-cta-premium .btn-secondary-premium {
    color: #fff !important;
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.areas-cta-premium .btn-secondary-premium:hover {
    background-color: var(--color-primary) !important;
    color: #fff !important;
}
}

/* =========================================== */
/* SIMPLE CONTACT PAGE STYLES */
/* =========================================== */

/* Contact Hero Section */
.contact-hero {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-light);
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Simple Contact Section */
.simple-contact-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--color-white);
}

.simple-contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.simple-contact-info {
    text-align: center;
}

.simple-contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.simple-contact-description {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

/* Contact Details */
.simple-contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xxl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.simple-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background-color: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    text-align: left;
}

.simple-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(16, 185, 129, 0.2);
}

.simple-contact-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.simple-contact-icon i {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.simple-contact-text {
    flex: 1;
}

.simple-contact-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.simple-contact-link {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    text-decoration: none;
    margin-bottom: var(--spacing-xs);
    transition: color var(--transition-fast);
}

.simple-contact-link:hover {
    color: var(--color-accent);
}

.simple-contact-text p {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin: 0;
}

.simple-contact-address {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

/* Simple Contact Form */
.simple-contact-form {
    background-color: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    margin: var(--spacing-xl) auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
    max-width: 800px;
}

.simple-contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.simple-contact-form-description {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.simple-contact-form .contact-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.simple-contact-form .form-group {
    margin-bottom: var(--spacing-md);
}

.simple-contact-form .form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.simple-contact-form .form-group input,
.simple-contact-form .form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background-color: var(--color-light);
}

.simple-contact-form .form-group input:focus,
.simple-contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    background-color: var(--color-white);
}

.simple-contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.simple-contact-form .btn {
    width: 100%;
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1.125rem;
}

.simple-contact-form .form-note {
    margin-top: var(--spacing-md);
    font-size: 0.85rem;
    color: var(--color-gray);
    text-align: center;
}

/* Contact CTA */
.simple-contact-cta {
    background-color: rgba(16, 185, 129, 0.05);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid rgba(16, 185, 129, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.simple-contact-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.simple-contact-cta p {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Simple Footer */
.simple-footer {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.simple-footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    align-items: center;
}

.simple-footer-logo .logo-link {
    color: var(--color-white);
    font-size: 1.5rem;
}

.simple-footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-xs);
}

.simple-footer-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.simple-footer-contact a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.simple-footer-contact a:hover {
    color: var(--color-accent);
}

.simple-footer-contact i {
    color: var(--color-secondary);
}

.simple-footer-copyright p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design for Contact Page */
@media (min-width: 768px) {
    .simple-contact-details {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .simple-contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .simple-contact-text {
        text-align: center;
    }
    
    .simple-contact-link {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: var(--spacing-xl) 0;
    }
    
    .simple-contact-section {
        padding: var(--spacing-xl) 0;
    }
    
    .simple-contact-title {
        font-size: 2rem;
    }
    
    .simple-contact-description {
        font-size: 1rem;
    }
    
    .simple-contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: var(--spacing-md);
    }
    
    .simple-contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .simple-contact-icon i {
        font-size: 1.25rem;
    }
    
    .simple-contact-link {
        font-size: 1.25rem;
    }
    
    /* Simple Contact Form Mobile Styles */
    .simple-contact-form {
        padding: var(--spacing-lg);
        margin: var(--spacing-lg) auto;
    }
    
    .simple-contact-form-title {
        font-size: 1.5rem;
    }
    
    .simple-contact-form-description {
        font-size: 1rem;
    }
    
    .simple-contact-form .form-group input,
    .simple-contact-form .form-group textarea {
        padding: var(--spacing-sm);
        font-size: 0.95rem;
    }
    
    .simple-contact-form .btn {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .simple-contact-cta {
        padding: var(--spacing-lg);
    }
    
    .simple-contact-cta h3 {
        font-size: 1.5rem;
    }
    
    .simple-contact-cta p {
        font-size: 1rem;
    }
}
.btnnew:hover{
    color:#fff !important;
}
