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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1e293b;
    overflow-x: hidden;
}

/* Color Variables - Professional Blue Palette */
:root {
    /* Professional Blue Palette */
    --brand-50: #E0F2FE;   /* Sky Blue - light backgrounds */
    --brand-100: #7DD3FC;  /* Light Blue - section alternates */
    --brand-200: #0EA5E9;  /* Sky Blue - badges/highlights */
    --brand-300: #0284C7;  /* Blue - hover/secondary */
    --brand-400: #0C4A6E;  /* Deep Blue - primary */
    
    /* Text Colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-gray-50: #f8fafc;
    --bg-gray-100: #f1f5f9;
    --bg-gray-900: #0f172a;
    
    /* 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);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Button Styles - Sharp Square Design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: var(--brand-300);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: white;
    color: var(--brand-400);
    border: 1px solid var(--brand-200);
}

.btn-outline:hover {
    border-color: var(--brand-100);
    background-color: var(--bg-gray-50);
    transform: translateY(-1px);
}

.btn-cta {
    background-color: var(--brand-100);
    color: white;
}

.btn-cta:hover {
    background-color: var(--brand-400);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Badge Styles */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--brand-400) 0%, var(--brand-300) 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(12, 74, 110, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Navigation - Pure Transparent Liquid Glass Effect */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.logo-image {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.footer-logo-image {
    height: 2rem;
    width: auto;
    object-fit: contain;
}

.logo-text {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--brand-400);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    text-shadow: 0 1px 2px rgba(12, 74, 110, 0.1);
}

.nav-link:hover {
    color: var(--brand-300);
    text-shadow: 0 2px 4px rgba(12, 74, 110, 0.2);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--brand-400) 0%, var(--brand-300) 100%);
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(12, 74, 110, 0.3);
    transition: all 0.2s ease;
}

.nav-contact:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(12, 74, 110, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
    padding: 0.5rem;
    background-color: transparent;
    border: none;
    transition: all 0.3s ease;
    z-index: 1001;
}

.bar {
    width: 1.5rem;
    height: 0.125rem;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('ticktokteam.webp');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 74, 110, 0.8) 0%, rgba(2, 132, 199, 0.6) 100%);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    color: var(--brand-100);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-400);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--brand-400) 0%, var(--brand-300) 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(12, 74, 110, 0.2);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Projects Preview */
.projects-preview {
    padding: 5rem 0;
    background-color: var(--bg-gray-50);
}

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

.project-card {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-400);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 74, 110, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-btn {
    background-color: white;
    color: var(--brand-400);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-btn:hover {
    background-color: var(--brand-50);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--brand-50);
}

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

.about-text {
    max-width: 500px;
}

.features-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-check {
    color: var(--brand-400);
    font-size: 1.125rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--brand-400);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.service-card-detailed {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 0;
    background-color: var(--bg-white);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-200);
}

.service-icon-large {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, var(--brand-400) 0%, var(--brand-300) 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(12, 74, 110, 0.25);
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background-color: var(--bg-gray-50);
}

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

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-400);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(12, 74, 110, 0.9));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}



.gallery-overlay h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    opacity: 0.9;
}

/* CTA Banner */
.cta-banner {
    position: relative;
    padding: 5rem 0;
    text-align: center;
    color: white;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('1.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 74, 110, 0.8) 0%, rgba(2, 132, 199, 0.7) 100%);
    z-index: -1;
}

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

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonial Carousel Section */
.testimonial {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    text-align: center;
    padding: 3rem;
    border-radius: 0;
    border: 2px solid var(--brand-200);
    box-shadow: var(--shadow-md);
    background-color: var(--bg-white);
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 3rem;
    height: 3rem;
    border: 2px solid var(--brand-200);
    background-color: var(--bg-white);
    color: var(--brand-400);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.125rem;
}

.carousel-btn:hover {
    background-color: var(--brand-400);
    color: white;
    transform: translateY(-1px);
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 0;
    background-color: var(--brand-100);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot.active {
    background-color: var(--brand-400);
    transform: scale(1.2);
}

.dot:hover {
    background-color: var(--brand-300);
}

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

.testimonial-quote {
    margin-bottom: 2rem;
}

.quote-icon {
    font-size: 2rem;
    color: var(--brand-200);
    margin-bottom: 1rem;
}

.quote-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--brand-300);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.author-rating {
    color: #fbbf24;
}

/* Quote Form Section */
.quote-form {
    padding: 5rem 0;
    background-color: var(--brand-100);
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.quote-info {
    color: white;
}

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

.quote-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.contact-item p {
    opacity: 0.9;
}

.quote-form-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--brand-100);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--brand-200);
    border-radius: 0;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-200);
    box-shadow: 0 0 0 4px rgba(126, 138, 109, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-description {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: var(--brand-50);
    color: var(--brand-400);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--brand-50);
}

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

.footer-copyright {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: auto;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: center;
        padding: 2rem 1rem;
        transition: top 0.3s ease;
        z-index: 999;
    }

    .navbar.scrolled .nav-menu {
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(25px) saturate(200%);
        -webkit-backdrop-filter: blur(25px) saturate(200%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 
                    inset 0 1px 0 rgba(255, 255, 255, 0.2),
                    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        top: 4rem;
    }

    .nav-menu .nav-link {
        color: var(--text-primary);
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        text-align: center;
        transition: all 0.2s ease;
    }

    .nav-menu .nav-link:hover {
        color: var(--brand-400);
    }

    .nav-menu .nav-link.active {
        color: var(--brand-400);
        font-weight: 600;
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .quote-title {
        font-size: 2rem;
    }

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

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

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

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

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

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

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card,
    .service-card-detailed {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .quote-form-container {
        padding: 2rem 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Phone Button */
.floating-phone {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-400) 0%, var(--brand-300) 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 8px 32px rgba(12, 74, 110, 0.3), 
                0 4px 16px rgba(12, 74, 110, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 500;
    animation: float 3s ease-in-out infinite;
    border: 2px solid var(--brand-400);
}

.floating-phone:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(12, 74, 110, 0.4), 
                0 6px 20px rgba(12, 74, 110, 0.3);
}

.floating-phone:active {
    transform: translateY(-1px) scale(0.98);
}

.floating-phone::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--brand-300) 0%, var(--brand-200) 100%);
    border-radius: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-phone:hover::before {
    opacity: 1;
}

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

/* Responsive floating button */
@media (max-width: 768px) {
    .floating-phone {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .floating-phone {
        bottom: 1rem;
        right: 1rem;
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }
}

/* Additional Page Styles */

/* Service/Location Hero */
.service-hero, .about-hero, .contact-hero, .location-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-hero .hero-overlay,
.about-hero .hero-overlay,
.contact-hero .hero-overlay,
.location-hero .hero-overlay,
.hero-overlay {
    background: linear-gradient(135deg, rgba(12, 74, 110, 0.5) 0%, rgba(2, 132, 199, 0.3) 100%);
}

.service-hero .hero-background img,
.about-hero .hero-background img,
.contact-hero .hero-background img,
.location-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.page-title, .service-hero-title, .location-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.page-subtitle, .service-hero-subtitle, .location-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Service Details */
.service-details, .location-services {
    padding: 5rem 0 8rem 0;
    background-color: var(--bg-white);
}

.service-cta, .location-cta, .about-cta {
    padding: 4rem 0 6rem 0;
    background: linear-gradient(135deg, var(--brand-400) 0%, var(--brand-300) 100%);
    color: white;
    text-align: center;
}

.service-cta .cta-content h2,
.location-cta .cta-content h2,
.about-cta .cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-cta .cta-content p,
.location-cta .cta-content p,
.about-cta .cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    background-color: white;
    color: var(--brand-400);
    border: 2px solid white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-cta:hover {
    background-color: var(--brand-100);
    border-color: var(--brand-100);
    color: var(--brand-400);
}

.service-content, .location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.service-main, .location-main {
    max-width: none;
}

.service-main h2, .location-main h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.service-main h3, .location-main h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-gray-50);
    border-radius: 0;
    border-left: 4px solid var(--brand-400);
}

.service-item i {
    color: var(--brand-400);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.service-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background-color: var(--bg-gray-50);
    border-radius: 0;
    border: 2px solid var(--brand-100);
}

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

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--brand-100);
}

.service-card li:last-child {
    border-bottom: none;
}

.area-list {
    list-style: none;
    padding: 0;
}

.area-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--brand-100);
    color: var(--text-secondary);
}

/* About Page Styles */
.about-content-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-white);
    border: 2px solid var(--brand-100);
    border-radius: 0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-400);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--brand-400) 0%, var(--brand-300) 100%);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-quick-info {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.quick-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quick-contact i {
    font-size: 2rem;
    color: var(--brand-100);
}

.quick-contact h3 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.quick-contact a, .quick-contact span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.125rem;
}

.contact-form-section {
    padding: 5rem 0;
    background-color: var(--bg-gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 0;
    border-left: 4px solid var(--brand-400);
}

.method-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--brand-400);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.method-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.method-info a {
    color: var(--brand-400);
    text-decoration: none;
    font-weight: 500;
}

.method-info span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.contact-form-container {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--brand-100);
}

.emergency-banner {
    background-color: var(--brand-400);
    padding: 2rem 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: white;
}

.emergency-icon i {
    font-size: 2.5rem;
    color: var(--brand-100);
}

.emergency-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.btn-emergency {
    background-color: white;
    color: var(--brand-400);
    border: 2px solid white;
}

.btn-emergency:hover {
    background-color: var(--brand-100);
    border-color: var(--brand-100);
    color: var(--brand-400);
}

/* Location Pages */
.service-areas, .neighborhoods {
    padding: 5rem 0;
    background-color: var(--bg-gray-50);
}

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

.area-card, .neighborhood-card {
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 0;
    text-align: center;
    border: 2px solid var(--brand-100);
    transition: all 0.3s ease;
}

.area-card:hover, .neighborhood-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-400);
    box-shadow: var(--shadow-lg);
}

.area-card h3, .neighborhood-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--brand-100);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--brand-50);
    transition: all 0.2s ease;
}

.dropdown-link:hover {
    background-color: var(--brand-50);
    color: var(--brand-400);
}

.dropdown-link:last-child {
    border-bottom: none;
}

.nav-link.active {
    color: var(--brand-400);
    font-weight: 600;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .service-content, .location-content, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-quick-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .page-title, .service-hero-title, .location-title {
        font-size: 2rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background-color: var(--bg-gray-50);
        margin-top: 0.5rem;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Smooth scroll offset for fixed navbar */
section {
    scroll-margin-top: 4rem;
}
