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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6a9e;
    --accent-color: #4a90e2;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

/* Header Styles */
.site-header {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.site-header.scrolled .nav-link {
    color: var(--text-dark);
}

.site-header.scrolled .header-phone {
    color: var(--text-dark);
}

.site-header.scrolled .header-phone:hover {
    color: var(--primary-color);
}

.site-header.scrolled .mobile-menu-toggle span {
    background-color: var(--text-dark);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

.header-phone .phone-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}

.header-phone .phone-text {
    display: inline-block;
}

@media (max-width: 768px) {
    .header-phone .phone-text {
        display: none;
    }

    .header-phone {
        padding: 5px;
    }
}

.logo-link {
    display: block;
    text-decoration: none;
}

.logo {
    height: 40px;
    width: auto;
    max-width: 200px;
}

/* Navigation Styles */
.main-nav {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.site-header.scrolled .nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

.btn-contact-header {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: none !important;
}

.btn-contact-header:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-contact-header::after {
    display: none;
}

.site-header.scrolled .btn-contact-header {
    background-color: var(--primary-color);
    color: white !important;
}

.site-header.scrolled .btn-contact-header:hover {
    background-color: var(--secondary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 60px 20px;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.1s, transform 0.8s ease 0.1s;
}

.hero-headline.animated {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 40px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.hero-subtitle.animated {
    opacity: 1;
    transform: translateY(0);
}

.hero-logo-wrapper {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-logo-wrapper.animated {
    opacity: 1;
    transform: translateY(0);
}

.hero-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.hero-cta.animated {
    opacity: 1;
    transform: translateY(0);
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: none;
}

.btn-hero-primary {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section - Enhanced Styling */
.services .section-title {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.services .section-subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 60px;
    margin-top: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-block {
    max-width: 900px;
    margin: 0 auto;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* What We Do Section - White Background */
.what-we-do {
    background-color: var(--bg-white);
    text-align: left;
}

.section-intro {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-intro.animated {
    opacity: 1;
    transform: translateY(0);
}

.what-we-do-headline {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.what-we-do-headline.animated {
    opacity: 1;
    transform: translateY(0);
}

.what-we-do .content-block {
    max-width: 100%;
}

.what-we-do .content-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.what-we-do .content-text.animated {
    opacity: 1;
    transform: translateY(0);
}

.what-we-do .content-text:nth-of-type(1) {
    transition-delay: 0.2s;
}

.what-we-do .content-text:nth-of-type(2) {
    transition-delay: 0.3s;
}

/* Who We Serve */
.who-we-serve {
    text-align: center;
}

.section-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.section-content-with-image.reverse {
    direction: rtl;
}

.section-content-with-image.reverse>* {
    direction: ltr;
}

.section-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-image {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.section-content-with-image.reverse .section-image {
    transform: translateX(-50px);
}

.section-image.animated {
    opacity: 1;
    transform: translateX(0);
}

.side-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    margin: 0 auto;
}

.side-image:hover {
    transform: scale(1.02);
}

/* Why Trust Us Section */
.why-trust-us {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-feature-card.animated {
    transform: translateY(0);
}

.trust-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    border-radius: 50%;
    padding: 20px;
}

.trust-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.trust-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    align-items: start;
}

.service-card {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.animated {
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    border-radius: 12px;
    padding: 15px;
    flex-shrink: 0;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    margin-bottom: 18px;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 100%;
    word-wrap: break-word;
}

.service-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.service-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.5;
    font-size: 0.95rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.service-note {
    margin-top: 15px;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 1.5;
}

/* Not Do List - used within service cards */
.not-do-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.not-do-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.not-do-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

/* About Section */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.about-image-wrapper {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    margin: 0 auto;
}

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

.about-block {
    margin-bottom: 40px;
}

/* Clients Section */
.clients-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 40px 20px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.testimonial-quote-icon {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 15px;
    font-family: Georgia, serif;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.testimonial-author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}

.testimonial-author-details {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.client-item {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 200px;
}

.client-item a:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.client-logo {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-item a:hover .client-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.client-name-fallback {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.client-item a:hover .client-name-fallback {
    color: var(--accent-color);
}

/* Contact Section */
.contact-wrapper-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
    min-height: 600px;
}

/* Left Column: Call to Action */
.contact-cta-column {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-cta-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="rgba(255,255,255,0.05)" width="1200" height="800"/></svg>');
    opacity: 0.3;
}

.contact-cta-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.contact-cta-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
}

.contact-cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
}

.contact-cta-phone {
    margin-bottom: 35px;
}

.contact-cta-phone-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.contact-cta-phone-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.contact-cta-phone-link:hover {
    opacity: 0.9;
}

.contact-cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-cta-benefits li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Right Column: Contact Form */
.contact-form-column {
    background: var(--bg-white);
    padding: 60px 50px;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    padding: 25px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
}

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

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select[size] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
    overflow-y: auto;
}

.form-group select[size="2"] {
    height: auto;
    min-height: 60px;
    max-height: 80px;
}

.form-group select[multiple] {
    background-image: none;
    padding-right: 15px;
    cursor: default;
    min-height: 80px;
    max-height: 120px;
}

.form-help-text {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

.form-checkbox {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkbox-label span {
    flex: 1;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.privacy-link:hover {
    color: var(--secondary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

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

.form-message {
    padding: 12px;
    border-radius: 4px;
    margin-top: 10px;
    display: none;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 30px;
    width: 100%;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

.social-icon:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .site-header {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
        direction: ltr !important;
    }

    .header-content {
        direction: ltr !important;
        width: 100%;
        max-width: 100%;
    }

    .header-content>* {
        direction: ltr !important;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
        direction: ltr !important;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        gap: 20px;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 10px 0;
        width: 100%;
    }

    .hero {
        min-height: 100vh;
        height: 100vh;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
        position: relative;
    }

    .hero .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-background {
        max-width: 100vw;
        width: 100%;
        left: 0;
        right: 0;
    }

    .hero-bg-image {
        max-width: 100vw;
        width: 100%;
        min-width: 100%;
    }

    .hero-overlay {
        max-width: 100vw;
        width: 100%;
        left: 0;
        right: 0;
    }

    .hero-headline {
        font-size: 1.8rem;
    }

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

    .section {
        padding: 50px 0;
    }

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

    .subsection-title {
        font-size: 1.5rem;
    }

    .content-text {
        font-size: 1rem;
    }

    .about-content {
        gap: 30px;
    }

    .section-content-with-image {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-content-with-image.reverse {
        direction: ltr !important;
    }

    .section-content-with-image.reverse>* {
        direction: ltr !important;
    }

    .section-image {
        order: -1;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        text-align: center;
    }

    .section-image .side-image {
        max-width: 100%;
        width: auto;
        height: auto;
        margin: 0 auto;
        display: block;
        object-fit: contain;
    }

    .section-content-with-image.reverse .section-image {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .section-content-with-image.reverse .section-image .side-image {
        margin: 0 auto !important;
        display: block !important;
    }

    .what-we-do-headline {
        font-size: 2rem;
    }

    .what-we-do .content-text {
        font-size: 1rem;
    }

    .profile-image {
        max-width: 250px;
    }

    .hero-logo {
        max-width: 200px;
    }

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

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

    .btn-contact-header {
        padding: 8px 15px !important;
        font-size: 0.9rem;
    }

    .trust-features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .trust-feature-card {
        padding: 30px 25px;
    }

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

    .service-card {
        padding: 30px 25px;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    .contact-wrapper-two-column {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-cta-column {
        padding: 40px 30px;
    }

    .contact-cta-heading {
        font-size: 2rem;
    }

    .contact-form-column {
        padding: 40px 30px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        gap: 20px;
    }

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

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .clients-carousel {
        flex-direction: column;
        gap: 30px;
    }

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

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }

    .site-footer {
        width: 100%;
        max-width: 100vw;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        overflow-x: hidden;
    }

    .site-footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-social {
        gap: 15px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }
}

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

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

    .services .section-title {
        font-size: 0.85rem;
    }

    .services .section-subtitle {
        font-size: 1.8rem;
        margin-top: 0;
    }

    .container {
        padding: 0 15px;
    }

    .service-card,
    .contact-item {
        padding: 20px;
    }
}