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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navigation */
.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 29px;
    z-index: 999;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #16a085;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
}

.nav-links a:hover {
    color: #16a085;
}

.nav-cta {
    background-color: #16a085;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.nav-cta:hover {
    background-color: #138d75;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22,160,133,0.3);
}

/* Hero Asymmetric */
.hero-asymmetric {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    padding: 80px 30px 100px;
    position: relative;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 580px;
    padding-left: 40px;
}

.hero-text-block h1 {
    font-size: 58px;
    line-height: 1.15;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 19px;
    color: #34495e;
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 38px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(231,76,60,0.3);
}

.cta-primary:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231,76,60,0.4);
}

.hero-image-floating {
    flex: 1;
    position: relative;
    transform: translateY(-30px) rotate(-3deg);
}

.hero-image-floating img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Intro Diagonal */
.intro-diagonal {
    background-color: #ffffff;
    padding: 90px 30px;
    position: relative;
    transform: skewY(-2deg);
    margin-top: -50px;
}

.diagonal-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(2deg);
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.intro-left {
    flex: 1.3;
}

.intro-left h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-left p {
    font-size: 17px;
    color: #4d5656;
    margin-bottom: 18px;
    line-height: 1.7;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    background: linear-gradient(135deg, #16a085 0%, #138d75 100%);
    padding: 35px 30px;
    border-radius: 12px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(22,160,133,0.2);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.95;
}

/* Services Offset */
.services-offset {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

.services-header-left {
    max-width: 700px;
    margin-bottom: 60px;
    padding-left: 80px;
}

.services-header-left h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 18px;
}

.services-header-left p {
    font-size: 18px;
    color: #5d6d7e;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.card-large {
    flex: 1 1 calc(55% - 15px);
    min-width: 350px;
}

.card-medium {
    flex: 1 1 calc(40% - 15px);
    min-width: 320px;
}

.service-icon {
    margin-bottom: 25px;
}

.service-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 18px;
    line-height: 1.3;
}

.service-card p {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #16a085;
    margin-bottom: 20px;
}

.service-select {
    background-color: #34495e;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    align-self: flex-start;
}

.service-select:hover {
    background-color: #2c3e50;
    transform: translateX(5px);
}

/* Process Visual */
.process-visual {
    padding: 100px 30px;
    background-color: #ffffff;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-container h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 70px;
    text-align: center;
}

.process-blocks {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 50px;
}

.process-offset-1 {
    padding-left: 60px;
}

.process-offset-2 {
    padding-right: 60px;
    flex-direction: row-reverse;
}

.process-visual-box {
    flex: 1;
}

.process-visual-box img {
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.process-text {
    flex: 1;
}

.process-text h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.process-text p {
    font-size: 17px;
    color: #5d6d7e;
    line-height: 1.7;
}

/* Why Choose Asymmetric */
.why-choose-asymmetric {
    padding: 90px 30px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
}

.why-content-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.why-text-main {
    flex: 1.5;
}

.why-text-main h2 {
    font-size: 40px;
    margin-bottom: 45px;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.why-point h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1abc9c;
}

.why-point p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.why-image-stack {
    flex: 1;
    position: relative;
    transform: rotate(4deg);
}

.why-image-stack img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Testimonials Carousel */
.testimonials-carousel {
    padding: 100px 30px;
    background-color: #ecf0f1;
}

.testimonials-carousel h2 {
    font-size: 40px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-layout {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 calc(33.33% - 30px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 16px;
    color: #4d5656;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    font-size: 17px;
    color: #2c3e50;
}

.testimonial-author span {
    font-size: 14px;
    color: #7f8c8d;
}

/* CTA Form Section */
.cta-form-section {
    padding: 100px 30px;
    background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: rotate(-1deg);
}

.form-intro {
    margin-bottom: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 17px;
    color: #5d6d7e;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #34495e;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #dfe4ea;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #16a085;
    box-shadow: 0 0 0 3px rgba(22,160,133,0.1);
}

.form-submit {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    align-self: center;
    margin-top: 15px;
}

.form-submit:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231,76,60,0.3);
}

/* Trust Indicators */
.trust-indicators {
    padding: 80px 30px;
    background-color: #ffffff;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.trust-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 15px;
    color: #5d6d7e;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1abc9c;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 15px;
    opacity: 0.85;
}

.footer-links a:hover {
    opacity: 1;
    color: #1abc9c;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(236,240,241,0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    opacity: 0.7;
    font-style: italic;
    max-width: 900px;
    margin: 15px auto 0;
    line-height: 1.6;
}

/* Cookie Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.cookie-accept {
    background-color: #16a085;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #138d75;
}

.cookie-reject {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.header-content p {
    font-size: 19px;
    opacity: 0.9;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: stretch;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-text {
    flex: 1.2;
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
}

.service-detail-text h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 17px;
    color: #5d6d7e;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    color: #4d5656;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: bold;
    font-size: 18px;
}

.service-pricing-block {
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #5d6d7e;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #16a085;
}

.service-cta {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    align-self: flex-start;
}

.service-cta:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(231,76,60,0.3);
}

/* Service Comparison */
.service-comparison {
    padding: 80px 30px;
    background-color: #ffffff;
}

.service-comparison h2 {
    font-size: 38px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

.comparison-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f8f9fa;
}

.comparison-table thead {
    background-color: #34495e;
    color: #ffffff;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: left;
    border: 1px solid #dfe4ea;
}

.comparison-table th {
    font-weight: 600;
    font-size: 15px;
}

.comparison-table td {
    font-size: 15px;
    color: #4d5656;
}

.comparison-table tbody tr:hover {
    background-color: #ecf0f1;
}

/* Additional Info */
.additional-info {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.info-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 350px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.info-block h3 {
    font-size: 26px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.info-block p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* CTA Bottom */
.cta-bottom {
    padding: 90px 30px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    text-align: center;
}

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

.cta-bottom-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-bottom-content p {
    font-size: 19px;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 35px;
}

.cta-large {
    display: inline-block;
    background-color: #ffffff;
    color: #e74c3c;
    padding: 18px 45px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* About Story */
.about-story {
    padding: 80px 30px;
    background-color: #ffffff;
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.story-text p {
    font-size: 17px;
    color: #5d6d7e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Values Section */
.values-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    justify-content: center;
}

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    color: #16a085;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.7;
}

/* Team Intro */
.team-intro {
    padding: 80px 30px;
    background-color: #ffffff;
}

.team-content {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.team-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.team-content p {
    font-size: 17px;
    color: #5d6d7e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.team-skills {
    list-style: none;
    margin-top: 25px;
}

.team-skills li {
    font-size: 16px;
    color: #4d5656;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.team-skills li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #16a085;
    font-weight: bold;
}

.team-image-section {
    max-width: 1200px;
    margin: 0 auto;
}

.team-image-section img {
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Certifications */
.certifications {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.certifications h2 {
    font-size: 38px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

.cert-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.cert-text {
    flex: 1;
}

.cert-text p {
    font-size: 17px;
    color: #5d6d7e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cert-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cert-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.cert-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.cert-item p {
    font-size: 15px;
    color: #7f8c8d;
}

/* Coverage Area */
.coverage-area {
    padding: 80px 30px;
    background-color: #ffffff;
}

.coverage-area h2 {
    font-size: 38px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
}

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

.coverage-content p {
    font-size: 17px;
    color: #5d6d7e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.coverage-cities {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.city-tag {
    background-color: #16a085;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
}

/* Why Work With Us */
.why-work-with-us {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.why-container {
    max-width: 1000px;
    margin: 0 auto;
}

.why-container h2 {
    font-size: 38px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.why-reasons {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reason-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.reason-number {
    font-size: 48px;
    font-weight: 800;
    color: #ecf0f1;
    min-width: 80px;
    text-align: center;
    line-height: 1;
}

.reason-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.reason-content p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.7;
}

/* Contact Main */
.contact-main {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    color: #16a085;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.7;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
    font-style: italic;
}

.contact-map-placeholder {
    flex: 1;
}

.contact-map-placeholder img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.map-caption {
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.6;
}

/* Contact Additional */
.contact-additional {
    padding: 80px 30px;
    background-color: #ffffff;
}

.additional-content {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-content h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.additional-content p {
    font-size: 17px;
    color: #5d6d7e;
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-topics {
    margin-top: 50px;
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.topic-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 35px 30px;
    border-radius: 8px;
}

.topic-card h4 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.topic-card p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.6;
}

/* Contact FAQ */
.contact-faq {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.contact-faq h2 {
    font-size: 38px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: #ffffff;
    padding: 30px 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.faq-item h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-page {
    padding: 100px 30px;
    background-color: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    color: #16a085;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #5d6d7e;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 35px;
}

.service-selected {
    font-size: 17px;
    color: #2c3e50;
}

.thanks-next-steps {
    margin: 50px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
}

.step-number {
    background-color: #16a085;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.7;
    margin-top: 6px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #16a085;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
}

.btn-primary:hover {
    background-color: #138d75;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(22,160,133,0.3);
}

.btn-secondary {
    background-color: #34495e;
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(52,73,94,0.3);
}

.thanks-contact-info {
    border-top: 1px solid #dfe4ea;
    padding-top: 30px;
    margin-top: 30px;
}

.thanks-contact-info p {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.email-display {
    font-size: 17px;
    color: #16a085;
    font-weight: 600;
}

/* Legal Page */
.legal-page {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.legal-container h1 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.legal-date {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 18px;
}

.legal-container h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-container p {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 18px;
}

.legal-container ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-container ul li {
    font-size: 16px;
    color: #5d6d7e;
    line-height: 1.8;
    margin-bottom: 10px;
    list-style: disc;
}

.legal-container a {
    color: #16a085;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #138d75;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 38px;
    }

    .hero-content-offset {
        flex-direction: column;
        gap: 40px;
    }

    .hero-text-block {
        padding-left: 0;
    }

    .hero-image-floating {
        transform: none;
    }

    .diagonal-content {
        flex-direction: column;
        gap: 40px;
    }

    .services-header-left {
        padding-left: 0;
    }

    .service-card {
        min-width: 100%;
    }

    .process-item,
    .process-offset-1,
    .process-offset-2 {
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
    }

    .why-content-split {
        flex-direction: column;
        gap: 40px;
    }

    .why-image-stack {
        transform: none;
    }

    .testimonials-layout {
        flex-direction: column;
    }

    .form-container-asymmetric {
        padding: 40px 30px;
        transform: none;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

    .story-layout {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .cert-layout {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding-top: 20px;
    }

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

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 10px;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #2c3e50;
        transition: all 0.3s ease;
    }

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

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

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