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

:root {
    --primary-blue: #003C71;
    --accent-orange: #F37B20;
    --dark-orange: #D85A0A;
    --light-blue: #2066A5;
    --dark-text: #2D2D2D;
    --white: #FFFFFF;
    --text-light: #666;
    --card-bg: #f5f7fa;
    
    /* Legacy names for compatibility - will be replaced */
    --primary-teal: var(--accent-orange);
    --dark-teal: var(--primary-blue);
    --darker-teal: var(--primary-blue);
    --light-teal: #f5f7fa;
    --text-dark: var(--dark-text);
}

body {
    font-family: Arial, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: var(--primary-blue);
    line-height: 1.3;
}

p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004a8f 100%);
    padding: 12px 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: none;
    border-bottom: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Logo should show original colors on blue header - NO filter */
.header:not(.scrolled) .logo-image,
.header:not(.scrolled) .logo .logo-image,
.header:not(.scrolled) .nav-container .logo-image,
.header:not(.scrolled) .nav-container .logo img {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    isolation: isolate;
    transform: translateZ(0);
}

/* Ensure logo container has proper z-index and no interference */
.header .logo,
.header .nav-container .logo {
    position: relative;
    z-index: 1001;
}

.header .logo-image {
    position: relative;
    z-index: 1002;
    mix-blend-mode: normal;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header.scrolled .nav-links a {
    color: var(--dark-text);
}

.header.scrolled .logo-image {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

.header.scrolled .logo .logo-image {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

.header.scrolled .nav-container .logo img {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

.header.scrolled .nav-container .logo-image {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

/* Logo shows original colors on blue header - NO white filter */
body .header:not(.scrolled) .logo-image,
body .header:not(.scrolled) .logo .logo-image,
body .header:not(.scrolled) .nav-container .logo-image,
body .header:not(.scrolled) .nav-container .logo img,
body .header:not(.scrolled) img.logo-image,
body .header:not(.scrolled) .logo img {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
    /* Prevent backdrop-filter from affecting logo */
    isolation: isolate;
    transform: translateZ(0);
}

.header::after {
    display: none;
}

.services-page .header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004a8f 100%);
}

.services-page .header.scrolled {
    background: rgba(255, 255, 255, 0.95);
}

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

.logo,
.nav-logo-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 50px;
    overflow: hidden;
}

.logo-image {
    width: 280px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
    object-position: center;
    overflow: hidden;
    display: block;
    transition: filter 0.3s ease, opacity 0.3s ease, -webkit-filter 0.3s ease;
    opacity: 1 !important;
    /* Logo shows original colors - no filter */
    filter: none !important;
    -webkit-filter: none !important;
    /* Prevent backdrop-filter interference */
    isolation: isolate;
    transform: translateZ(0);
}


.header.scrolled .logo-image {
    filter: none !important;
    -webkit-filter: none !important;
    opacity: 1 !important;
}

/* Ensure logo is visible when scrolled - remove all filters */
.header.scrolled .logo {
    filter: none !important;
    -webkit-filter: none !important;
}

.header.scrolled .logo img {
    filter: none !important;
    -webkit-filter: none !important;
}

.logo-text {
    color: var(--dark-text);
    font-size: 16px;
    font-weight: 600;
    font-family: Arial, sans-serif;
}

.logo-subtext {
    color: var(--text-light);
    font-size: 12px;
    font-family: Arial, sans-serif;
}

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

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    font-weight: 400;
    font-family: 'Georgia', 'Times New Roman', serif;
    position: relative;
}

.header.scrolled .nav-links a {
    color: var(--dark-text);
}

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

.header .nav-links .btn-primary {
    background: var(--white);
    color: var(--primary-blue);
}

.header.scrolled .nav-links .btn-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.menu-toggle {
    color: var(--white);
    transition: color 0.3s ease;
}

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

.nav-links a.active {
    color: var(--accent-orange);
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-orange);
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.btn-primary:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

.btn-primary:hover {
    background: var(--light-blue);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.btn-secondary:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

.btn-secondary:hover {
    background: var(--accent-orange);
    color: var(--white);
}

/* Home Page Hero - Honey Homes Style */
.home-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004a8f 100%);
    color: var(--white);
    padding: 80px 80px 160px;
    text-align: left;
    margin-top: 0;
    padding-top: 140px;
    position: relative;
    overflow: visible;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004a8f 100%);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    z-index: 1;
}


.home-hero-content {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-hero-text {
    text-align: left;
}

.home-hero-text h1,
.home-hero-text p {
    text-align: left;
}

.home-hero-text .hero-buttons {
    justify-content: flex-start;
}

.home-hero-text .address-bar {
    margin-left: 0;
    margin-right: 0;
}

.home-hero h1,
.services-hero-text h1,
.careers-hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.home-hero h1 {
    color: var(--white);
}

.services-hero-text h1 {
    color: var(--white);
}

.careers-hero h1 {
    color: var(--white);
}

.home-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.address-bar {
    background: var(--white);
    padding: 18px 25px;
    border-radius: 50px;
    max-width: 650px;
    margin: 0 auto 60px;
    display: flex;
    gap: 15px;
    align-items: center;
    color: var(--dark-text);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.address-icon {
    font-size: 18px;
}

.address-input {
    border: none;
    flex: 1;
    font-size: 15px;
    outline: none;
    font-family: Arial, sans-serif;
    color: var(--dark-text);
}

.address-input::placeholder {
    color: #999;
}

.address-search-btn {
    padding: 10px 24px;
    font-size: 14px;
}

.home-hero-input {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    outline: none;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.home-hero-input:focus {
    box-shadow: 0 0 0 3px rgba(25, 148, 158, 0.2);
}

.home-hero-button {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--accent-orange);
    border: none;
    border-radius: 8px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
}

.home-hero-button:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.home-hero-button:hover {
    background: #f5f7fa;
    transform: translateX(4px) scale(1.05);
}

.partner-logos {
    margin: 3rem 0;
}

.partner-logos-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.home-hero-image {
    position: relative;
    z-index: 10;
}

.home-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-vehicle-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}


.home-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.hero {
    background: #f5f7fa;
    color: var(--dark-text);
    padding: 160px 2rem 100px;
    text-align: center;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -60px;
    width: 160vw;
    height: 120px;
    background: var(--white);
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    transform: translateX(-50%);
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-weight: 600;
    color: var(--dark-text);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone {
    background: var(--accent-orange);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    margin: 2rem 0;
    transition: all 0.3s;
}

.cta-phone:hover {
    background: #158088;
    transform: translateY(-2px);
}

.section {
    padding: 100px 80px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.experience-section::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: -1;
}

.quick-jump-section::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: -1;
}

.careers-page .section:first-of-type::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: -1;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

.section-title {
    font-size: 44px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-text);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
    font-weight: 400;
    font-family: Arial, sans-serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Home page service cards */
.home-page .service-card {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(235, 244, 245, 0.8);
    overflow: hidden;
}

.home-page .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-image {
    width: 100%;
    height: 200px;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 148, 158, 0.1) 0%, rgba(25, 148, 158, 0.05) 100%);
    z-index: 0;
}

.service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}

.service-icon,
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(25, 148, 158, 0.3);
}

.service-content,
.feature-content {
    padding: 2rem 1.75rem;
}

.home-page .service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.home-page .service-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.why-choose {
    background: #f5f7fa;
}

.why-choose::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -60px;
    width: 160vw;
    height: 120px;
    background: #f5f7fa;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    transform: translateX(-50%);
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(235, 244, 245, 0.8);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.feature-image {
    width: 100%;
    height: 220px;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 148, 158, 0.1) 0%, rgba(25, 148, 158, 0.05) 100%);
    z-index: 0;
}

.feature-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.feature-card h3 {
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.careers-section {
    background: var(--accent-orange);
    color: var(--white);
    text-align: center;
    position: relative;
}

.careers-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -60px;
    width: 160vw;
    height: 120px;
    background: var(--accent-orange);
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    transform: translateX(-50%);
    z-index: -1;
}

.careers-section .section-title,
.careers-section .section-subtitle {
    color: var(--white);
}

.careers-highlight {
    max-width: 1000px;
    margin: 2.5rem auto 0;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.careers-copy,
.careers-list {
    flex: 1;
    text-align: left;
}

.careers-copy h3,
.careers-list h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
}

.careers-copy p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.careers-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.careers-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.careers-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--white);
    flex-shrink: 0;
}

.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-highlight {
    background: var(--accent-orange);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.contact-highlight p {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease;
}

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

.nav-links .btn-primary {
    margin-left: 0;
}

/* Services page layout overrides */
.services-page .section {
    padding: 100px 2rem;
}

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

.services-page .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.services-page .service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(235, 244, 245, 0.8);
    transition: all 0.3s ease;
}

.services-page .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.services-page .service-card h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.services-page .service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.services-page .service-card ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.services-page .service-card ul li {
    margin-bottom: 0.5rem;
}

/* Careers page layout overrides */
.careers-page .section {
    padding: 100px 2rem;
}

.careers-page .section-title {
    font-size: 2.75rem;
}

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

.card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-orange);
}

.card h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.card ul {
    margin-left: 1.5rem;
    margin-top: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.card ul li {
    margin-bottom: 0.5rem;
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}

.card ul li:before {
    content: "✓ ";
    color: var(--accent-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.highlight-banner {
    background: linear-gradient(135deg, var(--dark-orange) 0%, #C04A08 100%);
    color: var(--white);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-banner p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
}

/* Services Page - Honey Homes Style */
.services-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004a8f 100%);
    color: var(--white);
    padding: 140px 2rem 160px;
    margin-top: 0;
    padding-top: 200px;
    position: relative;
    overflow: visible;
}

.services-hero-text h1 {
    color: var(--white);
}

.services-hero-text p {
    color: rgba(255, 255, 255, 0.9);
}

.services-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004a8f 100%);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    z-index: 1;
}

.services-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-hero-text h1 {
    font-size: 52px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.services-hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-family: Arial, sans-serif;
}

.zip-input-container {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
}

.zip-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.zip-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.zip-input:focus {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.zip-button {
    width: 50px;
    height: 50px;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.zip-button:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

.zip-button:hover {
    background: var(--light-blue);
    transform: scale(1.05);
}

.services-hero-image {
    border-radius: 12px;
    overflow: hidden;
}

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

.quick-jump-section {
    background: var(--white);
    padding: 80px 2rem;
}

.quick-jump-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.quick-jump-card {
    background: linear-gradient(135deg, var(--white) 0%, #f5fafa 100%);
    border: 2px solid rgba(243, 123, 32, 0.2);
    border-radius: 16px;
    padding: 2.5rem 1.75rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.quick-jump-card:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

.quick-jump-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(243, 123, 32, 0.25);
    background: linear-gradient(135deg, #f5f7fa 0%, var(--white) 100%);
}

.quick-jump-card:hover .quick-jump-icon {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.quick-jump-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.quick-jump-text {
    color: var(--dark-text);
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.5;
}

.service-detail-section {
    padding: 80px 2rem;
    margin: 0;
    transition: all 0.3s ease;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-style-1 {
    background: linear-gradient(135deg, #f5fafa 0%, #ffffff 100%);
}

.service-style-1:hover {
    background: linear-gradient(135deg, #f0f8f7 0%, #f5fafa 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-style-2 {
    background: linear-gradient(135deg, #ffffff 0%, #f5fafa 100%);
}

.service-style-2:hover {
    background: linear-gradient(135deg, #f5fafa 0%, #f0f8f7 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 123, 32, 0.15);
}

.service-style-3 {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.service-style-3:hover {
    background: linear-gradient(135deg, #e8f0f5 0%, #f5f7fa 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 123, 32, 0.2);
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.service-detail-reverse .service-detail-layout {
    direction: rtl;
}

.service-detail-reverse .service-detail-layout > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

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

.service-style-1 .service-detail-container {
    border-left: 4px solid var(--accent-orange);
}

.service-style-2 .service-detail-container {
    border-left: 4px solid var(--primary-blue);
}

.service-style-3 .service-detail-container {
    border-left: 4px solid #4ac4b4;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-icon {
    font-size: 1.75rem;
    font-weight: 600;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 12px;
    flex-shrink: 0;
}

.service-style-1 .service-detail-icon {
    background: var(--accent-orange);
}

.service-style-2 .service-detail-icon {
    background: var(--primary-blue);
}

.service-style-3 .service-detail-icon {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c42 100%);
}

.service-detail-header h2 {
    font-size: 36px;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.service-style-1 .service-detail-header h2 {
    color: var(--accent-orange);
}

.service-style-2 .service-detail-header h2 {
    color: var(--primary-blue);
}

.service-style-3 .service-detail-header h2 {
    color: var(--primary-blue);
}

.service-detail-subtitle {
    font-size: 18px;
    color: var(--dark-text);
    font-weight: 500;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

.service-detail-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.service-detail-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-column li {
    color: var(--dark-text);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 0.875rem;
    padding-left: 0;
    font-weight: 400;
}

.service-detail-footer {
    color: var(--text-light);
    font-size: 1rem;
    font-style: italic;
    margin-top: 2rem;
}

.contact-box-section {
    background: var(--white);
    padding: 60px 2rem;
}

.contact-box {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark-orange) 0%, #C04A08 100%);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.3s ease;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(216, 90, 10, 0.3);
}

.contact-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(216, 90, 10, 0.4);
}

.contact-box p {
    color: var(--white);
    font-size: 18px;
    font-family: Arial, sans-serif;
    margin: 0;
}

.contact-box a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
}

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

.contact-box a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.contact-box a:hover {
    border-bottom-color: var(--accent-orange);
}


/* Home Page - Experience Section */
.experience-section {
    background: var(--white);
    padding: 100px 2rem;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    max-width: 1300px;
    margin: 0 auto;
}

.experience-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    transition: all 0.3s ease;
}

.experience-card-reverse {
    direction: rtl;
}

.experience-card-reverse > * {
    direction: ltr;
}

.experience-card:hover .experience-image {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.experience-card:nth-child(even) {
    direction: rtl;
}

.experience-card:nth-child(even) > * {
    direction: ltr;
}

.experience-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.experience-content h3 {
    font-size: 32px;
    color: var(--dark-text);
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.experience-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-family: Arial, sans-serif;
    font-size: 15px;
    transition: color 0.3s;
}

.experience-link:hover {
    color: var(--darker-teal);
}

.experience-card-box {
    background: linear-gradient(135deg, var(--card-bg) 0%, #d4ebe9 100%);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.experience-card-box h4 {
    font-size: 28px;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
}

.experience-card-box p {
    color: var(--text-light);
    font-family: Arial, sans-serif;
    line-height: 1.7;
}

.experience-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    font-family: Arial, sans-serif;
}

/* Services Categories Grid */
.services-categories-section {
    background: var(--white);
    padding: 100px 2rem;
    text-align: center;
}

.services-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1300px;
    margin: 50px auto 0;
}

.category-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.category-card:focus {
    outline: 3px solid var(--primary-teal);
    outline-offset: 3px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.category-card:hover .category-image {
    transform: scale(1.05);
}

.category-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 100%);
}

.category-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    z-index: 1;
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Testimonials Section */
.testimonials-section {
    background: #f5f7fa;
    padding: 100px 2rem;
    text-align: center;
}

.testimonial-quote {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.testimonial-text {
    font-size: 2.25rem;
    color: var(--dark-text);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-style: italic;
    letter-spacing: -0.02em;
}

.testimonial-rating {
    font-size: 1.5rem;
    color: #FFB800;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
}

.testimonial-author {
    font-size: 1.125rem;
    color: var(--text-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.testimonial-card p {
    color: var(--dark-text);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-name {
    color: var(--text-light);
    font-weight: 600;
    margin: 0;
}

.testimonial-card-featured {
    background: var(--accent-orange);
    color: var(--white);
}

.testimonial-card-featured p {
    color: var(--white);
}

.testimonial-card-featured .testimonial-name {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
    background: var(--white);
    padding: 100px 2rem;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--accent-orange);
    border-radius: 16px;
    padding: 4rem 3rem;
    color: var(--white);
}

.cta-box h2 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.cta-feature p {
    color: var(--dark-text);
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(to bottom, #f5fafa 0%, #ffffff 100%);
    padding: 100px 20px;
}

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

.pricing-card {
    background: var(--white);
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c42 100%);
    border-color: var(--accent-orange);
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(243, 123, 32, 0.3);
    color: var(--white);
}

.pricing-card h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-text);
    font-weight: 400;
}

.pricing-card-featured h4,
.pricing-card-featured p,
.pricing-card-featured .pricing-price {
    color: var(--white);
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
}

.pricing-card-featured .pricing-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    margin: 25px 0;
    color: var(--dark-text);
    font-family: Arial, sans-serif;
}

.pricing-unit {
    font-size: 20px;
    font-weight: 400;
}

.pricing-visits {
    font-size: 15px;
    color: var(--text-light);
    font-family: Arial, sans-serif;
}

.pricing-card-featured .pricing-visits {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    margin-top: 30px;
    text-align: left;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: var(--dark-text);
}

.pricing-card-featured .pricing-features li {
    color: var(--white);
}

.pricing-features li:before {
    content: "✓ ";
    color: var(--accent-orange);
    font-weight: bold;
    margin-right: 8px;
}

.pricing-card-featured .pricing-features li:before {
    color: var(--white);
}

.pricing-cta {
    text-align: center;
    margin-top: 50px;
}

.pricing-cta .btn-primary {
    padding: 14px 40px;
    font-size: 16px;
}

/* Testimonial Section */
.testimonial-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f0f8f7 0%, var(--card-bg) 100%);
}

.testimonial-quote {
    font-size: 32px;
    font-style: italic;
    max-width: 900px;
    margin: 0 auto;
    color: var(--dark-text);
    line-height: 1.5;
    font-weight: 400;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.testimonial-author {
    margin-top: 25px;
    font-size: 16px;
    color: var(--text-light);
    font-family: Arial, sans-serif;
}

/* Guarantee Section */
.guarantee-section {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px;
    border-radius: 16px;
    margin: 100px 80px;
    text-align: center;
}

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

.guarantee-text {
    flex: 1;
    text-align: left;
}

.guarantee-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--white);
}

.guarantee-text p {
    font-family: Arial, sans-serif;
    opacity: 0.9;
    color: var(--white);
    line-height: 1.7;
}

.guarantee-badges {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.guarantee-badge {
    text-align: center;
}

.badge-icon {
    width: 80px;
    height: 80px;
    background: rgba(243, 123, 32, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 32px;
    color: var(--white);
}

.guarantee-badge p {
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: var(--white);
    line-height: 1.5;
}

/* Communication Section */
.communication-box {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c42 100%);
    padding: 40px;
    border-radius: 12px;
}

.communication-box p {
    color: var(--white);
    font-size: 18px;
    line-height: 1.7;
    font-family: Arial, sans-serif;
    margin: 0;
}

.expertise-box {
    background: var(--primary-blue);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
}

.expertise-box p {
    font-size: 18px;
    line-height: 1.7;
    font-family: Arial, sans-serif;
    color: var(--white);
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 100px 80px;
}

.values-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.values-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.values-overlay {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    max-width: 450px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.values-overlay h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark-text);
    font-weight: 400;
    line-height: 1.3;
}

.values-overlay p {
    color: var(--text-light);
    font-family: Arial, sans-serif;
    line-height: 1.7;
}

/* News Section */
.news-section {
    padding: 100px 80px;
    text-align: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.news-card {
    text-align: center;
}

.news-logo {
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: Arial, sans-serif;
}

.news-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

/* Updated CTA Section */
.cta-section {
    background: var(--white);
    padding: 100px 80px;
    text-align: center;
}

.cta-section .section {
    padding: 0;
    max-width: 100%;
    margin: 0;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--dark-orange) 0%, #C04A08 100%);
    color: var(--white);
    padding: 80px 60px;
    border-radius: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 8px 30px rgba(216, 90, 10, 0.3);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--white);
    letter-spacing: -0.5px;
    text-align: center;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    font-family: Arial, sans-serif;
    color: var(--white);
    line-height: 1.7;
    text-align: center;
}

.cta-button {
    padding: 14px 40px;
    font-size: 16px;
    background: var(--white);
    color: var(--accent-orange);
}

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

.cta-badges {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.cta-badge-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.cta-badge-text {
    text-align: left;
}

.cta-badge-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
    color: var(--white);
    font-size: 16px;
}

.cta-badge-subtitle {
    font-size: 14px;
    opacity: 0.9;
    font-family: Arial, sans-serif;
    color: var(--white);
}

/* Updated Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 80px 40px;
    position: relative;
    margin-top: 60px;
}

.footer::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100" preserveAspectRatio="none"><path fill="%23003C71" d="M0,50 Q360,0 720,50 T1440,50 L1440,100 L0,100 Z"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-grid > div:first-child {
    text-align: left;
}

.footer-logo-image {
    width: 200px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 20px;
    display: block;
    overflow: hidden;
}

.footer h3,
.footer h4,
.footer h5 {
    margin-bottom: 20px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    color: var(--white);
    font-weight: 600;
}

.footer p {
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    color: var(--white);
}

.footer-contact {
    margin-top: 20px;
}

.footer-contact p {
    margin-bottom: 8px;
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
    font-family: Arial, sans-serif;
    transition: all 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 13px;
}

/* Services CTA Section */
.services-cta-section {
    background: var(--white);
    text-align: center;
    padding: 100px 80px;
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004a8f 100%);
    padding: 80px 60px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.services-cta-content .section-title {
    color: var(--white);
}

.services-cta-content .section-subtitle {
    color: var(--white);
    opacity: 0.95;
}

/* Careers Hero */
.careers-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004a8f 100%);
    color: var(--white);
    padding: 140px 80px 160px;
    margin-top: 0;
    padding-top: 200px;
    position: relative;
    overflow: visible;
}

.careers-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004a8f 100%);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
    z-index: 1;
}

.careers-hero-content {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.careers-hero-text {
    text-align: left;
}

.careers-hero-text h1 {
    color: var(--white);
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.careers-hero-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    font-family: Arial, sans-serif;
    line-height: 1.7;
    margin-bottom: 40px;
}

.careers-hero-text .hero-buttons {
    justify-content: flex-start;
}

.careers-hero-image {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}

.careers-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.careers-testimonial-section {
    background: linear-gradient(135deg, #f0f8f7 0%, var(--card-bg) 100%);
    padding: 80px 80px;
    text-align: center;
}

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

@media (max-width: 768px) {
    .header {
        padding: 20px 30px;
    }

    .header {
        padding: 15px 30px;
    }

    .logo {
        height: 70px;
    }

    .logo-image {
        width: 200px;
        max-height: 70px;
    }

    .footer-logo-image {
        width: 180px;
        max-height: 50px;
    }

    .section::before {
        top: -40px;
        height: 40px;
    }

    .home-hero::after,
    .services-hero::after,
    .careers-hero::after {
        bottom: -40px;
        height: 40px;
    }

    .home-hero {
        margin-top: 0;
        padding: 100px 30px 60px;
        padding-top: 100px;
    }

    .home-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-hero-text {
        text-align: center;
    }

    .home-hero-text h1,
    .home-hero-text p {
        text-align: center;
    }

    .home-hero-text .hero-buttons {
        justify-content: center;
    }

    .home-hero-text .address-bar {
        margin-left: auto;
        margin-right: auto;
    }

    .services-hero {
        margin-top: 0;
        padding-top: 150px;
    }

    .careers-hero {
        margin-top: 0;
        padding: 140px 30px 160px;
        padding-top: 150px;
    }

    .careers-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .careers-hero-text {
        text-align: center;
    }

    .careers-hero-text .hero-buttons {
        justify-content: center;
    }

    .cta-section {
        padding: 60px 30px;
    }

    .cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 30px;
    }

    .cta-content {
        text-align: center;
    }

    .footer {
        padding: 60px 30px 30px;
    }

    .footer::before {
        top: -30px;
        height: 30px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(235, 244, 245, 0.8);
    }

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

    .menu-toggle {
        display: block;
    }

    .nav-links .btn-primary {
        width: 100%;
        text-align: center;
    }

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

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

    .cta-phone {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }

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

    .section {
        padding: 60px 30px;
    }

    .services-cta-section {
        padding: 60px 30px;
    }

    .careers-hero {
        padding: 120px 20px 80px;
        padding-top: 120px;
    }

    .careers-hero-text h1 {
        font-size: 32px;
    }

    .careers-hero-image img {
        height: 300px;
    }

    .careers-testimonial-section {
        padding: 60px 30px;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-image,
    .service-image {
        height: 180px;
    }

    .service-icon,
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 0.9rem;
    }

    .feature-content,
    .service-content {
        padding: 1.75rem 1.5rem;
    }

    .careers-highlight {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .services-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-hero-text h1 {
        font-size: 2.5rem;
    }

    .quick-jump-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-detail-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-reverse .service-detail-layout {
        direction: ltr;
    }

    .service-detail-image {
        min-height: 300px;
        order: -1;
    }

    .service-detail-reverse .service-detail-image {
        order: 0;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .service-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .home-hero h1 {
        font-size: 2.5rem;
    }

    .home-hero-subtitle {
        font-size: 1.125rem;
    }

    .home-hero-input-container {
        flex-direction: column;
    }

    .home-hero-button {
        width: 100%;
    }

    .home-hero-image img {
        height: 300px;
    }

    .experience-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-card:nth-child(even) {
        direction: ltr;
    }

    .experience-image img {
        min-height: 250px;
    }

    .services-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-text {
        font-size: 1.75rem;
    }

    .cta-box {
        padding: 3rem 2rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section {
        padding: 60px 30px;
    }

    .home-hero {
        padding: 80px 20px 0;
    }

    .home-hero h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .address-bar {
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
    }

    .address-search-btn {
        width: 100%;
    }

    .experience-grid {
        gap: 40px;
    }

    .experience-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .experience-card-reverse {
        direction: ltr;
    }

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

    .pricing-card-featured {
        transform: scale(1);
    }

    .guarantee-section {
        margin: 60px 30px;
        padding: 40px 30px;
    }

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

    .guarantee-badges {
        flex-direction: column;
        gap: 30px;
    }

    .values-overlay {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin: 30px;
        max-width: 100%;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-container {
        padding: 40px 25px;
    }

    .cta-badges {
        flex-direction: column;
        gap: 30px;
    }

    .footer {
        padding: 60px 30px 30px;
    }

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