@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary-blue: #003366;
    --primary-blue-hover: #002244;
    --accent-orange: #FF6600;
    --accent-orange-hover: #E65C00;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --white: #FFFFFF;
    
    --font-primary: 'Montserrat', sans-serif;
    --font-fallback: 'Lato', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
    
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 200ms ease-in-out;
    --transition-slow: 300ms ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-fallback);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-blue);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 16px;
    z-index: 1000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 0;
}

/* ==================== HEADER ==================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header.scrolled .header-logo {
    height: 32px;
}

.header.scrolled .header-inner {
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    transition: padding var(--transition-normal);
}

.header-logo {
    height: 40px;
    width: auto;
    transition: height var(--transition-normal);
}

.header-nav {
    display: none;
}

.header-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.header-nav a {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 5px 0;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
}

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

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 500;
}

.header-phone:hover {
    color: var(--accent-orange);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
    transition: all var(--transition-normal);
    transform-origin: center;
}

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

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

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

/* Mobile Overlay Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.95);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-close span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--white);
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg) translateY(1px);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg) translateY(-1px);
}

.mobile-menu-nav {
    text-align: center;
}

.mobile-menu-nav ul {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-menu-nav li {
    margin: 20px 0;
}

.mobile-menu-nav a {
    font-family: var(--font-primary);
    font-size: 24px;
    color: var(--white);
    font-weight: 600;
}

.mobile-menu-nav a:hover {
    color: var(--accent-orange);
}

.mobile-menu-cta {
    background: var(--accent-orange);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    width: 90%;
    max-width: 300px;
    margin-bottom: 20px;
    transition: background var(--transition-fast);
}

.mobile-menu-cta:hover {
    background: var(--accent-orange-hover);
}

.mobile-menu-phone {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 16px;
}

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

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 6px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
}

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

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--dark-gray);
}

.nav-dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-blue);
}

/* ==================== HERO SECTION ==================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 800ms ease-out forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 40px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 800ms ease-out 200ms forwards;
}

.hero .cta-button {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 800ms ease-out 400ms forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== BUTTONS ==================== */

.cta-button {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    text-align: center;
}

.cta-button.primary {
    background: var(--accent-orange);
    color: var(--white);
}

.cta-button.primary:hover {
    background: var(--accent-orange-hover);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: scale(1.02);
}

.cta-button.primary:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.cta-button.secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* ==================== SERVICES SECTION ==================== */

.services-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    display: block;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    text-align: center;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--primary-blue);
    transition: fill var(--transition-normal);
}

.service-card:hover .service-icon svg {
    fill: var(--accent-orange);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.service-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* ==================== ABOUT SECTION ==================== */

.about-section {
    padding: 80px 0;
}

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

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

/* ==================== TESTIMONIALS SECTION ==================== */

.testimonials-section {
    padding: 80px 0;
    background: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/testimonial-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

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

.testimonials-section .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--white);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
}

.client-name {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--white);
    font-style: normal;
}

.client-title {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* ==================== CTA SECTION ==================== */

.cta-section {
    padding: 80px 0;
    background: var(--primary-blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #002244 100%);
}

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

.cta-section h2 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-section .cta-button {
    background: var(--accent-orange);
    color: var(--white);
}

.cta-section .cta-button:hover {
    background: var(--accent-orange-hover);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
}

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

.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

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

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

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-orange);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

.footer-newsletter p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.newsletter-form button {
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background var(--transition-fast);
}

.newsletter-form button:hover {
    background: var(--accent-orange-hover);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

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

.footer-legal a {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

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

/* ==================== PAGE HERO (Interior Pages) ==================== */

.page-hero {
    position: relative;
    padding: 120px 0 80px;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.7);
}

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

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.page-hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* ==================== SERVICES PAGE ==================== */

.services-detail-section {
    padding: 80px 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.service-detail-card:nth-child(even) .service-detail-image {
    order: -1;
}

.service-detail-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-image img {
    width: 100%;
    height: auto;
}

.service-detail-content h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
}

.service-detail-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content .learn-more {
    color: var(--accent-orange);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-detail-content .learn-more:hover {
    text-decoration: underline;
}

/* ==================== PROCESS SECTION ==================== */

.process-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== CASE STUDIES PAGE ==================== */

.case-studies-section {
    padding: 80px 0;
}

.case-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 25px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.case-study-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.case-study-image {
    height: 200px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.case-study-content {
    padding: 25px;
}

.case-study-tag {
    display: inline-block;
    background: var(--light-gray);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.case-study-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.case-study-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.case-study-result {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 6px;
    margin-bottom: 15px;
}

.result-number {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.result-label {
    font-size: 0.85rem;
    color: #666;
}

/* ==================== CONTACT PAGE ==================== */

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    fill: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item p {
    margin: 0;
    color: var(--dark-gray);
}

.contact-item a {
    color: var(--primary-blue);
}

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

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
    background: var(--light-gray);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-family: var(--font-primary);
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-fallback);
    font-size: 16px;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

.contact-form .cta-button {
    width: 100%;
}

/* ==================== ABOUT PAGE ==================== */

.about-mission-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.mission-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.mission-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-content strong {
    color: var(--primary-blue);
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--accent-orange);
}

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

.team-member h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-member .team-title {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==================== SERVICE DETAIL PAGE ==================== */

.service-benefits-section {
    padding: 80px 0;
}

.benefits-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list li {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
}

.benefits-list li svg {
    width: 30px;
    height: 30px;
    fill: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.benefits-list strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.benefits-list span {
    color: #666;
    font-size: 0.95rem;
}

.service-process-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.process-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
}

.process-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.process-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

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

/* ==================== ANIMATIONS ==================== */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE STYLES ==================== */

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-detail-card {
        grid-template-columns: 1fr 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .newsletter-form input {
        min-width: 200px;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .header-nav {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .case-studies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .page-hero h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .hero {
        min-height: 70vh;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 60vh;
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero .cta-button {
        width: 90%;
    }
    
    .mobile-menu-nav {
        display: block;
    }
    
    .header-phone {
        display: none;
    }
}

/* ==================== PREFER REDUCED MOTION ==================== */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .fade-in,
    .slide-up {
        opacity: 1;
        transform: none;
    }
}
