/* Modern Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --primary-blue: #1e40af;
    --light-blue: #3b82f6;
    --dark-blue: #1e3a8a;
    --orange: #FF6B35;
    --light-orange: #ff8c69;
    --dark-orange: #e55a2b;
    --white: #ffffff;
    --off-white: #fafbfc;

    /* Neutrals */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

    /* Typography */
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    position: static;
}

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

.logo img {
    height: 150px;
    width: auto;
    max-width: 600px;
}

.header-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.urgency-text {
    font-size: 12px;
    color: var(--orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    border: 2px solid transparent;
}

.header-phone:hover {
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.phone-icon {
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) blur(1px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.85), rgba(255, 107, 53, 0.75));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--orange);
    text-shadow: 2px 4px 8px rgba(255, 107, 53, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 32px;
    opacity: 0.95;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.hero-features .feature {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta {
    margin-top: 50px;
}

.cta-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    color: var(--white);
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.4);
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-icon {
    font-size: 24px;
    margin-bottom: 4px;
}

.cta-subtext {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: none;
    letter-spacing: normal;
}

.urgency-indicator {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    animation: pulse-text 2s infinite;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Trust Bar */
.trust-bar {
    background: var(--gray-50);
    padding: 30px 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.trust-text strong {
    display: block;
    font-weight: 700;
    color: var(--gray-800);
    font-size: 16px;
}

.trust-text span {
    color: var(--gray-600);
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border: 3px solid var(--orange);
    transform: scale(1.02);
}

.service-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
    text-transform: uppercase;
}

.service-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 12px;
}

.service-content p {
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 30px;
}

.service-features .feature {
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 14px;
    position: relative;
    padding-left: 24px;
}

.service-features .feature:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
    font-size: 16px;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Waste Management Special Card */
.service-card.waste-management {
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    color: var(--white);
}

.service-card.waste-management .service-content h3,
.service-card.waste-management .service-content p {
    color: var(--white);
}

.service-icon {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.waste-icon {
    font-size: 80px;
}

.waste-btn {
    background: var(--white) !important;
    color: var(--orange) !important;
}

.waste-btn:hover {
    background: var(--gray-100) !important;
}

.service-card.waste-management .service-features .feature:before {
    color: var(--white);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50), var(--white));
}

.why-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.why-choose h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 24px;
}

.why-choose p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 50px;
    line-height: 1.7;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.why-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.why-detail h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-detail p {
    color: var(--gray-600);
    margin: 0;
    font-size: 1rem;
}

.cta-secondary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Service Areas */
.service-areas {
    padding: 60px 0;
    background: var(--gray-50);
}

.areas-header {
    text-align: center;
    margin-bottom: 50px;
}

.areas-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 16px;
}

.areas-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.area-group {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.area-group h4 {
    color: var(--orange);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.area-group ul {
    list-style: none;
}

.area-group li {
    padding: 8px 0;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    padding-left: 20px;
}

.area-group li:before {
    content: '📍';
    position: absolute;
    left: 0;
}

.area-group li:last-child {
    border-bottom: none;
}

.areas-cta {
    text-align: center;
    margin-top: 40px;
}

.areas-cta p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.inline-cta {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
}

.inline-cta:hover {
    color: var(--primary-blue);
}

/* Contact Section - New Design */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50), var(--white));
}

.contact-header-main {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header-main h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-header-main p {
    color: var(--gray-600);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Left Column - Contact Info */
.contact-info-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.contact-hero-card {
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.contact-hero-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.contact-hero-icon {
    flex-shrink: 0;
}

.phone-pulse {
    font-size: 48px;
    animation: pulse-phone 2s infinite;
}

@keyframes pulse-phone {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.contact-hero-text {
    flex: 1;
    text-align: left;
}

.contact-hero-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-phone-number {
    color: var(--white);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-phone-number:hover {
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-phone-note {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.contact-hero-cta {
    position: relative;
    z-index: 2;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--orange);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.contact-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--gray-50);
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    background: var(--gray-50);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    background: var(--white);
    border-color: var(--orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.info-content h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-content p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Contact Features */
.contact-features {
    margin-top: 30px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-feature:last-child {
    border-bottom: none;
}

.feature-check {
    color: var(--orange);
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-feature span:last-child {
    color: var(--gray-700);
    font-weight: 500;
}

/* Right Column - Map */
.map-section-new {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.map-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: var(--white);
    text-align: center;
}

.map-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-header p {
    opacity: 0.9;
    margin: 0 0 20px 0;
}

.map-benefits {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.map-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    font-size: 16px;
}

.map-container-enhanced {
    height: 400px;
    position: relative;
}

.map-footer {
    padding: 25px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.map-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
}

.map-icon {
    font-size: 24px;
    color: var(--orange);
}

.map-highlight-text strong {
    color: var(--primary-blue);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}

.map-highlight-text p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-200);
    align-items: start;
}

.location-column {
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.location-column h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-column h4:before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--orange);
    border-radius: 2px;
}

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

.location-column li {
    color: var(--gray-600);
    font-size: 14px;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.location-column li:hover {
    color: var(--gray-800);
    padding-left: 25px;
}

.location-column li:last-child {
    border-bottom: none;
}

.location-column li:before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-size: 10px;
    top: 50%;
    transform: translateY(-50%);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 100px;
    width: auto;
    background: var(--white);
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.footer-desc {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-phone-link:hover {
    color: var(--light-orange);
}

.footer-phone-note {
    font-size: 12px;
    color: var(--gray-400);
}

.footer-services h4,
.footer-contact h4 {
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-services li {
    color: var(--gray-300);
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-contact-item {
    margin-bottom: 16px;
    color: var(--gray-300);
    line-height: 1.5;
}

.footer-contact-item strong {
    color: var(--white);
}

.footer-contact-item a {
    color: var(--orange);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--light-orange);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom-content p {
    color: var(--gray-400);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-keywords {
    color: var(--gray-500);
    font-size: 12px;
}

/* Top Right Floating CTA */
.top-floating-cta {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    display: none;
}

.top-floating-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    color: var(--white);
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.top-floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
}

/* Bottom Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: block;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--orange), var(--light-orange));
    color: var(--white);
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
}

.floating-icon {
    font-size: 24px;
}

.floating-text {
    display: flex;
    flex-direction: column;
}

.floating-text strong {
    font-size: 14px;
    font-weight: 600;
}

.floating-text span {
    font-size: 12px;
    opacity: 0.9;
}

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

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--orange);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--orange);
    color: var(--white);
}

.faq-answer {
    padding: 0 30px 25px;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }

    .contact-grid-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .top-floating-cta {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .header-cta {
        align-items: center;
    }

    .logo img {
        height: 60px;
    }

    .header-phone {
        font-size: 18px;
    }

    .hero {
        min-height: 600px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-feature {
        flex-direction: column;
        text-align: center;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .floating-cta {
        display: block;
        bottom: 15px;
        right: 15px;
    }

    .floating-btn {
        padding: 12px 16px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-hero-text {
        text-align: center;
    }

    .location-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-primary {
        padding: 16px 30px;
        font-size: 1.1rem;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-content {
        padding: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .floating-btn {
        padding: 10px 12px;
        border-radius: 25px;
    }

    .floating-text span {
        display: none;
    }

    .top-floating-cta {
        display: none !important;
    }
}

/* Print Styles */
@media print {
    .floating-cta,
    .header {
        display: none;
    }

    body {
        color: black;
        background: white;
    }
}

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

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}