/* ========================================
   Toggle Electric - Main Stylesheet
   Version: 1.0.2
   ======================================== */

/* CSS Variables - Exact values from live site audit */
:root {
    --primary-color: rgb(255, 103, 31);
    --secondary-color: #0089f7;
    --dark-bg: rgb(35, 31, 32);
    --dark-bg-alt: rgb(19, 22, 47);
    --light-gray: rgb(244, 243, 238);
    --text-dark: rgb(35, 31, 32);
    --text-light: rgb(99, 99, 99);
    --text-white: rgb(255, 255, 255);
    --text-hero: rgb(220, 221, 222);
    --overlay-green: rgba(0, 128, 100, 0.7);
    --overlay-orange: rgba(200, 120, 50, 0.7);
    --overlay-teal: rgba(0, 100, 100, 0.7);
    --font-heading: 'Barlow Semi Condensed', sans-serif;
    --font-body: 'Barlow Semi Condensed', sans-serif;
    --font-nav: 'Barlow', sans-serif;
    --font-button: 'Barlow Semi Condensed', sans-serif;
    --font-footer: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    --header-height: 111px;
    --sticky-header-height: 70px;
    --container-width: 1200px;
    --transition: all 0.3s ease;
    --btn-transition: color 0.1s ease-in-out, background-color 0.1s ease-in-out, border-color 0.1s ease-in-out;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    color: var(--text-light);
    background-color: var(--text-white);
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 6%;
}

/* ========================================
   Header Styles
   ======================================== */
.header {
    position: relative;
    background: var(--text-white);
    z-index: 1000;
}

.header-inner {
    max-width: 100%;
    padding: 0 50px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo-wrap {
    flex-shrink: 0;
}

.logo-link {
    display: block;
}

.logo-main {
    height: 59px;
    width: 166px;
}

.logo-sticky {
    height: 45px;
    width: auto;
}

/* Navigation */
.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 60px 36px 19.5px 17px;
    font-family: var(--font-nav);
    font-size: 20px;
    font-weight: 600;
    line-height: 31px;
    color: var(--text-dark);
    text-transform: none;
    letter-spacing: 0;
    transition: var(--btn-transition);
}

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

.nav-item.active .nav-link {
    background-color: rgb(255, 103, 31);
    color: var(--text-white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(244, 243, 238);
    box-shadow: none;
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.sticky-header .header-content {
    height: var(--sticky-header-height);
}

.sticky-header.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
}

.hero-inner {
    display: flex;
    width: 100%;
}

.hero-content {
    width: 50%;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    padding: 65px 6% 65px 6%;
}

.hero-text {
    max-width: 550px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    color: var(--text-hero);
    line-height: 66px;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 34px;
}

.hero-image {
    width: 50%;
    background-image: url('../images/TOG-Banner-1.jpg');
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: 70px 0 87px;
    background-color: var(--text-white);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 34px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 66px;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-desc {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

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

.service-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.service-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.57;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.service-image.residential .service-overlay {
    background: linear-gradient(135deg, rgba(0, 100, 80, 0.7), rgba(50, 150, 100, 0.5));
}

.service-image.commercial .service-overlay {
    background: linear-gradient(135deg, rgba(180, 100, 40, 0.7), rgba(200, 150, 80, 0.5));
}

.service-image.industrial .service-overlay {
    background: linear-gradient(135deg, rgba(0, 100, 120, 0.7), rgba(50, 130, 140, 0.5));
}

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

.service-title {
    font-family: var(--font-nav);
    font-size: 19px;
    font-weight: 600;
    color: rgb(34, 33, 39);
    line-height: 31px;
    margin-bottom: 10px;
}

.service-desc {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    line-height: 28px;
}

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

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-button);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.44px;
    line-height: 32px;
    text-transform: none;
    border: none;
    border-radius: 38px;
    cursor: pointer;
    transition: var(--btn-transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-dark {
    background-color: var(--text-dark);
    color: var(--text-white);
}

.btn-dark:hover {
    background-color: #222;
}

.btn-phone {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    padding: 18px 45px;
    letter-spacing: 0;
}

.btn-submit {
    width: 100%;
    padding: 18px 40px;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    position: relative;
}

.about-inner {
    display: flex;
    min-height: 500px;
}

.about-image {
    width: 50%;
    background-image: url('../images/TOG-About.jpg');
    background-size: cover;
    background-position: center;
}

.about-content {
    width: 50%;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    padding: 60px 80px;
}

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

.about-intro {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: none;
    letter-spacing: 0;
    line-height: 34px;
    margin-bottom: 15px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 66px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.about-desc {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    line-height: 34px;
    margin-bottom: 35px;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding: 40px 0;
}

.contact-heading {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 66px;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

/* Contact Form */
.contact-form {
    background: var(--text-white);
    padding: 40px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    border: 1px solid #ddd;
    border-radius: 0;
    background: var(--text-white);
    transition: var(--transition);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

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

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: var(--font-footer);
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    -webkit-font-smoothing: antialiased;
}

.footer-main {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

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

.footer-title {
    font-family: var(--font-footer);
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: normal;
    line-height: 28px;
    margin-bottom: 15px;
}

.footer-col p {
    font-family: var(--font-footer);
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--text-white);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.footer-links a {
    font-family: var(--font-footer);
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-footer);
    font-size: 17px;
    font-weight: 500;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* ========================================
   Mobile Menu
   ======================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--text-white);
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-inner {
    padding: 30px;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-nav {
    padding-top: 50px;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
}

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

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
        line-height: 56px;
    }

    .section-title,
    .about-title,
    .contact-heading {
        font-size: 48px;
        line-height: 52px;
    }

    .hero-subtitle,
    .about-intro,
    .about-desc,
    .section-desc {
        font-size: 20px;
        line-height: 30px;
    }

    .services-grid {
        gap: 20px;
    }

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

@media (max-width: 991px) {
    .header-inner {
        padding: 0 30px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-inner {
        flex-direction: column;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .hero-image {
        min-height: 350px;
    }

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

    .about-inner {
        flex-direction: column;
    }

    .about-image,
    .about-content {
        width: 100%;
    }

    .about-image {
        min-height: 350px;
    }

    .about-content {
        padding: 50px 30px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 44px;
    }

    .hero-subtitle,
    .about-intro,
    .about-desc,
    .section-desc {
        font-size: 18px;
        line-height: 28px;
    }

    .section-title,
    .about-title,
    .contact-heading {
        font-size: 36px;
        line-height: 40px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 16px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    .header-inner {
        padding: 0 15px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 36px;
    }

    .section-title,
    .about-title,
    .contact-heading {
        font-size: 28px;
        line-height: 32px;
    }

    .hero-subtitle,
    .about-intro,
    .about-desc,
    .section-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .btn-phone {
        font-size: 18px;
        padding: 14px 28px;
    }
}

/* ========================================
   Page Hero Section (Inner Pages)
   ======================================== */
.page-hero {
    position: relative;
    background-image: url('../images/TOG-Service-Banner-scaled.jpg');
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 12px 32px;
    font-family: var(--font-button);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 38px;
    margin-bottom: 25px;
}

.hero-badge.dark {
    background-color: var(--dark-bg);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 66px;
    letter-spacing: -2px;
    max-width: 900px;
    margin: 0 auto;
}

/* ========================================
   About Us Page Styles
   ======================================== */

/* About Hero - Split Layout */
.about-hero-split {
    display: flex;
    min-height: 600px;
}

.about-hero-content {
    width: 50%;
    background-color: #F4F3EE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 12%;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 66px;
    letter-spacing: -2px;
    margin-bottom: 36px;
}

.about-hero-content p {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-hero-content p:last-child {
    margin-bottom: 0;
}

.about-hero-image {
    width: 50%;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* History Section */
.history-section {
    padding: 80px 0;
}

.history-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 12px 32px;
    font-family: var(--font-button);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 38px;
    margin-bottom: 20px;
}

.section-badge.dark {
    background-color: var(--dark-bg);
}

.section-badge.light {
    background-color: #6D6E71;
    color: var(--text-white);
}

.history-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 66px;
    letter-spacing: -2px;
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

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

.history-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.history-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.history-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.history-card p {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--text-light);
}

/* Mission Section */
.mission-section {
    position: relative;
    background-color: #17161B;
}

.mission-inner {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.mission-image {
    width: 50%;
    position: relative;
}

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

.mission-content {
    width: 50%;
    background-color: #17161B;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 12%;
}

.mission-content .section-badge {
    align-self: flex-start;
    margin-bottom: 36px;
}

.mission-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 66px;
    letter-spacing: -2px;
    margin-bottom: 36px;
}

.mission-content p {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.mission-content p:last-child {
    margin-bottom: 0;
}

/* Team Section - Split Layout */
.team-section {
    position: relative;
}

.team-inner {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.team-content {
    width: 50%;
    background-color: #DCDDDE;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 120px 12%;
}

.team-content .section-badge {
    align-self: flex-start;
    margin-bottom: 28px;
}

.team-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 66px;
    letter-spacing: -2px;
    margin-bottom: 12px;
}

.team-member-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 31px;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.team-content p {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-content p:last-child {
    margin-bottom: 0;
}

.team-image {
    width: 50%;
    position: relative;
}

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

/* Certification Section */
.certification-section {
    padding: 120px 0;
}

.certification-header {
    text-align: center;
    margin-bottom: 60px;
}

.certification-header .section-badge {
    margin-bottom: 20px;
}

.certification-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 66px;
    letter-spacing: -2px;
}

.certification-grid {
    display: flex;
    justify-content: center;
    gap: 120px;
}

.certification-card {
    display: flex;
    align-items: center;
    gap: 20px;
}

.certification-card img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.certification-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.certification-card p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-light);
}

/* ========================================
   Services Page Styles
   ======================================== */
.service-detail-section {
    padding: 100px 0;
}

.service-detail-section:nth-child(even) {
    background-color: #F4F3EE;
}

.service-detail-inner {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

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

.service-detail-images {
    flex: 1;
    display: flex;
    gap: 30px;
}

.oval-image {
    flex: 1;
    border-radius: 150px;
    overflow: hidden;
    position: relative;
}

.oval-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.oval-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.oval-image.green-overlay::after {
    background: rgba(0, 120, 80, 0.6);
}

.oval-image.orange-overlay::after {
    background: rgba(180, 120, 40, 0.6);
}

.oval-image.blue-overlay::after {
    background: rgba(0, 100, 130, 0.6);
}

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

.service-detail-content h2 {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 66px;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.service-detail-content p {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-specializations {
    margin: 40px 0;
}

.specialize-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.service-icons {
    display: flex;
    gap: 40px;
}

.service-icon {
    text-align: center;
}

.service-icon img {
    height: 50px;
    width: auto;
    margin: 0 auto 10px;
}

.service-icon span {
    font-size: 14px;
    color: var(--text-dark);
}

/* Specialized Services */
.specialized-services-section {
    padding: 100px 0;
    background-color: #F4F3EE;
}

.specialized-header {
    text-align: center;
    margin-bottom: 60px;
}

.specialized-header h2 {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 66px;
    letter-spacing: -2px;
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.specialized-icon img {
    height: 80px;
    width: auto;
    margin: 0 auto;
}

.specialized-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.specialized-card p {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--text-light);
}

/* ========================================
   Contact Page Styles
   ======================================== */
.contact-page-section {
    min-height: calc(100vh - var(--header-height));
}

.contact-page-inner {
    display: flex;
    min-height: calc(100vh - var(--header-height));
}

.contact-left-panel {
    width: 50%;
    background-color: var(--primary-color);
    padding: 80px 60px;
    position: relative;
}

.contact-left-content {
    max-width: 500px;
    margin-left: auto;
}

.contact-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 8px 20px;
    font-family: var(--font-button);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 20px;
}

.contact-page-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 66px;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.contact-hours {
    margin-bottom: 40px;
}

.contact-hours h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 15px;
}

.contact-hours p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-section h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 20px;
}

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

.contact-page-form .form-group {
    margin-bottom: 15px;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-body);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    color: var(--text-white);
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.2);
}

.btn-white {
    background-color: var(--text-white);
    color: var(--primary-color);
    width: 100%;
}

.btn-white:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.toggle-badge {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.toggle-badge img {
    width: 160px;
    height: 160px;
}

.contact-right-panel {
    width: 50%;
    position: relative;
}

.contact-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
}

/* ========================================
   Legal Pages Styles
   ======================================== */
.legal-hero {
    min-height: 350px;
}

.legal-content-section {
    padding: 80px 0;
}

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

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 52px;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content p {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    list-style: disc;
}

.legal-content li {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
}

.legal-content a:hover {
    text-decoration: underline;
}

/* ========================================
   Responsive Styles for New Pages
   ======================================== */
@media (max-width: 991px) {
    .page-hero-title {
        font-size: 48px;
        line-height: 52px;
    }

    /* About Hero Split - Tablet */
    .about-hero-split {
        flex-direction: column;
    }

    .about-hero-content,
    .about-hero-image {
        width: 100%;
    }

    .about-hero-content {
        padding: 60px 30px;
        order: 1;
    }

    .about-hero-image {
        min-height: 350px;
        order: 2;
    }

    .about-hero-title {
        font-size: 48px;
        line-height: 52px;
    }

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

    .mission-inner {
        flex-direction: column;
    }

    .mission-image,
    .mission-content {
        width: 100%;
    }

    .mission-image {
        min-height: 350px;
    }

    .mission-content {
        padding: 60px 30px;
    }

    /* Team Section - Tablet */
    .team-inner {
        flex-direction: column;
    }

    .team-content,
    .team-image {
        width: 100%;
    }

    .team-content {
        padding: 60px 30px;
        order: 1;
    }

    .team-image {
        min-height: 350px;
        order: 2;
    }

    .team-title {
        font-size: 48px;
        line-height: 52px;
    }

    .service-detail-inner,
    .service-detail-inner.reverse {
        flex-direction: column;
        padding: 0 30px;
    }

    .service-detail-images {
        width: 100%;
        justify-content: center;
    }

    .service-detail-content {
        width: 100%;
    }

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

    .contact-page-inner {
        flex-direction: column;
    }

    .contact-left-panel,
    .contact-right-panel {
        width: 100%;
    }

    .contact-right-panel {
        min-height: 400px;
    }

    .toggle-badge {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 40px;
        text-align: center;
    }

    .certification-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .certification-title {
        font-size: 48px;
        line-height: 52px;
    }
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 36px;
        line-height: 40px;
    }

    /* About Hero Split - Mobile */
    .about-hero-title {
        font-size: 36px;
        line-height: 40px;
    }

    .about-hero-content p {
        font-size: 18px;
        line-height: 28px;
    }

    .history-title,
    .mission-title,
    .team-title,
    .certification-title {
        font-size: 36px;
        line-height: 40px;
    }

    .mission-content p,
    .team-content p {
        font-size: 18px;
        line-height: 28px;
    }

    .team-member-title {
        font-size: 20px;
        line-height: 26px;
    }

    .service-detail-content h2 {
        font-size: 36px;
        line-height: 40px;
    }

    .service-detail-content p {
        font-size: 18px;
        line-height: 28px;
    }

    .oval-image img {
        height: 300px;
    }

    .service-icons {
        gap: 20px;
    }

    .contact-page-title {
        font-size: 40px;
        line-height: 44px;
    }

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

/* ========================================
   Utilities
   ======================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
