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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #374151;
    background-color: #FCFCFC;
    font-size: 18px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

h1 {
    font-size: 64px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 48px;
    letter-spacing: -0.015em;
}

h3 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 16px;
}

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

/* Header */
.header {
    background: #FFFFFF;
    box-shadow: 0 2px 12px rgba(42, 110, 119, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-lines {
    display: none;
}

.logo-line {
    width: 48px;
    height: 3px;
    background-color: #2A6E77;
    border-radius: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: #374151;
    transition: color 0.3s ease;
    padding: 12px 16px;
    border-radius: 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: #2A6E77;
}

/* Active navigation link */
.nav-link.active {
    color: #2A6E77;
    font-weight: 600;
    background-color: rgba(42, 110, 119, 0.1);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: #2A6E77;
    border-radius: 50%;
}

/* Position relative for pseudo-element */
.nav-link {
    position: relative;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(42, 110, 119, 0.1);
}

.hamburger .bar {
    width: 24px;
    height: 3px;
    background-color: #2A6E77;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    transform-origin: center;
}

/* Hamburger animation when active */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #FCFCFC 0%, #F8FAFC 100%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

.hero-logo-img {
    height: 120px;
    width: auto;
}

.hero-logo-lines {
    display: none;
}

.hero-logo-line {
    width: 64px;
    height: 4px;
    background-color: #2A6E77;
    border-radius: 2px;
}

.hero-title {
    margin-bottom: 24px;
    background: linear-gradient(135deg, #2A6E77 0%, #1E4F56 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: #374151;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-description {
    font-size: 18px;
    color: #374151;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.01em;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background-color: #2A6E77;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #1E4F56;
    transform: scale(1.03);
}

.btn-secondary {
    background-color: #E8A800;
    color: #111827;
}

.btn-secondary:hover {
    background-color: #B88600;
    transform: scale(1.03);
}

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

/* About Section */
.about {
    padding: 64px 0;
    background: #FFFFFF;
}

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

.section-title {
    text-align: center;
    margin-bottom: 32px;
    color: #2A6E77;
}

.section-subtitle {
    font-size: 18px;
    color: #374151;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-description {
    text-align: left;
    margin-bottom: 32px;
}

.about-description p {
    margin-bottom: 24px;
    font-size: 18px;
}

.about-cta {
    font-size: 20px;
    font-weight: 500;
    color: #2A6E77;
    text-align: center;
}

/* Services Section */
.services {
    padding: 64px 0;
    background: #F8FAFC;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.service-card {
    background: #FFFFFF;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(42, 110, 119, 0.08);
    transition: all 0.3s ease-in-out;
    border: 1px solid #E5E7EB;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(42, 110, 119, 0.12);
    border-color: #2A6E77;
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2A6E77 0%, #1E4F56 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    color: #FFFFFF;
    width: 32px;
    height: 32px;
}

.service-title {
    color: #2A6E77;
    margin-bottom: 16px;
}

.service-description {
    color: #374151;
    line-height: 1.7;
    font-size: 16px;
}

.services-section {
    margin-top: 64px;
}

.services-section-title {
    text-align: center;
    color: #2A6E77;
    margin-bottom: 48px;
}

.services-footer {
    text-align: center;
    margin-top: 32px;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #2A6E77;
}

/* Client Testimonials Section */
.testimonials {
    padding: 64px 0;
    background: #F8FAFC;
}

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

.testimonial-card {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(42, 110, 119, 0.08);
    transition: all 0.3s ease-in-out;
    border: 1px solid #E5E7EB;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(42, 110, 119, 0.12);
    transform: translateY(-2px);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star {
    width: 20px;
    height: 20px;
    color: #D1D5DB;
    fill: currentColor;
}

.star.filled {
    color: #F59E0B;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 48px;
    color: #2A6E77;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
}

.testimonial-author {
    border-top: 1px solid #E5E7EB;
    padding-top: 20px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.author-title {
    font-size: 16px;
    color: #2A6E77;
    font-weight: 500;
    margin-bottom: 2px;
}

.author-institution {
    font-size: 14px;
    color: #6B7280;
    font-weight: 400;
}

/* Core Values Section */
.core-values {
    padding: 64px 0;
    background: #FFFFFF;
}

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

.value-card {
    text-align: center;
    padding: 32px;
    background: #F8FAFC;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: #EAF1F2;
    transform: translateY(-4px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #E8A800 0%, #B88600 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon i {
    color: #FFFFFF;
    width: 32px;
    height: 32px;
}

.value-title {
    color: #2A6E77;
    margin-bottom: 16px;
}

.value-description {
    color: #374151;
    font-size: 16px;
    line-height: 1.6;
}

/* Quote Form Section */
.quote-form {
    padding: 64px 0;
    background: #FFFFFF;
}

.quote-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(42, 110, 119, 0.08);
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2A6E77;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: #FFFFFF;
    min-height: 48px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2A6E77;
    box-shadow: 0 0 0 3px rgba(42, 110, 119, 0.1);
}

/* Mobile form improvements */
@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 12px;
        font-size: 16px;
        min-height: 48px;
    }
    
    .checkbox-label {
        padding: 16px;
        margin-bottom: 12px;
        min-height: 44px;
        font-size: 16px;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
    }
}

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

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    color: #374151;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 12px;
    margin-bottom: 0;
    accent-color: #2A6E77;
}

.form-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
}

.form-actions .btn {
    min-width: 200px;
}

/* File Upload Styles */
.file-upload-container {
    margin-top: 8px;
}

.file-drop-zone {
    border: 2px dashed #D1D5DB;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    background-color: #F9FAFB;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.file-drop-zone:hover {
    border-color: #2A6E77;
    background-color: #F0F9FF;
}

.file-drop-zone.dragover {
    border-color: #2A6E77;
    background-color: #EFF6FF;
    transform: scale(1.02);
}

/* Mobile file upload improvements */
@media (max-width: 768px) {
    .file-drop-zone {
        padding: 24px 16px;
        min-height: 100px;
    }
    
    .file-drop-zone:active {
        background-color: #EFF6FF;
        border-color: #2A6E77;
    }
    
    .file-upload-text {
        font-size: 16px;
    }
    
    .file-upload-subtext {
        font-size: 13px;
    }
}

.file-drop-content {
    pointer-events: none;
}

.file-drop-content i {
    color: #9CA3AF;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.file-drop-zone.dragover .file-drop-content i {
    color: #2A6E77;
}

.file-upload-text {
    font-size: 18px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.file-upload-subtext {
    font-size: 14px;
    color: #9CA3AF;
    margin-bottom: 0;
}

.file-info {
    margin-top: 16px;
}

.file-requirements {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 0;
}

.file-requirements i {
    width: 16px;
    height: 16px;
    color: #9CA3AF;
    flex-shrink: 0;
}

.file-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background-color: #F3F4F6;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.file-info-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.file-icon {
    color: #2A6E77;
    width: 20px;
    height: 20px;
}

.file-details {
    display: flex;
    flex-direction: column;
}

.file-name {
    font-weight: 500;
    color: #374151;
    font-size: 14px;
}

.file-size {
    font-size: 12px;
    color: #9CA3AF;
}

.file-remove {
    background: none;
    border: none;
    color: #DC2626;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.file-remove:hover {
    background-color: #FEE2E2;
}

.file-error {
    color: #DC2626;
    font-size: 14px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-error i {
    width: 16px;
    height: 16px;
}

/* Contact Section */
.contact {
    padding: 64px 0;
    background: #F8FAFC;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-description {
    font-size: 18px;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    color: #2A6E77;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-text h4 {
    color: #2A6E77;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-text a {
    display: block;
    color: #374151;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 4px;
}

.contact-text a:hover {
    color: #2A6E77;
}

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

.contact-note {
    margin-top: 16px;
    color: #9CA3AF;
    font-size: 16px;
}

/* Footer */
.footer {
    background: #111827;
    padding: 48px 0;
    text-align: center;
    color: #FFFFFF;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
}

.footer-logo-lines {
    display: none;
}

.footer-logo-line {
    width: 48px;
    height: 3px;
    background-color: #FFFFFF;
    border-radius: 2px;
}

.footer-text {
    color: #9CA3AF;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-copyright {
    color: #6B7280;
    font-size: 16px;
}

/* Quote Form Responsive Styles */
@media (max-width: 1024px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .quote-form-container {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .form-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 42px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 24px;
    }
    
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 64px 0;
    }
    
    .hero-logo-img {
        height: 80px;
    }
    
    .hero-logo-line {
        width: 48px;
        height: 3px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        min-height: 48px;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #FFFFFF;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(42, 110, 119, 0.1);
        padding: 24px 0;
        gap: 0;
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 8px 0;
    }
    
    .nav-link {
        padding: 16px 24px;
        margin: 0 20px;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 500;
        min-height: 48px;
        transition: all 0.3s ease;
        color: #374151;
    }
    
    .nav-link:hover {
        background-color: #F8FAFC;
        color: #2A6E77;
        transform: translateX(4px);
    }
    
    .nav-link.cta-btn {
        background-color: #2A6E77;
        color: #FFFFFF;
        margin: 16px 20px 8px 20px;
    }
    
    .nav-link.cta-btn:hover {
        background-color: #1E4F56;
        color: #FFFFFF;
        transform: translateX(0);
    }

    /* Enhanced mobile navigation behavior */
    .nav-link[data-navigation="page"] {
        background-color: rgba(42, 110, 119, 0.05);
    }

    .nav-link[data-navigation="page"]:hover {
        background-color: rgba(42, 110, 119, 0.1);
    }

    /* Hide back to top on desktop index page */
    .back-to-top {
        display: none;
    }
}

/* Show back to top on mobile pages and non-home pages */
@media (max-width: 768px) {
    .back-to-top {
        display: flex;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 22px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 48px 0;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        font-size: 16px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .value-card {
        padding: 20px;
    }
    
    .nav-links {
        top: 70px;
    }
    
    .nav-link {
        padding: 14px 20px;
        margin: 0 16px;
        font-size: 16px;
    }
    
    .hamburger {
        padding: 6px;
    }
    
    .hamburger .bar {
        width: 22px;
        height: 2.5px;
        margin: 2.5px 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.contact-text a:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #2A6E77;
    outline-offset: 2px;
}

/* Enhanced mobile touch targets */
@media (max-width: 768px) {
    /* Ensure all interactive elements have adequate touch targets */
    .contact-item {
        padding: 12px;
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }
    
    .contact-item:hover {
        background-color: rgba(42, 110, 119, 0.05);
    }
    
    .contact-text a {
        padding: 8px 4px;
        margin: 4px 0;
        border-radius: 4px;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Service card touch improvements */
    .service-card {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(42, 110, 119, 0.1);
    }
    
    /* FAQ mobile improvements */
    .faq-question {
        min-height: 60px;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(42, 110, 119, 0.1);
    }
    
    /* File upload mobile improvements */
    .file-item {
        min-height: 48px;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(42, 110, 119, 0.1);
    }
    
    /* Checkbox improvements for mobile */
    .checkbox-label {
        -webkit-tap-highlight-color: rgba(42, 110, 119, 0.1);
        user-select: none;
    }
    
    /* Button mobile tap improvements */
    .btn {
        -webkit-tap-highlight-color: rgba(42, 110, 119, 0.1);
        position: relative;
        overflow: hidden;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Hero section mobile improvements */
    .hero-logo {
        margin-bottom: 24px;
    }
    
    .hero-cta {
        gap: 12px;
    }
    
    /* Section padding adjustments */
    .about,
    .services,
    .core-values,
    .contact,
    .quote-form {
        padding: 48px 0;
    }
    
    /* Better mobile typography */
    .section-title {
        margin-bottom: 24px;
    }
    
    .section-subtitle {
        margin-bottom: 32px;
        font-size: 16px;
        line-height: 1.6;
    }
}

/* WhatsApp Floating Button - repositioned for multi-page */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float i {
    color: #FFFFFF;
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    animation: whatsapp-pulse-hover 2s infinite;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float:focus {
    outline: 3px solid rgba(37, 211, 102, 0.5);
    outline-offset: 2px;
}

/* WhatsApp Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Hover Pulse Animation */
@keyframes whatsapp-pulse-hover {
    0% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    }
    50% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    }
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #111827;
    color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #111827;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Mobile Responsiveness for WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float i {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-float i {
        width: 26px;
        height: 26px;
    }
    
    /* Ensure WhatsApp button doesn't overlap with mobile menu */
    .whatsapp-float {
        z-index: 998;
    }
    
    .nav-links.active {
        z-index: 999;
    }
}

/* Reduced Motion Accessibility */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float {
        animation: none;
    }
    
    .whatsapp-float:hover {
        animation: none;
    }
}

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

/* ================================
   MOBILE PAGE TRANSITION STYLES
   ================================ */

/* Page transition wrapper */
.page-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-wrapper.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile-specific page transition */
@media (max-width: 768px) {
    .page-wrapper {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .page-wrapper.loaded {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Forward page transition */
    .page-wrapper.forward-enter {
        opacity: 0;
        transform: translateX(30px);
    }
    
    .page-wrapper.forward-enter-active {
        opacity: 1;
        transform: translateX(0);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Backward page transition */
    .page-wrapper.backward-enter {
        opacity: 0;
        transform: translateX(-30px);
    }
    
    .page-wrapper.backward-enter-active {
        opacity: 1;
        transform: translateX(0);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .page-wrapper.forward-exit {
        opacity: 1;
        transform: translateX(0);
    }
    
    .page-wrapper.forward-exit-active {
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .page-wrapper.backward-exit {
        opacity: 1;
        transform: translateX(0);
    }
    
    .page-wrapper.backward-exit-active {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* ================================
   BACK TO TOP BUTTON
   ================================ */

/* Back to top button - visible on all pages */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2A6E77 0%, #1E4F56 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(42, 110, 119, 0.4);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 24px rgba(42, 110, 119, 0.6);
    background: linear-gradient(135deg, #1E4F56 0%, #2A6E77 100%);
}

.back-to-top:active {
    transform: scale(0.95) translateY(0);
}

.back-to-top i {
    color: #FFFFFF;
    width: 24px;
    height: 24px;
}

.back-to-top:focus {
    outline: 3px solid rgba(42, 110, 119, 0.5);
    outline-offset: 2px;
}

/* Mobile back to top button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 48px;
        height: 48px;
        z-index: 997;
    }
    
    .back-to-top i {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 80px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
    
    .back-to-top i {
        width: 20px;
        height: 20px;
    }
}

/* Reduced motion for back to top button */
@media (prefers-reduced-motion: reduce) {
    .back-to-top,
    .page-wrapper {
        transition: none;
    }
    
    .back-to-top:hover {
        transform: none;
    }
}

/* ================================
   MOBILE PAGE LAYOUTS
   ================================ */

/* Individual page containers */
.page-container {
    min-height: calc(100vh - 200px);
    padding-top: 20px;
}

/* Mobile page-specific optimizations */
@media (max-width: 768px) {
    .page-container {
        min-height: calc(100vh - 160px);
        padding-top: 16px;
    }
    
    /* Service page mobile layout */
    .service-page .service-card {
        margin-bottom: 20px;
    }
    
    /* Pricing page mobile layout */
    .pricing-page .pricing-card {
        margin-bottom: 20px;
    }
    
    /* About page mobile layout */
    .about-page .about-content {
        padding: 0 16px;
    }
    
    /* Contact page mobile layout */
    .contact-page .contact-content {
        gap: 32px;
    }
    
    /* Quote page mobile layout */
    .quote-page .quote-form-container {
        margin: 0 16px;
    }
}

/* ================================
   MOBILE NAVIGATION IMPROVEMENTS
   ================================ */

/* Mobile nav consistency across pages */
@media (max-width: 768px) {
    .header {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: transform 0.3s ease;
    }
    
    .header.hide {
        transform: translateY(-100%);
    }
    
    /* Body padding to account for fixed header */
    body {
        padding-top: 80px;
    }
    
    /* Adjust for smaller screens */
    @media (max-width: 480px) {
        body {
            padding-top: 70px;
        }
        
        .header {
            padding: 12px 0;
        }
    }
}

/* ================================
   FOOTER CONSISTENCY
   ================================ */

/* Ensure footer is consistent across all pages */
.page-footer {
    background: #111827;
    padding: 48px 0;
    text-align: center;
    color: #FFFFFF;
    margin-top: 80px;
    width: 100%;
}

.page-footer .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.page-footer .footer-logo-img {
    height: 80px;
    width: auto;
}

.page-footer .footer-text {
    color: #9CA3AF;
    margin-bottom: 16px;
    font-size: 18px;
}

.page-footer .footer-copyright {
    color: #6B7280;
    font-size: 16px;
}

/* Mobile footer consistency */
@media (max-width: 768px) {
    .page-footer {
        padding: 40px 0;
        margin-top: 60px;
    }
    
    .page-footer .footer-logo-img {
        height: 60px;
    }
    
    .page-footer .footer-text {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .page-footer .footer-copyright {
        font-size: 14px;
        padding: 0 20px;
    }
}

/* ================================
   SINGLE-PAGE SCROLL REMOVAL
   ================================ */

/* Disable smooth scroll on mobile for page-based navigation */
@media (max-width: 768px) {
    html {
        scroll-behavior: auto;
    }
    
    /* Override smooth scroll for better page transition performance */
    .page-transitioning html {
        scroll-behavior: auto;
    }
}

/* ================================
   MOBILE PAGE LOADING STATES
   ================================ */

/* Page loading state */
.page-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FCFCFC;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.page-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.page-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #E5E7EB;
    border-top: 4px solid #2A6E77;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile-specific loading state */
@media (max-width: 768px) {
    .page-loading-spinner {
        width: 40px;
        height: 40px;
        border-width: 3px;
    }
}

/* ================================
   MOBILE SWIPE GESTURES
   ================================ */

/* Swipe indicator hints */
.swipe-hint {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(42, 110, 119, 0.9);
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 998;
    opacity: 0;
    animation: swipeHint 2s ease-in-out 3s forwards;
    pointer-events: none;
}

.swipe-hint::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(42, 110, 119, 0.9);
}

@keyframes swipeHint {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 768px) {
    .swipe-hint {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .swipe-hint {
        animation: none;
        opacity: 1;
    }
}

/* ================================
   MOBILE PAGE HEADER FIXES
   ================================ */

/* Ensure consistent header spacing on all mobile pages */
@media (max-width: 768px) {
    .mobile-page-content {
        margin-top: 20px;
    }
    
    /* Service page header spacing */
    .service-page .services {
        padding-top: 40px;
    }
    
    /* Pricing page header spacing */
    .pricing-page .pricing {
        padding-top: 40px;
    }
    
    /* About page header spacing */
    .about-page .about {
        padding-top: 40px;
    }
    
    /* Contact page header spacing */
    .contact-page .contact {
        padding-top: 40px;
    }
    
    /* Quote page header spacing */
    .quote-page .quote-form {
        padding-top: 40px;
    }
}

/* ================================
   MOBILE TOUCH IMPROVEMENTS
   ================================ */

/* Enhanced touch targets for mobile pages */
@media (max-width: 768px) {
    /* Ensure minimum touch target size */
    .page-container .btn,
    .page-container .nav-link,
    .page-container .service-card,
    .page-container .pricing-card,
    .page-container .contact-item {
        min-height: 48px;
        -webkit-tap-highlight-color: rgba(42, 110, 119, 0.1);
    }
    
    /* Improve touch feedback */
    .page-container .btn:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .page-container .service-card:active,
    .page-container .pricing-card:active {
        transform: scale(0.99);
        transition: transform 0.1s ease;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.faq::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 100 100"><circle cx="50" cy="50" r="2" fill="%234f46e5" opacity="0.1"/></svg>') repeat;
    background-size: 50px 50px;
    pointer-events: none;
}

.faq .container {
    position: relative;
    z-index: 2;
}

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

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
}

.faq-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.faq-question {
    padding: 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    background: white;
    z-index: 2;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question:hover::before {
    transform: scaleY(1);
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 0;
    padding-right: 24px;
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #4f46e5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    transform: rotate(0deg);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.faq-answer p {
    padding: 0 32px 32px 32px;
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
    font-size: 16px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 24px;
}

/* Animation for FAQ items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Staggered animation delay */
.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }
.faq-item:nth-child(9) { animation-delay: 0.9s; }
.faq-item:nth-child(10) { animation-delay: 1.0s; }
.faq-item:nth-child(11) { animation-delay: 1.1s; }
.faq-item:nth-child(12) { animation-delay: 1.2s; }
.faq-item:nth-child(13) { animation-delay: 1.3s; }
.faq-item:nth-child(14) { animation-delay: 1.4s; }
.faq-item:nth-child(15) { animation-delay: 1.5s; }

/* Focus states for accessibility */
.faq-question:focus {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 80px 0;
    }
    
    .faq-question {
        padding: 24px;
    }
    
    .faq-question h3 {
        font-size: 18px;
        padding-right: 16px;
    }
    
    .faq-answer p {
        padding: 0 24px 24px 24px;
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding-top: 16px;
    }
    
    .faq-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq-container {
        margin-top: 40px;
    }
    
    .faq-question {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        min-height: auto;
    }
    
    .faq-question h3 {
        font-size: 16px;
        padding-right: 0;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
    
    .faq-item {
        margin-bottom: 16px;
    }
    
    /* Additional mobile improvements */
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        font-size: 16px;
        padding: 14px 20px;
    }
    
    .service-card {
        padding: 16px;
    }
    
    .value-card {
        padding: 16px;
    }
    
    .nav-links {
        top: 60px;
        padding: 16px 0;
    }
    
    .nav-link {
        padding: 12px 16px;
        margin: 0 12px;
        font-size: 16px;
    }
    
    .hamburger {
        padding: 4px;
    }
    
    .hamburger .bar {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
    
    /* Section spacing improvements */
    .about,
    .services,
    .core-values,
    .contact,
    .quote-form {
        padding: 36px 0;
    }
    
    .section-title {
        margin-bottom: 20px;
        font-size: 22px;
    }
    
    .section-subtitle {
        margin-bottom: 24px;
        font-size: 15px;
    }
}

/* Dark mode support for FAQ */
@media (prefers-color-scheme: dark) {
    .faq {
        background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    }
    
    .faq-item {
        background: #374151;
        border-color: #4b5563;
    }
    
    .faq-question {
        background: #374151;
        color: #f9fafb;
    }
    
    .faq-question h3 {
        color: #f9fafb;
    }
    
    .faq-question:hover {
        background: #4b5563;
    }
    
    .faq-answer {
        background: #4b5563;
        border-top-color: #6b7280;
    }
    
    .faq-answer p {
        color: #d1d5db;
    }
}

/* ================================
   PRICING SECTION STYLES
   ================================ */

.pricing {
    padding: 64px 0;
    background: #FCFCFC;
}

.pricing-calculator {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 64px;
    box-shadow: 0 8px 32px rgba(42, 110, 119, 0.08);
    border: 1px solid #E5E7EB;
}

.calculator-header {
    text-align: center;
    margin-bottom: 32px;
}

.calculator-header h3 {
    font-size: 28px;
    color: #2A6E77;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.calculator-header p {
    font-size: 18px;
    color: #6B7280;
    margin: 0;
}

.calculator-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.calculator-group {
    display: flex;
    flex-direction: column;
}

.calculator-group label {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}

.calculator-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.calculator-services .checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #F9FAFB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.calculator-services .checkbox-label:hover {
    background: #F3F4F6;
    border-color: #2A6E77;
}

.calculator-services input[type="checkbox"]:checked + .checkmark {
    background-color: #2A6E77;
    border-color: #2A6E77;
}

.calculator-services input[type="checkbox"]:checked + .checkmark::after {
    display: block;
}

.calculator-group select {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    color: #374151;
    background: #FFFFFF;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.calculator-group select:focus {
    outline: none;
    border-color: #2A6E77;
}

.calculator-result {
    background: linear-gradient(135deg, #2A6E77 0%, #1E4F56 100%);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.estimate-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.estimate-label {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 500;
}

.estimate-amount {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    font-family: 'League Spartan', sans-serif;
}

.estimate-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.pricing-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(42, 110, 119, 0.08);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    box-shadow: 0 12px 32px rgba(42, 110, 119, 0.15);
    border-color: #2A6E77;
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: #2A6E77;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    transform: scale(1.02);
}

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

.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.pricing-card h3 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 12px;
}

.starting-price {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 8px;
}

.starting-price .price {
    font-size: 32px;
    font-weight: 700;
    color: #2A6E77;
    font-family: 'League Spartan', sans-serif;
}

.featured-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #E8A800 0%, #B88600 100%);
    color: #111827;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
    color: #374151;
}

.pricing-features li i {
    color: #16A34A;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.pricing-details {
    background: #F9FAFB;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    border-left: 4px solid #2A6E77;
}

.pricing-details p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #374151;
}

.pricing-details p:last-child {
    margin-bottom: 0;
}

.pricing-details strong {
    color: #2A6E77;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

/* Packages Section */
.packages-section {
    margin-bottom: 80px;
}

.packages-title {
    text-align: center;
    font-size: 36px;
    color: #2A6E77;
    margin-bottom: 16px;
}

.packages-subtitle {
    text-align: center;
    font-size: 20px;
    color: #6B7280;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.package-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 8px 24px rgba(42, 110, 119, 0.12);
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease-in-out;
    position: relative;
    text-align: center;
}

.package-card:hover {
    border-color: #2A6E77;
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(42, 110, 119, 0.2);
}

.package-card.featured {
    border-color: #2A6E77;
    background: linear-gradient(135deg, #2A6E77 0%, #1E4F56 100%);
    color: #FFFFFF;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.package-header h4 {
    font-size: 28px;
    margin-bottom: 16px;
    color: inherit;
}

.package-price {
    margin-bottom: 8px;
}

.original-price {
    font-size: 18px;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 12px;
}

.package-amount {
    font-size: 42px;
    font-weight: 700;
    color: inherit;
    font-family: 'League Spartan', sans-serif;
}

.package-save {
    background: #16A34A;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.package-card.featured .package-save {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
    text-align: left;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
}

.package-features li i {
    color: #16A34A;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.package-card.featured .package-features li i {
    color: #FFFFFF;
}

.package-description {
    margin-bottom: 32px;
}

.package-description p {
    font-size: 16px;
    color: inherit;
    opacity: 0.9;
    margin: 0;
}

.package-btn {
    width: 100%;
    justify-content: center;
}

/* Pricing Notes */
.pricing-notes {
    margin-bottom: 64px;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.note-card {
    background: #FFFFFF;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(42, 110, 119, 0.08);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.note-card:hover {
    box-shadow: 0 8px 24px rgba(42, 110, 119, 0.12);
    border-color: #2A6E77;
}

.note-card i {
    width: 48px;
    height: 48px;
    color: #2A6E77;
    margin-bottom: 16px;
}

.note-card h4 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 12px;
}

.note-card p {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
}

/* Pricing CTA */
.pricing-cta {
    text-align: center;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    border-radius: 16px;
    padding: 48px;
    border: 2px solid #E5E7EB;
}

.pricing-cta h3 {
    font-size: 32px;
    color: #2A6E77;
    margin-bottom: 16px;
}

.pricing-cta p {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Pricing */
@media (max-width: 1024px) {
    .calculator-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .calculator-services {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .pricing-calculator {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    .calculator-header h3 {
        font-size: 22px;
        flex-direction: column;
        gap: 8px;
    }
    
    .estimate-amount {
        font-size: 32px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-card h3 {
        font-size: 20px;
    }
    
    .starting-price .price {
        font-size: 28px;
    }
    
    .pricing-features li {
        font-size: 15px;
        padding: 6px 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        padding: 24px 20px;
    }
    
    .package-header h4 {
        font-size: 24px;
    }
    
    .package-amount {
        font-size: 36px;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
    }
    
    .note-card {
        padding: 24px 20px;
    }
    
    .note-card i {
        width: 40px;
        height: 40px;
    }
    
    .note-card h4 {
        font-size: 18px;
    }
    
    .note-card p {
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        min-height: 48px;
    }
    
    .pricing-cta {
        padding: 32px 24px;
    }
    
    .pricing-cta h3 {
        font-size: 26px;
    }
    
    .pricing-cta p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .pricing-calculator {
        padding: 16px;
        margin-bottom: 32px;
    }
    
    .calculator-header h3 {
        font-size: 20px;
    }
    
    .calculator-header p {
        font-size: 16px;
    }
    
    .estimate-display {
        flex-direction: column;
        gap: 8px;
    }
    
    .estimate-amount {
        font-size: 28px;
    }
    
    .estimate-label {
        font-size: 18px;
    }
    
    .estimate-note {
        font-size: 12px;
    }
    
    .pricing-grid {
        gap: 16px;
    }
    
    .pricing-card {
        padding: 16px;
    }
    
    .pricing-card h3 {
        font-size: 18px;
    }
    
    .starting-price .price {
        font-size: 24px;
    }
    
    .pricing-features li {
        font-size: 14px;
        padding: 4px 0;
    }
    
    .package-card {
        padding: 20px 16px;
    }
    
    .package-header h4 {
        font-size: 22px;
    }
    
    .package-amount {
        font-size: 32px;
    }
    
    .note-card {
        padding: 20px 16px;
    }
    
    .note-card h4 {
        font-size: 16px;
    }
    
    .note-card p {
        font-size: 14px;
    }
    
    .pricing-cta {
        padding: 24px 16px;
    }
    
    .pricing-cta h3 {
        font-size: 22px;
    }
    
    .pricing-cta p {
        font-size: 14px;
    }
}