/* Puritex Porta Potty Rental Portland - Main Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #063151;
    --secondary-color: #063150;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --accent: #0a5282;
    --cta-red: #DC2626;
    --cta-red-hover: #B91C1C;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent);
}

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

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.logo-container {
    flex: 0 0 auto;
}

.logo {
    max-width: 180px;
    height: auto;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-links li a:not(.btn) {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 0.65rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-links li a:not(.btn):hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.nav-links li a:not(.btn).active {
    background-color: var(--primary-color);
    color: var(--white);
}

.nav-links .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.nav-links .btn i {
    font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 6rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: 30px 30px;
    opacity: 0.3;
}

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

.hero h1 {
    color: var(--white);
    font-size: 3.25rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    color: var(--white);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-trust-badge i {
    color: #22C55E;
    font-size: 1.3rem;
}

.hero-trust-badge span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.hero-feature span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background-color: var(--cta-red-hover);
    border-color: var(--cta-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-secondary i {
    color: var(--white);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.3rem;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.section-title p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
.services {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #e8e8e8;
    position: relative;
    overflow: visible;
}

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

.service-card .image-wrapper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

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

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: var(--primary-color);
}

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

/* Features Section */
.features {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-icon i {
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(6, 49, 81, 0.25);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(6, 49, 81, 0.35);
}

.feature-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 1.35rem;
}

/* Coverage Areas */
.coverage-areas {
    background-color: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.area-item {
    background-color: var(--light-bg);
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    color: var(--primary-color);
}

/* FAQ Section */
.faq {
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.nap-info-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.nap-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.nap-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.nap-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nap-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.nap-details h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nap-details p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.nap-details a {
    color: var(--primary-color);
    font-weight: 600;
}

.nap-details a:hover {
    color: var(--cta-red);
}

.map-container {
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

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

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1E3A8A 0%, #1E40AF 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 40px 40px;
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

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

.cta-content-left {
    text-align: left;
}

.cta-content-left h2 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.cta-urgency {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-button {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    padding: 1.25rem 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.cta-nap-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.cta-nap-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-nap-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cta-nap-item span {
    font-size: 1.05rem;
    font-weight: 500;
}

.cta-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.trust-badges {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge i {
    color: #22C55E;
    font-size: 1.25rem;
}

.trust-badge span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: var(--white);
}

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

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

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

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

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

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

.footer-bottom p {
    color: #FFFFFF;
}

/* Floating Call Button */
.floating-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: var(--cta-red);
    color: var(--white);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.floating-call-button:hover {
    background-color: var(--cta-red-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
}

.floating-call-button i {
    font-size: 1.8rem;
    color: var(--white);
}

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

/* Types Page Specific */
.type-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.type-detail:nth-child(even) {
    direction: rtl;
}

.type-detail:nth-child(even) > * {
    direction: ltr;
}

.type-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.type-info h2 {
    margin-bottom: 1rem;
}

.type-info ul {
    list-style: none;
    margin: 1.5rem 0;
}

.type-info ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.type-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* About Page Specific */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Industries Section */
.industries {
    background-color: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.industry-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #e8e8e8;
    position: relative;
}

.industry-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 12px 35px rgba(6, 49, 81, 0.15);
    border-color: var(--primary-color);
}

.industry-card i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
    color: var(--white);
    -webkit-text-fill-color: var(--white);
    box-shadow: 0 4px 15px rgba(6, 49, 81, 0.2);
}

.industry-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: var(--primary-color);
}

.industry-card p {
    margin-bottom: 1.75rem;
    line-height: 1.65;
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent) 100%);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    background-color: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(6, 49, 81, 0.25);
    border: 4px solid var(--white);
    position: relative;
    z-index: 2;
}

.process-step h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        padding: 0.5rem;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

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

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--white);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        padding: 1.5rem;
        gap: 0.5rem;
        border-radius: 0 0 12px 12px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

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

    .nav-links li a:not(.btn) {
        width: 100%;
        text-align: left;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        display: block;
    }

    .nav-links .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
    }

    nav {
        width: 100%;
        position: relative;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

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

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

    .hero-cta-group {
        gap: 1.5rem;
    }

    .hero-trust-badge {
        padding: 0.75rem 1.5rem;
    }

    .hero-features {
        gap: 1.5rem;
    }

    .hero-feature i {
        font-size: 1.75rem;
    }

    .type-detail {
        grid-template-columns: 1fr;
    }

    .type-detail:nth-child(even) {
        direction: ltr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card .image-wrapper {
        height: 240px;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

    .nap-info-box {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-badges {
        gap: 1.5rem;
    }

    .cta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-content-left {
        text-align: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .areas-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .floating-call-button {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .floating-call-button i {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 200px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

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

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-trust-badge {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }

    .hero-features {
        gap: 1.25rem;
    }

    .hero-feature i {
        font-size: 1.5rem;
    }

    .hero-feature span {
        font-size: 0.85rem;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-content-left h2 {
        font-size: 1.75rem;
    }

    .cta-urgency {
        font-size: 1rem;
    }

    .cta-nap-info {
        align-items: center;
    }

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

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
    }

    .cta-button {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }

    .who-we-are-section .two-column-layout,
    .quality-section .two-column-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-cards-right {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .about-industries-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .type-content-wrapper,
    .type-content-wrapper.reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .type-content-wrapper.reverse .type-image-modern,
    .type-content-wrapper.reverse .type-info-modern {
        order: unset;
    }

    .features-uses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .type-info-modern h2 {
        font-size: 1.85rem;
    }
}

/* ===========================
   ABOUT PAGE SPECIFIC STYLES
   =========================== */

/* Hero Stats Badges */
.hero-stats-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stats-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-badge i {
    color: var(--white);
    font-size: 1.2rem;
}

.stats-badge span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-left h2,
.content-right h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-left p,
.content-right p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.stats-cards-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
}

.stat-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
}

.mission-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.mission-quote i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.mission-quote h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.mission-quote p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    line-height: 1.9;
    font-style: italic;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-choose-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-icon {
    transform: rotate(10deg) scale(1.1);
}

.why-icon i {
    font-size: 2.25rem;
    color: var(--white);
}

.why-choose-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.why-choose-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Quality Section */
.quality-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Industries Section */
.about-industries-section {
    padding: 5rem 0;
    background: white;
}

.about-industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.about-industry-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.about-industry-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
    transition: all 0.3s ease;
}

.about-industry-card:hover .about-industry-icon {
    transform: rotate(10deg) scale(1.1);
}

.about-industry-icon i {
    font-size: 2.25rem;
    color: var(--white);
}

.about-industry-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.about-industry-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-icon i {
    font-size: 2.25rem;
    color: var(--white);
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* ===========================
   TYPES PAGE SPECIFIC STYLES
   =========================== */

/* Types Overview Section */
.types-overview {
    padding: 3rem 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.overview-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #eee;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.overview-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
}

.overview-icon i {
    font-size: 2rem;
    color: var(--white);
}

.overview-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.overview-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Type Detail Modern */
.type-detail-modern {
    padding: 5rem 0;
    background: white;
}

.type-detail-modern.ada-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.type-content-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.type-content-wrapper.reverse {
    grid-template-columns: 1fr 400px;
}

.type-content-wrapper.reverse .type-image-modern {
    order: 2;
}

.type-content-wrapper.reverse .type-info-modern {
    order: 1;
}

.type-image-modern {
    position: relative;
}

.type-image-modern img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.type-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.type-badge.ada-badge {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.type-info-modern h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
}

.type-intro {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Features Uses Grid */
.features-uses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.features-column h3,
.uses-column h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features-column h3 i,
.uses-column h3 i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Feature List Compact */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item-compact {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item-compact i {
    color: #22C55E;
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.feature-item-compact span {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Use Cases */
.use-cases {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.use-case-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.use-case-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
}

.use-case-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.use-case-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}
