@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Open+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #b57a1f;
    --primary-teal: #d4af37;
    --primary-dark: #172033;
    --accent-orange: #d4af37;
    --accent-orange-light: #f6e7bf;
    --dark-slate: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f8f4ec;
    --slate-50: #fffdf8;
    --white: #ffffff;
    --border-light: rgba(15, 23, 42, 0.08);
    --shadow-sm: 0 8px 18px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 14px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 28px 60px rgba(15, 23, 42, 0.14);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif; /* Standardize font for body text */
    background: var(--white);
    color: var(--slate-700);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Smooth scrolling and better performance */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Professional section styling */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    position: relative;
}

.section-alt {
    background: linear-gradient(135deg, var(--slate-50) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-top: 1px solid rgba(226, 232, 240, 0.3);
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

/* Enhanced service cards */
.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    border-radius: 18px;
    border: 3px solid #e8dcc8;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    border-color: var(--accent-orange);
}
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.5rem 0; /* Adjusted padding to 8px */
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: 'Roboto', sans-serif; /* Ensure consistent font-family for navigation */
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Adjusted padding to 8px */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-slate);
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.9;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-size: 1rem; /* Standardize font size */
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
    font-family: 'Roboto', sans-serif; /* Ensure consistent font-family for navigation links */
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-menu .btn-primary {
    padding: 0.75rem 1.5rem !important;
    display: flex;
    align-items: center;
    height: auto;
}

.nav-cta {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--slate-800);
    transform: none;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 100%);
    padding: 4rem 2rem;
    border-bottom: 1px solid var(--slate-200);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    color: var(--dark-slate);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-slate);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    font-weight: 600;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: var(--white);
    padding: 0.5rem 1rem; /* Adjusted padding to ensure consistency */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem; /* Adjusted font size to match other pages */
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), #f97316);
    color: var(--white);
    padding: 0.5rem 1rem; /* Adjusted padding to ensure consistency */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem; /* Adjusted font size to match other pages */
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-submit {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange), #f97316);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

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

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* SERVICES SECTION */
.services-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

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

.section-title p {
    color: var(--slate-500);
    font-size: 1.1rem;
}

.section-title h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--dark-slate);
}

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

.service-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-teal);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--slate-50);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

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

.service-card h3 {
    margin-bottom: 1rem;
    transition: var(--transition);
    color: var(--dark-slate);
}

.service-card p {
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

/* FEATURES SECTION */
.features-section {
    padding: 6rem 2rem;
    background: var(--slate-50);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

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

.feature-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--slate-200);
    position: relative;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--dark-slate);
}

.feature-description {
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CONTACT SECTION */
.contact-section {
    padding: 6rem 2rem;
    background: var(--slate-50);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-title {
    text-align: center;
    color: var(--dark-slate);
    margin-bottom: 3rem;
    position: relative;
}

.contact-title h2 {
    color: var(--dark-slate);
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-200);
    padding: 2.5rem;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: var(--white);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--slate-200);
}

.contact-info h3 {
    color: var(--dark-slate);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--slate-50);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-content h4 {
    color: var(--dark-slate);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-content p {
    color: var(--slate-600);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
}

.section-alt {
    background: var(--slate-50);
}

/* PAGE HEADER */
.page-header {
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 100%);
    padding: 4rem 2rem;
    border-bottom: 1px solid var(--slate-200);
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-header-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--dark-slate);
    margin-bottom: 1.5rem;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    text-align: center;
}

.page-header p {
    color: var(--slate-600);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
}

/* Professional Page Header Components */
.page-header-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: white;
    padding: 0.625rem 1.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

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

.page-header-badge:hover::before {
    left: 100%;
}

.badge-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.page-header-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    padding: 0.5rem 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: relative;
}

.feature-highlight:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
}

.feature-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-highlight span {
    font-weight: 500;
    color: var(--slate-700);
    font-size: 0.9rem;
    white-space: nowrap;
    font-size: 0.875rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-header-features {
        gap: 1rem;
    }
    
    .feature-highlight {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .feature-icon {
        font-size: 1rem;
    }
    
    .page-header-badge {
        padding: 0.4rem 1.2rem;
        font-size: 0.8rem;
    }
    
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .services-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info, .contact-form {
        margin: 0 auto;
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 1.275rem;
        font-size: 0.85rem;
    }
    
    .logo {
        font-size: 0.85rem;
        max-width: calc(100% - 70px);
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    color: #1e293b;
    transition: var(--transition);
    background: #ffffff;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.05);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--slate-50);
    border-radius: 6px;
    border: 1px solid var(--slate-200);
}

.checkbox-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-blue);
}

.checkbox-label {
    font-weight: 500;
    cursor: pointer;
    color: var(--dark-slate);
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions button {
    flex: 1;
}

/* FOOTER */
footer {
    background: linear-gradient(135deg, var(--dark-slate) 0%, #1e293b 100%);
    color: var(--white);
    padding: 4rem 2rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(226, 232, 240, 0.1);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

footer p {
    margin: 0.75rem 0;
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    opacity: 0.8;
    position: relative;
    padding: 0.5rem 0;
}

.footer-link:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* CARD */
.card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-200);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

/* UTILITY CLASSES */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

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

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-submit {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

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

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Message */
.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.success-message {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #10b981;
    animation: slideDown 0.3s ease-out;
}

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

.error-message {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #dc2626;
    animation: slideDown 0.3s ease-out;
}

/* OPEN, BORDER-LIGHT SITE REFRESH */
body {
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.10), transparent 30%),
        linear-gradient(180deg, #fffdf8 0%, #ffffff 38%, #f9f7f4 100%);
}

.navbar {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.nav-link:hover {
    color: var(--primary-dark);
}

.nav-link::after,
.footer-link::after {
    background: linear-gradient(135deg, var(--accent-orange), #e7c96e);
}

.hero,
.page-header {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.02), rgba(212, 175, 55, 0.08) 50%, rgba(255, 255, 255, 0.96) 100%);
    border-bottom: none;
}

.hero-stats {
    border-top: none;
    border-bottom: none;
    gap: 2rem;
    padding: 0;
    margin: 2rem 0 2.5rem;
}

.stat-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0.5rem;
    box-shadow: none;
    position: relative;
}

.section,
.services-section,
.features-section {
    background: transparent;
    max-width: 1280px;
    padding: clamp(3rem, 5vw, 5rem) 1.25rem;
}

.contact-section {
    background: transparent;
    width: min(100% - 2rem, 1080px);
    margin: 1rem auto 2rem;
    padding: clamp(2rem, 4vw, 3.5rem) 1rem;
    border-radius: 28px;
}

.section-alt {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.02), rgba(212, 175, 55, 0.04));
    border: none;
    border-radius: 28px;
}

.service-card,
.contact-form,
.contact-info,
.feature-item,
.card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border-light);
    border-radius: 22px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.07);
}

.service-card:hover,
.feature-item:hover,
.card:hover,
.contact-info:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.11);
}

.contact-item {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--accent-orange);
    border-radius: 16px;
}

.btn-primary,
.btn-submit {
    background: linear-gradient(135deg, #d4af37, #b57a1f);
    box-shadow: 0 10px 24px rgba(181, 122, 31, 0.22);
}

.btn-primary:hover,
.btn-submit:hover {
    box-shadow: 0 14px 30px rgba(181, 122, 31, 0.28);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-dark), #2f415f);
    box-shadow: 0 10px 24px rgba(23, 32, 51, 0.22);
}

.page-header-badge {
    background: linear-gradient(135deg, #d4af37, #b57a1f);
    box-shadow: 0 8px 22px rgba(181, 122, 31, 0.22);
}

.feature-highlight {
    background: transparent;
    border: none;
    border-radius: 0;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.checkbox-input {
    accent-color: var(--accent-orange);
}

footer {
    background: linear-gradient(135deg, #172033 0%, #24324b 100%);
}

footer::before {
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.10) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
}

img,
svg,
video {
    max-width: 100%;
    height: auto;
}

.contact-container {
    width: min(100%, 820px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.96);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid var(--border-light);
    border-radius: 22px;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.07);
}

.contact-title {
    width: 100%;
    margin-bottom: 0;
}

.contact-title p {
    margin: 0 auto;
}

.contact-section .btn-primary {
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    align-items: start;
    text-align: left;
}

.footer-section {
    min-width: 0;
}

@media (max-width: 992px) {
    .section,
    .services-section,
    .features-section,
    .contact-section,
    .hero,
    .page-header {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .service-card,
    .contact-form,
    .contact-info,
    .feature-item,
    .card,
    form[style] {
        padding: clamp(1.25rem, 3vw, 2rem) !important;
    }

    [style*="grid-template-columns: repeat(2, 1fr)"],
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }


    .hero h1,
    .page-header h1 {
        font-size: clamp(2rem, 5vw, 2.6rem);
    }
}

@media (max-width: 768px) {
    .logo {
        justify-content: flex-start;
        text-align: left;
        font-size: 0.9rem;
        max-width: calc(100% - 60px); /* Leave space for menu toggle */
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        position: relative;
        left: 0;
        top: 0;
        transform: none;
    }

    .logo img {
        height: 32px !important;
        flex-shrink: 0;
    }

    .page-header-features,
    .footer-links {
        justify-content: center;
    }

    .footer-content,
    .footer-section {
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary,
    .btn-submit {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .nav-menu {
        flex-direction: column;
    }
}

/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Mobile, Tablet, and All Resolutions
   ======================================== */

/* Responsive Grid System for Pricing and Features */
.responsive-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

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

/* Pricing Card Styling */
.pricing-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    padding: 2.5rem;
    border-radius: 18px;
    border: 3px solid #e8dcc8;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-orange);
}

.pricing-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-align: center;
    margin: 0 0 0.5rem 0;
    font-family: 'Roboto', sans-serif;
}

.pricing-card-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    color: var(--accent-orange);
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
}

.pricing-card-description {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--slate-700);
}

.pricing-card-trust {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    padding: 1.3rem;
    border-left: 3px solid var(--accent-orange);
    border-radius: 6px;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    flex-grow: 1;
}

.pricing-card-trust p {
    margin: 0;
    color: var(--slate-700);
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    color: var(--dark-slate);
}

.section-header p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--slate-700);
    font-weight: 400;
    line-height: 1.7;
}

/* Additional Notes Box */
.additional-notes {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
    border-radius: 12px;
    border: 2px solid #e8dcc8;
}

.additional-notes p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--slate-700);
    line-height: 1.6;
}

/* Service Card Grid */
.service-card-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.service-card-grid.service-card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.service-card-grid.service-card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
}

/* Feature Card */
.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    padding: 2.5rem;
    border-radius: 18px;
    border: 3px solid #e8dcc8;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-orange);
}

/* Contact Info Card */
.contact-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    padding: 2.5rem;
    border-radius: 18px;
    border: 3px solid #e8dcc8;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-card:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-orange);
}

/* Delivery Option Card */
.delivery-option {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent-orange);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.delivery-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

/* Add-on Service Card */
.addon-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    text-align: center;
}

.addon-card:hover {
    box-shadow: 0 12px 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

/* Support Option Card */
.support-option {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.support-option--featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--accent-orange);
    position: relative;
}

/* Value Card */
.value-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.value-card:hover {
    box-shadow: 0 12px 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

/* Story Card */
.story-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.story-card:hover {
    box-shadow: 0 12px 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

/* Why Choose Card */
.why-choose-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f7f4 100%);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.why-choose-card:hover {
    box-shadow: 0 12px 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

/* ========================================
   TABLET RESPONSIVE (768px - 992px)
   ======================================== */
@media (max-width: 992px) {
    .responsive-grid-3,
    .responsive-grid-2,
    .responsive-grid-2-wide {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-card-grid.service-card-grid--3,
    .service-card-grid.service-card-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .section-header p {
        font-size: 1rem;
    }

    .pricing-card,
    .feature-card,
    .contact-info-card {
        padding: 2rem;
    }

    .pricing-card-icon {
        font-size: 3rem;
    }

    .pricing-card-title {
        font-size: 1.35rem;
    }

    .delivery-option,
    .addon-card,
    .value-card,
    .story-card,
    .why-choose-card {
        padding: 2rem;
    }
}

/* ========================================
   MOBILE RESPONSIVE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    .responsive-grid-3,
    .responsive-grid-2,
    .responsive-grid-2-wide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card-grid.service-card-grid--2,
    .service-card-grid.service-card-grid--3,
    .service-card-grid.service-card-grid--4 {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3rem 1.25rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

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

    .section-header p {
        font-size: 0.95rem;
    }

    .pricing-card,
    .feature-card,
    .contact-info-card {
        padding: 1.75rem;
    }

    .pricing-card-icon {
        font-size: 2.5rem;
    }

    .pricing-card-title {
        font-size: 1.25rem;
    }

    .pricing-card-subtitle {
        font-size: 0.85rem;
    }

    .pricing-card-description {
        font-size: 1rem;
    }

    .pricing-card-trust {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .delivery-option,
    .addon-card,
    .value-card,
    .story-card,
    .why-choose-card {
        padding: 1.75rem;
    }

    .delivery-option h3,
    .addon-card h3,
    .value-card h3,
    .story-card h3,
    .why-choose-card h3 {
        font-size: 1.25rem;
    }

    .additional-notes {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .additional-notes p {
        font-size: 0.95rem;
    }

    /* Form responsive */
    .form-grid-2 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Support options */
    .support-options-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Add-ons grid */
    .addons-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Values grid */
    .values-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Stories grid */
    .stories-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Why choose grid */
    .why-choose-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Delivery options grid */
    .delivery-options-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Page header features */
    .page-header-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .feature-highlight {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Service card mobile adjustments */
    .services-grid > div {
        padding: 1.5rem !important;
        border-width: 2px !important;
        overflow-wrap: break-word;
        word-wrap: break-word;
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .services-grid h3 {
        font-size: 1.3rem !important;
    }
    .services-grid p {
        font-size: 0.9rem !important;
        letter-spacing: 0.02em !important;
    }
    .services-grid > div > div:first-child {
        font-size: 2.5rem !important;
    }
}

/* ========================================
   SMALL MOBILE RESPONSIVE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .section {
        padding: 2.5rem 1rem;
    }

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

    .section-header p {
        font-size: 0.9rem;
    }

    .pricing-card,
    .feature-card,
    .contact-info-card {
        padding: 1.5rem;
    }

    .pricing-card-icon {
        font-size: 2rem;
    }

    .pricing-card-title {
        font-size: 1.15rem;
    }

    .pricing-card-subtitle {
        font-size: 0.8rem;
    }

    .pricing-card-description {
        font-size: 0.95rem;
    }

    .pricing-card-trust {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .delivery-option,
    .addon-card,
    .value-card,
    .story-card,
    .why-choose-card {
        padding: 1.5rem;
    }

    .delivery-option h3,
    .addon-card h3,
    .value-card h3,
    .story-card h3,
    .why-choose-card h3 {
        font-size: 1.15rem;
    }

    .delivery-option p,
    .addon-card p,
    .value-card p,
    .story-card p,
    .why-choose-card p {
        font-size: 0.9rem;
    }

    .additional-notes {
        padding: 1.25rem;
    }

    .additional-notes p {
        font-size: 0.875rem;
    }

    /* Hero adjustments */
    .hero h1 {
        font-size: 1.75rem;
    }

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

    .hero-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Page header */
    .page-header {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    /* Buttons */
    .btn-primary,
    .btn-secondary,
    .btn-submit {
        width: 100%;
        max-width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Navigation */
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 0.85rem;
        max-width: calc(100% - 70px);
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .logo img {
        height: 32px !important;
        flex-shrink: 0;
    }

    .nav-menu {
        gap: 1.275rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0;
    }

    /* Service card small mobile adjustments */
    .services-grid > div {
        padding: 1rem !important;
    }
    .services-grid h3 {
        font-size: 1.15rem !important;
    }
    .services-grid p {
        font-size: 0.85rem !important;
    }
    .services-grid > div > div:first-child {
        font-size: 2rem !important;
    }
}

/* ========================================
   EXTRA SMALL MOBILE (max-width: 360px)
   ======================================== */
@media (max-width: 360px) {
    .section {
        padding: 2rem 0.75rem;
    }

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

    .pricing-card,
    .feature-card,
    .contact-info-card {
        padding: 1.25rem;
    }

    .pricing-card-icon {
        font-size: 1.75rem;
    }

    .pricing-card-title {
        font-size: 1.05rem;
    }

    .delivery-option,
    .addon-card,
    .value-card,
    .story-card,
    .why-choose-card {
        padding: 1.25rem;
    }

    /* Service card extra small mobile adjustments */
    .services-grid > div {
        padding: 0.75rem !important;
    }
    .services-grid h3 {
        font-size: 1rem !important;
    }
    .services-grid p {
        font-size: 0.8rem !important;
    }
    .services-grid > div > div:first-child {
        font-size: 1.75rem !important;
    }
}

/* ========================================
   LARGE TABLET/DESKTOP (min-width: 1200px)
   ======================================== */
@media (min-width: 1200px) {
    .responsive-grid-3 {
        max-width: 1200px;
    }

    .responsive-grid-2,
    .responsive-grid-2-wide {
        max-width: 1100px;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
    .navbar,
    .footer,
    .btn-primary,
    .btn-secondary,
    .btn-submit {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
}

.trust-badge {
    display: inline-block;
    margin: 1rem;
    padding: 1rem;
    border: 2px solid var(--primary-teal);
    border-radius: 8px;
    background: var(--slate-50);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.testimonial {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-teal);
    background: var(--slate-100);
    font-style: italic;
    box-shadow: var(--shadow-md);
}

/* ========================================
   BOOTSTRAP INTEGRATION
   ======================================== */

/* Navbar - Bootstrap Integration */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Nav Container - Bootstrap Integration */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo - Bootstrap Integration */
.logo {
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.8px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.9;
}

/* Nav Menu - Bootstrap Integration */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}


/* Menu Toggle (Hamburger) - Bootstrap Integration */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #0f172a;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1000;
}

/* Responsive Navigation - Bootstrap Integration */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
        position: relative;
        min-height: 60px;
    }

    .navbar {
        min-height: 60px;
    }


    .menu-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 1.275rem;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1rem;
        border-radius: 8px;
        z-index: 999;
        min-width: 200px;
    }

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

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

    .nav-link {
        text-align: center;
        padding: 0;
        display: block;
        width: 100%;
        font-size: 0.8rem;
    }

    .logo {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.9rem;
        max-width: calc(100% - 80px); /* Leave space for menu toggle (40px) and padding */
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .logo img {
        height: 32px !important;
        flex-shrink: 0;
    }
}

/* Bootstrap Button Overrides */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #b57a1f);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b57a1f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
}

/* Bootstrap Grid System Integration */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
}

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    position: relative;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
}

/* Bootstrap Container Integration */
.container, .container-fluid {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
}

/* Mobile Responsive - Bootstrap Integration */
@media (max-width: 576px) {
    .nav-menu {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .logo {
        font-size: 0.9rem;
        max-width: calc(100% - 70px); /* Leave space for menu toggle */
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ======================================== */
@media (max-width: 768px) {
    /* Section padding adjustments */
    .section, .section-alt {
        padding: 2.5rem 1rem;
    }

    /* Hero section mobile */
    .hero {
        padding: 2.5rem 1rem;
    }
    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .stat-item {
        text-align: center;
    }
    .stat-number {
        font-size: 1.25rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
    .hero .btn-primary {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        max-width: 300px;
    }

    /* Page header mobile */
    .page-header {
        padding: 2.5rem 1rem;
    }
    .page-header h1 {
        font-size: 1.5rem;
    }
    .page-header p {
        font-size: 0.95rem;
    }

    /* Service cards mobile */
    .service-card {
        padding: 1.5rem;
    }
    .service-card h2 {
        font-size: 1.5rem;
    }
    .service-card p {
        font-size: 0.95rem;
    }

    /* Services grid mobile */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    .services-grid > div {
        padding: 1.25rem !important;
    }
    .services-grid h3 {
        font-size: 1.25rem;
    }
    .services-grid p {
        font-size: 0.9rem;
    }
    .services-grid > div > div:first-child {
        font-size: 2rem;
    }

    /* Pricing cards mobile */
    .pricing-card {
        padding: 1.5rem;
    }
    .pricing-card h3 {
        font-size: 1.25rem;
    }
    .pricing-card p {
        font-size: 0.9rem;
    }
    .pricing-card .icon {
        font-size: 2.5rem;
    }

    /* Grid layouts mobile */
    .responsive-grid-2, .responsive-grid-2-wide, .responsive-grid-3 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Form mobile */
    .form-group {
        margin-bottom: 1rem;
    }
    .form-input, .form-select, .form-textarea {
        font-size: 0.95rem;
        padding: 0.65rem;
    }
    .form-label {
        font-size: 0.9rem;
    }

    /* Buttons mobile */
    .btn-primary, .btn-secondary, .btn-submit {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
        width: 100%;
        max-width: 100%;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    .footer-section {
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    /* Contact info cards mobile */
    .contact-info-card {
        padding: 1.5rem;
    }
    .contact-info-card h3 {
        font-size: 1.25rem;
    }
    .contact-info-card p {
        font-size: 0.9rem;
    }

    /* Navigation mobile */
    .nav-container {
        padding: 0.75rem 1rem;
    }
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav-link {
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }
    .menu-toggle {
        display: block !important;
        cursor: pointer;
        font-size: 1.5rem;
        color: var(--primary-dark);
        padding: 0.5rem;
        z-index: 1000;
    }
    .nav-menu {
        display: none;
    }
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 999;
    }

    /* Grid 2-column mobile */
    .responsive-grid-2 {
        grid-template-columns: 1fr !important;
    }

    /* Grid 3-column mobile */
    .responsive-grid-3 {
        grid-template-columns: 1fr !important;
    }

    /* Contact form mobile */
    .contact-form-grid {
        grid-template-columns: 1fr !important;
    }

    /* Stats mobile */
    .stat-number {
        font-size: 1.25rem !important;
    }
    .stat-label {
        font-size: 0.75rem !important;
    }

    /* Hero content mobile */
    .hero-content {
        text-align: center;
    }
    .hero-content > * {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Feature highlights mobile */
    .feature-highlight {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    .feature-highlight .feature-icon {
        font-size: 2rem;
    }
    .feature-highlight span {
        font-size: 0.9rem;
    }

    /* Page header badge mobile */
    .page-header-badge {
        width: 100%;
        max-width: 100%;
    }
    .badge-text {
        font-size: 0.9rem;
    }

    /* Grid 2-column with gap */
    .grid-2-gap {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem */
    .grid-2-gap-3rem {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem */
    .grid-2-gap-2rem {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2.5rem */
    .grid-2-gap-2-5rem {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 1000px */
    .grid-2-gap-3rem-max-1000px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 1000px */
    .grid-2-gap-2rem-max-1000px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2.5rem max-width 1200px */
    .grid-2-gap-2-5rem-max-1200px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 900px */
    .grid-2-gap-3rem-max-900px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 800px */
    .grid-2-gap-2rem-max-800px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 600px */
    .grid-2-gap-3rem-max-600px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 400px */
    .grid-2-gap-2rem-max-400px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 500px */
    .grid-2-gap-3rem-max-500px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 600px */
    .grid-2-gap-2rem-max-600px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 700px */
    .grid-2-gap-3rem-max-700px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 700px */
    .grid-2-gap-2rem-max-700px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 800px */
    .grid-2-gap-3rem-max-800px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 900px */
    .grid-2-gap-2rem-max-900px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 1000px */
    .grid-2-gap-3rem-max-1000px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 1000px */
    .grid-2-gap-2rem-max-1000px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 1100px */
    .grid-2-gap-3rem-max-1100px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 1100px */
    .grid-2-gap-2rem-max-1100px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 1200px */
    .grid-2-gap-3rem-max-1200px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 1200px */
    .grid-2-gap-2rem-max-1200px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 1300px */
    .grid-2-gap-3rem-max-1300px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 1300px */
    .grid-2-gap-2rem-max-1300px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 1400px */
    .grid-2-gap-3rem-max-1400px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 1400px */
    .grid-2-gap-2rem-max-1400px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 1500px */
    .grid-2-gap-3rem-max-1500px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 1500px */
    .grid-2-gap-2rem-max-1500px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 1600px */
    .grid-2-gap-3rem-max-1600px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 1600px */
    .grid-2-gap-2rem-max-1600px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 1700px */
    .grid-2-gap-3rem-max-1700px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 1700px */
    .grid-2-gap-2rem-max-1700px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 1800px */
    .grid-2-gap-3rem-max-1800px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 1800px */
    .grid-2-gap-2rem-max-1800px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 1900px */
    .grid-2-gap-3rem-max-1900px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 1900px */
    .grid-2-gap-2rem-max-1900px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 3rem max-width 2000px */
    .grid-2-gap-3rem-max-2000px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Grid 2-column with gap 2rem max-width 2000px */
    .grid-2-gap-2rem-max-2000px {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}
