/* NYC Shine Porta Potty Rental - Professional Styles */

/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --primary-color: #00948f;
    --secondary-color: #edab2c;
    --cta-red: #dc2626;
    --cta-red-hover: #b91c1c;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 25px rgba(0, 0, 0, 0.12);
    --gradient-primary: linear-gradient(135deg, #00948f 0%, #007a76 100%);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    background-color: #f2f2f1;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

.logo img {
    height: 120px;
    width: auto;
    background-color: transparent;
    padding: 5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.btn-call {
    background-color: var(--cta-red);
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-call:hover {
    background-color: var(--cta-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============================================
   FLOATING CALL BUTTON
   ============================================ */
.floating-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--cta-red);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-call-button:hover {
    background-color: var(--cta-red-hover);
    transform: scale(1.15);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    }
    50% {
        box-shadow: 0 8px 30px rgba(220, 38, 38, 0.7);
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--cta-red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    font-weight: 700;
    font-size: 18px;
}

.btn-primary:hover {
    background-color: var(--cta-red-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn i {
    margin-right: 8px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--secondary-color);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 120px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,50 600,30 T1200,20 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-text {
    font-size: 19px;
    margin-bottom: 35px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 20px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.badge-item i {
    font-size: 32px;
    color: var(--secondary-color);
}

.badge-item div {
    text-align: left;
}

.badge-item strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.badge-item span {
    font-size: 14px;
    opacity: 0.9;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,50 600,30 T1200,20 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
    font-weight: 500;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 80px 0;
}

h2 {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 18px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 19px;
    margin-bottom: 50px;
    font-weight: 500;
    line-height: 1.6;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-overview {
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white);
    padding: 45px 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.service-icon {
    width: 85px;
    height: 85px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(0, 148, 143, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 148, 143, 0.4);
}

.service-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   COVERAGE AREA
   ============================================ */
.coverage-area {
    background-color: var(--light-bg);
}

.boroughs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.borough-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.borough-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background-color: var(--primary-color);
    color: var(--white);
}

.borough-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.borough-card:hover i {
    color: var(--white);
}

.borough-card h3 {
    font-size: 20px;
    margin-bottom: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 38px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-section .btn-primary {
    background-color: var(--secondary-color);
}

.cta-section .btn-primary:hover {
    background-color: #d99a1f;
}

/* ============================================
   FINAL CTA SECTION WITH MAP
   ============================================ */
.final-cta-section {
    background-color: var(--white);
    padding: 80px 0;
}

.cta-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-left {
    padding: 40px;
}

.cta-left h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: left;
}

.cta-tagline {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.6;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: var(--cta-red);
    color: var(--white);
    padding: 25px 50px;
    border-radius: 8px;
    font-size: 32px;
    font-weight: 800;
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 40px;
    animation: ctaPulse 2s infinite;
}

.btn-cta-large:hover {
    background-color: var(--cta-red-hover);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.6);
}

.btn-cta-large i {
    font-size: 36px;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 12px 45px rgba(220, 38, 38, 0.7);
    }
}

.nap-info {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.nap-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.nap-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 5px;
}

.nap-item strong {
    display: block;
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.nap-item p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.cta-right {
    position: relative;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.map-wrapper iframe {
    width: 100%;
    height: 500px;
    display: block;
}

@media (max-width: 768px) {
    .cta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-left {
        padding: 20px;
    }

    .cta-left h2 {
        font-size: 32px;
    }

    .btn-cta-large {
        font-size: 24px;
        padding: 20px 40px;
    }

    .btn-cta-large i {
        font-size: 28px;
    }

    .map-wrapper iframe {
        height: 350px;
    }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro h2 {
    margin-bottom: 25px;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-values {
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-card:hover .value-icon {
    color: var(--white);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.value-card:hover p {
    color: var(--white);
}

.about-services-section {
    margin-bottom: 60px;
}

.services-list {
    margin-top: 40px;
}

.service-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.service-item i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    text-align: left;
}

.service-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.about-commitment,
.about-experience {
    margin-bottom: 60px;
}

.about-commitment h2,
.about-experience h2 {
    margin-bottom: 25px;
}

.about-commitment p,
.about-experience p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-commitment ul {
    list-style: none;
    margin-top: 25px;
}

.about-commitment li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.about-commitment li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

/* ============================================
   TYPES PAGE
   ============================================ */
.types-content {
    max-width: 1200px;
    margin: 0 auto;
}

.unit-type {
    margin-bottom: 80px;
}

.unit-details {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.unit-details.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.unit-details.reverse .unit-image {
    order: 2;
}

.unit-details.reverse .unit-info {
    order: 1;
}

.unit-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.unit-info h2 {
    text-align: left;
    margin-bottom: 10px;
}

.unit-info h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 30px 0 15px;
    text-align: left;
}

.unit-info p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.features-list i {
    color: var(--primary-color);
    font-size: 18px;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.use-case {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.use-case i {
    font-size: 32px;
    color: var(--secondary-color);
}

.use-case:hover i {
    color: var(--white);
}

.use-case span {
    font-size: 15px;
    font-weight: 500;
}

.ada-note {
    background-color: #fff3cd;
    border-left: 4px solid var(--secondary-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
    display: flex;
    gap: 15px;
}

.ada-note i {
    font-size: 24px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.ada-note p {
    margin: 0;
    color: var(--text-dark);
}

.unit-cta {
    margin-top: 30px;
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--border-color), transparent);
    margin: 60px 0;
}

.comparison-section {
    margin: 60px 0;
    text-align: center;
}

.comparison-section h2 {
    margin-bottom: 20px;
}

.comparison-section > p {
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 40px;
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.comparison-card {
    background-color: var(--light-bg);
    padding: 35px;
    border-radius: 10px;
    text-align: left;
}

.comparison-card.highlight {
    background-color: var(--primary-color);
    color: var(--white);
}

.comparison-card h3 {
    font-size: 26px;
    margin-bottom: 25px;
    text-align: center;
}

.comparison-card.highlight h3 {
    color: var(--white);
}

.comparison-features p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 16px;
}

.comparison-card.highlight .comparison-features p {
    color: var(--white);
}

.comparison-features strong {
    color: var(--primary-color);
}

.comparison-card.highlight .comparison-features strong {
    color: var(--secondary-color);
}

.service-info {
    margin: 60px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-feature {
    text-align: center;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-feature:hover {
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.service-feature i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-feature h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-feature p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-intro h2 {
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-main {
    margin-bottom: 60px;
}

.contact-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background-color: var(--light-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.contact-card:hover .contact-icon {
    background-color: var(--white);
    color: var(--primary-color);
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 20px;
}

.contact-card:hover .contact-link {
    color: var(--white);
}

.contact-desc {
    font-size: 15px !important;
    color: var(--text-light);
    margin-top: 10px;
}

.contact-card:hover .contact-desc {
    color: rgba(255, 255, 255, 0.9);
}

.cta-box {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
}

.cta-box h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cta-box .btn-primary {
    background-color: var(--secondary-color);
}

.cta-box .btn-primary:hover {
    background-color: #d99a1f;
}

.service-areas {
    margin: 80px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.area-section h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: left;
}

.area-section h3 i {
    margin-right: 10px;
}

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

.area-section li {
    padding: 8px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
}

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

.areas-note {
    text-align: center;
    margin-top: 40px;
    font-size: 17px;
    color: var(--text-light);
    font-style: italic;
}

.map-section {
    margin: 80px 0;
    text-align: center;
}

.map-section h2 {
    margin-bottom: 40px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    margin-bottom: 30px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.map-info {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    display: inline-block;
    text-align: left;
}

.map-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    text-align: left;
}

.map-info p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.map-info p i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.map-info a {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-section {
    margin: 80px 0;
}

.faq-section h2 {
    margin-bottom: 50px;
}

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

.faq-item {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.faq-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: left;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: #2c3e50;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--white);
    text-align: left;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 15px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .unit-details,
    .unit-details.reverse {
        grid-template-columns: 1fr;
    }

    .unit-details.reverse .unit-image {
        order: 1;
    }

    .unit-details.reverse .unit-info {
        order: 2;
    }

    .floating-call-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }

    .services-grid,
    .benefits-grid,
    .comparison-table,
    .service-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-features {
        gap: 20px;
    }

    section {
        padding: 50px 0;
    }

    h2 {
        font-size: 24px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }

    .use-cases {
        grid-template-columns: 1fr;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .badge-item {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   FEATURED SERVICES
   ============================================ */
.featured-services {
    background-color: var(--white);
    padding: 80px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.featured-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 1;
}

.featured-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-card h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin: 25px 30px 15px;
    text-align: left;
}

.featured-card > p {
    color: var(--text-light);
    margin: 0 30px 20px;
    line-height: 1.7;
    font-size: 16px;
}

.featured-list {
    list-style: none;
    margin: 20px 30px;
}

.featured-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 15px;
}

.featured-list i {
    color: var(--primary-color);
    font-size: 16px;
}

.featured-card .btn-block {
    margin: 30px;
    width: calc(100% - 60px);
    text-align: center;
}

/* ============================================
   SERVICE AREAS DETAILED
   ============================================ */
.service-areas-detailed {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.areas-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.area-detail {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.area-detail:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.area-detail h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 18px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-detail h3 i {
    font-size: 22px;
}

.area-detail p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

.areas-note {
    text-align: center;
    margin-top: 50px;
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 500;
}

.areas-note a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* ============================================
   INDUSTRY VERTICALS
   ============================================ */
.industry-verticals {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 90px 0;
    position: relative;
}

.industry-verticals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,50 600,30 T1200,20 L1200,120 L0,120 Z" fill="rgba(0,148,143,0.03)"/></svg>');
    background-size: cover;
}

.industry-verticals .container {
    position: relative;
    z-index: 1;
}

.industry-verticals h2 {
    font-size: 42px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.industry-verticals .section-subtitle {
    font-size: 20px;
    margin-bottom: 60px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.industry-card {
    background-color: var(--white);
    padding: 50px 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 148, 143, 0.2);
}

.industry-card i {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.4s ease;
    display: inline-block;
}

.industry-card:hover i {
    transform: scale(1.15) rotate(5deg);
    color: var(--secondary-color);
}

.industry-card h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.industry-card:hover h3 {
    color: var(--primary-color);
}

.industry-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    transition: color 0.3s ease;
}

.industry-card:hover p {
    color: var(--text-dark);
}

/* ============================================
   FAQ SECTION HOME
   ============================================ */
.faq-section-home {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.faq-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item-home {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item-home:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.faq-item-home h3 {
    font-size: 19px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: left;
    font-weight: 600;
}

.faq-item-home p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* ============================================
   RESPONSIVE UPDATES FOR NEW SECTIONS
   ============================================ */
@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .areas-detailed-grid,
    .industries-grid,
    .faq-grid-home {
        grid-template-columns: 1fr;
    }

    .featured-card h3 {
        font-size: 24px;
    }

    .area-detail h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .featured-badge {
        top: 10px;
        right: 10px;
        font-size: 12px;
        padding: 6px 12px;
    }

    .industry-card i {
        font-size: 40px;
    }
}
