/* Contaura - Professional Modern Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --navy: #0A2D45;
    --navy-mid: #0F3E60;
    --navy-light: #174C72;
    --navy-dark: #061D2E;
    --gold: #F4B000;
    --gold-dark: #D79E00;
    --gold-light: #FFD54F;
    --gold-glow: rgba(244, 176, 0, 0.3);
    --light-gray: #f8f9fc;
    --border-gray: #e5e7eb;
    --text-color: #1a1a2e;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --success: #10b981;
    --card-shadow: 0 4px 20px rgba(10, 45, 69, 0.06);
    --card-shadow-hover: 0 12px 40px rgba(10, 45, 69, 0.12);
    --transition-smooth: all 0.3s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

header nav {
    display: block;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    padding: 10px 18px;
    border-radius: 8px;
}

nav a:hover {
    background: var(--light-gray);
    color: var(--navy);
}

nav a.active {
    background: var(--navy);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    padding: 60px 40px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(244, 176, 0, 0.15);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(244, 176, 0, 0.3);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 32px;
    opacity: 0.9;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(244, 176, 0, 0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 176, 0, 0.4);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-smooth);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-trust {
    animation: fadeInUp 0.8s ease 0.3s both;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 8px;
    color: var(--gold);
}

.hero-stars .rating-text {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 8px;
}

/* Trust Section */
.trust-section {
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
    padding: 30px 40px;
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badge svg {
    color: var(--navy);
    opacity: 0.7;
}

/* Stats Section */
.stats {
    background: var(--light-gray);
    padding: 30px 40px;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Clients Section */
.clients-section {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-gray);
}

.clients-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.clients-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.client-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.client-logo:hover {
    opacity: 1;
    color: var(--navy);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px;
    color: var(--text-color);
}

.alt-bg {
    background: var(--light-gray);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-tag {
    display: inline-block;
    background: rgba(244, 176, 0, 0.1);
    color: var(--gold-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.section-title.light h2 {
    color: var(--white);
}

.section-title.light p {
    color: rgba(255, 255, 255, 0.8);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--border-gray);
    transition: var(--transition-smooth);
}

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

.service-icon,
.service-card .icon,
.service-card > .icon,
.icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--navy);
    font-size: 1.75rem;
}

.service-icon.blue,
.service-card .icon.blue,
.icon.blue {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%) !important;
    color: var(--white);
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.service-card a:hover {
    color: var(--gold-dark);
    gap: 10px;
}

.service-card a span {
    transition: var(--transition-smooth);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 50px 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-card.featured {
    background: rgba(244, 176, 0, 0.1);
    border-color: rgba(244, 176, 0, 0.3);
}

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.testimonial-rating span {
    margin-right: 2px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
}

.author-info strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.result-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-gray);
    display: flex;
    gap: 24px;
    transition: var(--transition-smooth);
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: transparent;
}

.result-metric {
    text-align: center;
    min-width: 100px;
}

.result-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    display: block;
}

.result-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-content h4 {
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.result-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.result-industry {
    display: inline-block;
    background: var(--light-gray);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: var(--light-gray);
    padding: 50px 40px;
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.cta-feature svg {
    color: var(--success);
}

.cta-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-form input,
.cta-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
    background: var(--white);
}

.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(244, 176, 0, 0.1);
}

.cta-form button {
    background: var(--navy);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cta-form button:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

.cta-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.cta-privacy a {
    color: var(--navy);
    text-decoration: underline;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--gold);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(244, 176, 0, 0.1) 0%, rgba(244, 176, 0, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold-dark);
}

.why-card h4 {
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 1rem;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Contact Bar */
.contact-bar {
    background: var(--navy);
    padding: 30px 40px;
}

.contact-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.contact-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.contact-bar-item svg {
    color: var(--gold);
}

.contact-bar-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.contact-bar-item span {
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: var(--navy-dark);
    color: var(--white);
    padding-top: 60px;
}

.footer-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px 40px;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
}

.footer-brand img {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--navy);
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-col li:not(:has(a)) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 40px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 3px 0;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 29, 46, 0.95);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    text-align: center;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin: 15px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.active li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 15px 30px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--gold);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.75rem;
    }

    .testimonials-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    .cta-container {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle,
    .mobile-nav-overlay,
    .mobile-nav {
        display: flex;
    }

    header nav ul {
        display: none;
    }

    .header-container {
        padding: 12px 20px;
    }

    .hero {
        padding: 60px 20px 80px;
    }

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

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

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

    .hero-btn,
    .hero-btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .trust-badges {
        gap: 20px;
    }

    .trust-badge {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    .container {
        padding: 50px 20px;
    }

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

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

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .result-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-bar-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-bar-item {
        flex-direction: column;
        gap: 8px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

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

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

    .cta-form-wrapper {
        padding: 24px;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--navy);
}

::selection {
    background: var(--gold);
    color: var(--navy);
}

/* Form Success State */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success h4 {
    color: var(--success);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: var(--navy);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 30px;
    color: var(--white);
}

.contact-info h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.contact-info .office {
    margin-bottom: 20px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-gray);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-smooth);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(244, 176, 0, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
    background: var(--navy);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    background: var(--navy-dark);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Breadcrumb */
.breadcrumb {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 40px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--navy);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--gold-dark);
}

.breadcrumb span {
    margin: 0 10px;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-info,
    .contact-form {
        padding: 30px 24px;
    }

    .breadcrumb {
        padding: 15px 20px;
    }
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.two-column h3 {
    color: var(--navy);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.two-column p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: bold;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.highlight-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 16px;
}

.highlight-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.value-item {
    background: var(--light-gray);
    padding: 20px 40px;
    border-radius: 50px;
    border: 1px solid var(--border-gray);
    transition: var(--transition-smooth);
}

.value-item:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.value-item:hover h4 {
    color: var(--navy);
}

.value-item h4 {
    color: var(--navy);
    font-size: 1rem;
    margin: 0;
}

/* Certifications / Badges */
.certifications {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cert-badge {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Tech Tags */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tag {
    background: var(--light-gray);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-gray);
    transition: var(--transition-smooth);
}

.tech-tag:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    transition: var(--transition-smooth);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: transparent;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 16px;
}

.step h4 {
    color: var(--navy);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Old Footer Grid (for inner pages compatibility) */
.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 992px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 20px;
    }

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

    .highlight-box h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: var(--card-shadow);
}

.faq-item h4 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

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

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: transparent;
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
}

.team-avatar-image {
    background: none;
    overflow: hidden;
}

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

.team-card h4 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--gold-dark);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Expertise Cards */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.expertise-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 30px;
    border-radius: 16px;
    color: var(--white);
    text-align: center;
}

.expertise-card h4 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.expertise-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .clients-logos {
        gap: 30px;
    }

    .client-logo {
        font-size: 1rem;
    }
}

/* WordPress specific styles */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* WordPress Navigation Menu */
.menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.menu-item a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    padding: 10px 18px;
    border-radius: 8px;
    display: block;
}

.menu-item a:hover {
    background: var(--light-gray);
    color: var(--navy);
}

.menu-item.current-menu-item a,
.menu-item.current_page_item a {
    background: var(--navy);
    color: var(--white);
}

nav a.active,
nav .current-menu-item a,
nav .current_page_item a {
    background: var(--navy);
    color: var(--white);
}

/* Center services grid with fewer items */
.services-grid {
    justify-content: center;
}

/* WordPress Admin Bar Fix */
.admin-bar header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar header {
        top: 46px;
    }
}

/* Legal Pages (Privacy Policy, Terms of Service) */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-color);
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--text-color);
}

.legal-content a {
    color: var(--navy);
    font-weight: 500;
}

.legal-content a:hover {
    color: var(--gold-dark);
}

.legal-content strong {
    font-weight: 600;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px 15px 40px;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .legal-content h3 {
        font-size: 1.1rem;
    }
}
