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

:root {
    --dark-bg: #2C2C2C;
    --dark-text: #1A1A1A;
    --gold: #D4AF37;
    --gold-light: #F5E6D3;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --text-gray: #666666;
    --text-dark: #333333;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.top-bar-right-hours {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 1rem;
}

.top-bar-item {
    color: var(--white);
}

.top-bar-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-item a:hover {
    color: var(--gold);
}

.btn-top-bar {
    background-color: var(--gold);
    color: var(--dark-text);
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-top-bar:hover {
    background-color: #C09B2E;
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.header-scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    transition: padding 0.3s ease;
}

.header.header-scrolled .nav {
    padding: 0.5rem 0 !important;
}

.logo-img {
    height: 120px;
    width: auto;
    max-width: 480px;
    object-fit: contain;
    transition: height 0.3s ease, max-width 0.3s ease;
}

.header.header-scrolled .logo-img {
    height: 70px !important;
    max-width: 280px !important;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    text-decoration: none;
}

.logo-accent {
    color: var(--gold);
}

.footer-logo-img {
    height: 84px;
    width: auto;
    max-width: 308px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.nav-link.active {
    color: var(--gold);
}

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

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown .nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
}

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

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--gold);
    padding-left: 2rem;
}

/* Dropdown menu - Destination-based hover colors */
.dropdown-menu a[href*="life-insurance"]:hover {
    background-color: rgba(46, 134, 171, 0.1);
    color: #2E86AB;
}

.dropdown-menu a[href*="homeowners-insurance"]:hover {
    background-color: rgba(39, 174, 96, 0.1);
    color: #27AE60;
}

.dropdown-menu a[href*="auto-insurance"]:hover {
    background-color: rgba(231, 76, 60, 0.1);
    color: #E74C3C;
}

.dropdown-menu a[href*="business-insurance"]:hover {
    background-color: rgba(91, 44, 111, 0.1);
    color: #5B2C6F;
}

/* Mobile Menu Styles */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 0;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem 1.5rem 2rem;
    text-align: center;
    flex: 1;
}

.mobile-menu-header {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1001;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.mobile-menu-close:hover {
    color: var(--gold);
}

.mobile-menu-logo {
    margin-bottom: 3rem;
    text-align: center;
}

.mobile-menu-logo-img {
    height: 100px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.mobile-menu .nav-link {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid var(--medium-gray);
    font-size: 1.1rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.mobile-menu .nav-link:last-child {
    border-bottom: none;
}

.mobile-menu-dropdown {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
}

.mobile-menu-dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--medium-gray);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.3s ease;
    text-align: center;
    width: 100%;
}

.mobile-menu-dropdown-toggle:hover {
    color: var(--gold);
}

.mobile-menu-dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.mobile-menu-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-menu-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-dropdown-content.active {
    max-height: 500px;
}

.mobile-menu-dropdown-content a {
    display: block;
    padding: 0.75rem 0;
    color: var(--text-gray);
    text-decoration: none;
    border-bottom: 1px solid var(--light-gray);
    transition: color 0.3s ease;
    font-size: 0.95rem;
    text-align: center;
}

.mobile-menu-dropdown-content a:hover {
    color: var(--gold);
    background-color: rgba(212, 175, 55, 0.1);
}

/* Mobile dropdown menu - Destination-based hover colors */
.mobile-menu-dropdown-content a[href*="life-insurance"]:hover {
    background-color: rgba(46, 134, 171, 0.1);
    color: #2E86AB;
}

.mobile-menu-dropdown-content a[href*="homeowners-insurance"]:hover {
    background-color: rgba(39, 174, 96, 0.1);
    color: #27AE60;
}

.mobile-menu-dropdown-content a[href*="auto-insurance"]:hover {
    background-color: rgba(231, 76, 60, 0.1);
    color: #E74C3C;
}

.mobile-menu-dropdown-content a[href*="business-insurance"]:hover {
    background-color: rgba(91, 44, 111, 0.1);
    color: #5B2C6F;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
}

.icon-search,
.icon-social {
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.icon-social:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at left center, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.5) 50%, transparent 100%),
        linear-gradient(135deg, rgba(44, 44, 44, 0.6) 0%, rgba(68, 68, 68, 0.3) 50%, rgba(44, 44, 44, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-badge {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    height: 100%;
}

.hero-badge img {
    max-width: 100px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-badge {
        margin-left: 0.5rem;
    }
    
    .hero-badge img {
        max-width: 100px;
    }
}

.hero-text {
    width: 100%;
    max-width: 100%;
}

.hero-label {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: none;
    letter-spacing: 0;
}

.hero-diagonal-cut {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--white);
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
    z-index: 4;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
    align-items: center;
}

.hero-tagline {
    font-size: 0.95rem;
    color: var(--white);
    opacity: 0.9;
    font-style: italic;
    margin-top: 0.5rem;
    font-weight: 400;
}

.btn-hero {
    background-color: var(--gold);
    color: var(--dark-text);
    padding: 0.75rem 1.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero:hover {
    background-color: #C09B2E;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 0.75rem 1.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background-color: var(--white);
    color: var(--dark-text);
    transform: translateY(-3px);
}

/* Services Section */
.services-section {
    padding: 2rem 0 5rem;
    background-color: var(--white);
}

/* Insurance Types Page - More space above Our Insurance Types */
.insurance-types-page .services-section {
    padding-top: 6rem;
}

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

.section-intro {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.service-card-link:hover {
    transform: translateY(-2px);
}

.service-card-link:focus {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 4px;
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-link:hover .icon-circle {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.icon-circle i {
    font-size: 2.5rem;
    color: var(--dark-text);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    transition: color 0.3s ease;
    margin-bottom: 1rem;
}

.service-card-link:hover .service-title {
    color: var(--gold);
}

.service-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--dark-text);
    text-decoration: underline;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 0;
}

.map-embed {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-embed iframe {
    display: block;
    width: 100%;
    border-radius: 8px;
}

.map-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text-gray);
}

.map-address i {
    color: var(--gold);
    font-size: 1.2rem;
}

.map-address-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-address-link:hover {
    color: var(--gold);
    text-decoration: underline;
}

.address-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.address-link:hover {
    text-decoration: underline;
}

.stack-image {
    position: absolute;
    width: 80%;
    height: auto;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.img-1 {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-2deg);
}

.img-2 {
    top: 10%;
    left: 10%;
    z-index: 2;
    transform: rotate(1deg);
}

.img-3 {
    top: 20%;
    left: 20%;
    z-index: 1;
    transform: rotate(-1deg);
}

.section-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-label.white {
    color: rgba(255, 255, 255, 0.7);
}

.section-label-gold {
    color: var(--gold);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.title-accent {
    color: var(--gold);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.section-description-bold {
    font-weight: 700;
}

.stats-box {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 3.15rem;
    font-weight: 900;
    color: var(--dark-text);
    line-height: 1;
}

.stat-years {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-left: 0.25rem;
}

.stat-label {
    font-size: 0.91rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-left: 0.75rem;
    line-height: 1.2;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-about {
    background-color: var(--dark-text);
    color: var(--white);
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background-color: #333333;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-directions {
    background-color: var(--gold);
    color: #000000 !important;
}

.btn-directions:hover {
    background-color: #C09B2E;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

/* Why Work With Us / FAQ Section */
.why-work-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 50%, #f0f0f0 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.why-work-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.03) 10px, rgba(212, 175, 55, 0.03) 20px);
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.why-work-section .section-title {
    color: var(--text-dark);
    position: relative;
}

.why-work-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.why-work-section .section-description {
    color: var(--text-gray);
}

.why-work-section .section-label-gold {
    color: var(--gold);
    font-weight: 700;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 968px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    border: none;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    width: 100%;
    align-self: start;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.faq-item.active {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-left: 4px solid transparent;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}

.faq-item.active .faq-question {
    background-color: rgba(212, 175, 55, 0.05);
    border-left-color: var(--gold);
}

.faq-question:hover {
    background-color: rgba(212, 175, 55, 0.03);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    padding-right: 1.5rem;
    line-height: 1.5;
}

.faq-icon {
    font-size: 1rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    background-color: var(--white);
    padding: 0;
    opacity: 0;
    visibility: hidden;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.75rem;
    opacity: 1;
    visibility: visible;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    padding-top: 1rem;
}

/* Experience Section */
.experience-section {
    padding: 6rem 0;
    background-color: var(--dark-bg);
    color: var(--white);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-visual {
    position: relative;
}

.experience-text-large {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    line-height: 1;
    position: absolute;
    top: -2rem;
    left: 0;
    z-index: 1;
}

.experience-chart {
    width: 100%;
    height: 300px;
    position: relative;
    z-index: 2;
}

.experience-text {
    z-index: 3;
}

.progress-items {
    margin-top: 2rem;
}

.progress-item {
    margin-bottom: 2rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.progress-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.progress-percent {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--gold);
    border-radius: 2px;
    transition: width 1s ease;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-image {
    margin-bottom: 1.5rem;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 4px solid var(--gold-light);
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.team-title {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.team-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--medium-gray);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.team-contact-btn {
    display: inline-block;
    padding: 0.875rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-phone-btn {
    background-color: var(--gold);
    color: var(--dark-text);
    border-color: var(--gold);
}

.team-phone-btn:hover {
    background-color: #C09B2E;
    border-color: #C09B2E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

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

.team-email-btn:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    font-size: 1.2rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--gold);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/DavidCall.jpg') center/cover;
    opacity: 0.1;
    filter: blur(5px);
    z-index: 1;
}

.testimonials-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

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

.testimonial-quote {
    position: relative;
    margin: 2rem 0;
}

.quote-mark {
    font-size: 6rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: -1rem;
    left: -2rem;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #5b5b5b;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gold);
    color: var(--dark-text);
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background-color: var(--gold-light);
    transform: scale(1.1);
}

.testimonials-image {
    position: relative;
}

.testimonial-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
OF.contact-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.contact-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.contact-details p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
}

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

.contact-details a:hover {
    color: var(--dark-text);
    text-decoration: underline;
}

.license-text {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
}

/* Footer */
.footer {
    background-color: #000000;
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-badge-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 1rem;
}

.footer-badge {
    height: 80px;
    width: auto;
    display: block;
}

.social-icon {
    font-size: 1.5rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.social-icon i {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.social-icon:hover i {
    color: var(--gold);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 0;
    margin-top: 0;
    text-indent: 0;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Ensure the li containing address link doesn't have extra margin */
.footer-links li:has(a.address-link) {
    margin-bottom: 0.75rem;
}

.footer-links li i {
    color: var(--gold);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

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

.footer-links a[href^="tel:"] {
    text-decoration: none;
}

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

.footer-hours {
    margin-top: 0.5rem;
}

/* Target the first footer-hours element (the one with "Office Hours:") - comes after the address link */
.footer-links li:has(a.address-link) + li.footer-hours {
    margin-top: 20px !important;
    padding-top: 0 !important;
}

/* Fallback for browsers without :has() support - target first footer-hours */
.footer-links li.footer-hours:first-of-type {
    margin-top: 20px !important;
    padding-top: 0 !important;
}

/* Additional specificity to ensure it works */
.footer-section .footer-links li.footer-hours:first-of-type {
    margin-top: 20px !important;
}

.footer-hours strong {
    color: var(--white);
}

.footer-license {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.legal-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-links-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.footer-links-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    text-align: left;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.website-by {
    margin: 0;
    font-size: 0.85rem;
}

.website-by a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.website-by a:hover {
    color: var(--gold);
    text-decoration: underline;
}

.graticle-logo {
    height: 35px;
    width: auto;
    vertical-align: middle;
    margin-left: 4px;
    display: inline-block;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.website-by a:hover .graticle-logo,
.website-by a:focus .graticle-logo {
    filter: grayscale(0%);
    opacity: 1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: flex-start;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    margin: auto;
    padding: 2.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 900px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    overflow-x: hidden;
}

.close {
    color: var(--text-gray);
    float: right;
    font-size: 32px;
    font-weight: bold;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: var(--dark-text);
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-size: 2rem;
    text-transform: uppercase;
}

.modal-intro {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 0;
}

/* Honeypot field - completely hidden from users */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

.honeypot-field input,
.honeypot-field label {
    display: none !important;
}

.form-group-full {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--medium-gray);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group select {
    background-color: var(--white);
    cursor: pointer;
}

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

.btn-primary {
    background-color: var(--gold);
    color: var(--dark-text);
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
}

button.btn-hero {
    border: none;
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-content,
    .experience-content,
    .testimonials-content {
        flex-direction: column;
    }
    
    .experience-text-large {
        font-size: 5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1020px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-right {
        display: none;
    }
    
    .logo-img {
        height: 80px;
        max-width: 200px;
    }
    
    .header.header-scrolled .logo-img {
        height: 60px !important;
        max-width: 150px !important;
    }
    
    .nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .header.header-scrolled .nav {
        padding: 0.5rem 0 !important;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
    
    .mobile-menu-overlay:not(.active) {
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        align-items: center;
    }
    
    .top-bar-left {
        margin: 0 auto;
        justify-content: center;
    }
    
    .top-bar-right-hours {
        margin: 0 auto;
        margin-left: 0;
        margin-right: 0;
        font-size: 0.85rem;
    }
    
    .top-bar-right {
        margin: 0 auto;
    }
    
    .logo-img {
        height: 60px;
        max-width: 240px;
    }
    
    .hero {
        height: auto;
        min-height: 80vh;
        padding: 2rem 0;
        align-items: flex-start;
        overflow: hidden;
    }
    
    .hero-content {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-text {
        padding-left: 0;
        text-align: center;
    }
    
    .modal {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
        max-height: calc(100vh - 2rem);
    }
    
    .services-grid,
    .team-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-about {
        width: 100%;
        text-align: center;
    }
    
    .image-stack {
        height: 400px;
    }
    
    .map-embed iframe {
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.45rem;
    }
    
    .stat-years {
        font-size: 2.1rem;
    }
    
    .stat-label {
        font-size: 0.78rem;
    }
    
    .stats-box {
        justify-content: center;
        text-align: center;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
    }
    
    .why-choose-section {
        padding: 5rem 0;
    }
    
    .why-choose-section .section-header {
        margin-bottom: 3rem;
    }
    
    .why-choose-section .section-title {
        font-size: 2.2rem;
    }
    
    .feature-icon-white {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon-white i {
        font-size: 1.75rem;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-description {
        font-size: 1rem;
    }
    
    .testimonials-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo-img {
        height: 60px;
        max-width: 220px;
    }
    
    .copyright-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .copyright {
        text-align: center;
    }
    
    .website-by {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 1.5rem 0;
        align-items: flex-start;
        overflow: hidden;
    }
    
    .hero-content {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        margin-bottom: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .logo-img {
        height: 50px;
        max-width: 200px;
    }
    
    .footer-logo-img {
        height: 50px;
        max-width: 200px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-years {
        font-size: 1.7rem;
    }
    
    .stat-label {
        font-size: 0.715rem;
    }
    
    .image-stack {
        height: 300px;
    }
    
    .map-embed iframe {
        height: 200px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .icon-circle i {
        font-size: 2rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .modal {
        padding: 0.5rem;
        align-items: flex-start;
    }
    
    .modal-content {
        padding: 1.5rem 1rem;
        margin: 0.5rem auto;
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 1rem);
        border-radius: 8px;
    }
    
    .close {
        right: 0.75rem;
        top: 0.75rem;
        font-size: 28px;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
        padding-right: 2rem;
    }
    
    .modal-intro {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group-full {
        margin-bottom: 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .top-bar-item {
        font-size: 0.75rem;
    }
    
    .btn-top-bar {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--text-dark) 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-hero-with-map {
    padding: 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent;
}

.page-hero-map-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: grayscale(100%) contrast(1.2);
    overflow: hidden;
}

.page-hero-map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140%;
}

.page-hero-map {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.page-hero-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
    pointer-events: none;
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 0 0 2rem 0;
}

.page-hero-label {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

/* About Page Styles */
.about-page-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.about-page-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: start;
}

.about-page-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-page-photo {
    grid-column: 1 / -1;
    margin-top: 1rem;
}

.about-photo-img {
    width: 100%;
    height: auto;
    max-height: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.stat-card {
    background: linear-gradient(135deg, var(--gold) 0%, #C09B2E 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    color: var(--dark-text);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-start;
}

.service-features li i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Insurance Info Section */
.insurance-info-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

/* Why Choose Section */
.why-choose-section {
    padding: 8rem 0;
    background-color: var(--white);
    position: relative;
}

.why-choose-section .section-header {
    margin-bottom: 5rem;
}

.why-choose-section .section-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.why-choose-section .section-description {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.feature-highlight {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, #fafafa 0%, var(--white) 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 3.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #C09B2E);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.2);
}

.feature-icon-white {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, #C09B2E 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-white {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-white i {
    font-size: 2rem;
    color: var(--dark-text);
}

.feature-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    text-align: center;
    line-height: 1.3;
}

.feature-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    text-align: center;
    margin: 0;
}

/* Carriers Section */
.carriers-section {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.carrier-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carrier-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carrier-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.carrier-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 968px) {
    .carriers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .carriers-grid {
        grid-template-columns: 1fr;
    }
}

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

.info-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-icon {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--text-dark) 100%);
    color: var(--white);
    text-align: center;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-page-section {
    padding: 2rem 0 4rem;
    background-color: var(--white);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-form-wrapper {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.form-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: 0.5rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.contact-info-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.contact-info-card p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #C09B2E;
}

.contact-info-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.map-embed-contact {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-embed-contact iframe {
    border-radius: 12px;
}

/* Responsive Styles for New Pages */
@media (max-width: 968px) {
    .about-page-content {
        grid-template-columns: 1fr;
    }
    
    .about-page-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    
    .insurance-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Disable animations on mobile */
    * {
        animation: none !important;
    }
    
    /* Keep essential transitions like FAQ answers */
    .faq-answer,
    .faq-icon {
        transition: all 0.3s ease !important;
    }
    
    .services-section,
    .about-section,
    .why-choose-section,
    .experience-section,
    .team-section,
    .testimonials-section,
    .contact-section,
    .other-insurance-section,
    .service-card,
    .team-card,
    .stack-image {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .page-hero {
        padding: 3rem 0 2rem;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    .footer-content {
        text-align: center;
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-logo-img {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        justify-content: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .footer-badge-container {
        justify-content: center;
    }
    
    .website-by {
        text-align: center;
    }
    
    .footer-links li a {
        text-align: center;
    }
    
    .about-page-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        transform: none;
    }
}

/* Insurance Detail Pages */
.insurance-detail-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.insurance-detail-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.insurance-detail-main h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.insurance-detail-main h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.insurance-detail-main p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.insurance-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.insurance-type-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insurance-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.insurance-type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, #C09B2E 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: transform 0.3s ease;
}

.insurance-type-card:hover .insurance-type-icon {
    transform: scale(1.1) rotate(5deg);
}

.insurance-type-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.insurance-type-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.insurance-type-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.insurance-benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.insurance-benefits-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    line-height: 1.7;
}

.insurance-benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.insurance-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-team-photos {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    position: relative;
    min-height: 180px;
}

.team-photo-wrapper.polaroid {
    width: 140px;
    background: var(--white);
    padding: 12px 12px 12px;
    border-radius: 4px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, rotate 0.3s ease;
    z-index: 1;
}

.team-photo-wrapper.polaroid:first-child {
    transform: rotate(-3deg);
    z-index: 2;
}

.team-photo-wrapper.polaroid:last-child {
    transform: rotate(3deg);
    z-index: 1;
}

.team-photo-wrapper.polaroid:hover {
    transform: scale(1.05) rotate(0deg) translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 3;
}

.polaroid-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: var(--light-gray);
    margin-bottom: 12px;
    border-radius: 2px;
}

.sidebar-team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.team-photo-wrapper.polaroid:hover .sidebar-team-photo {
    transform: scale(1.08);
}

.polaroid-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #000000 !important;
    text-align: center;
    margin: 0;
    line-height: 1.2;
    font-family: 'Georgia', serif;
    letter-spacing: 0.5px;
}

.polaroid-description {
    font-size: 0.7rem;
    color: var(--text-gray);
    text-align: center;
    margin: 0;
    line-height: 1.3;
    font-style: italic;
    padding-bottom: 4px;
}

.sidebar-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.sidebar-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.team-photo-wrapper.polaroid p {
    margin-bottom: 0;
}

.sidebar-card .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 0.75rem;
}

.sidebar-card .btn-hero-secondary {
    background-color: var(--dark-text);
    color: var(--white);
    border: 2px solid var(--dark-text);
}

.sidebar-card .btn-hero-secondary:hover {
    background-color: #333333;
    border-color: #333333;
    color: var(--white);
}

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

.sidebar-list li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-list li i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Other Insurance Types Section */
.other-insurance-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

/* Life Insurance Page - Warm, Family-Focused Theme */
.life-insurance-page {
    --page-accent: #2E86AB;
    --page-accent-light: #A8DADC;
    --page-accent-dark: #1B4F72;
}

.life-insurance-page .page-hero {
    background: linear-gradient(135deg, #1B4F72 0%, #2E86AB 50%, #A8DADC 100%);
}

.life-insurance-page .page-hero-label {
    color: var(--page-accent-light);
}

.life-insurance-page .title-accent {
    color: var(--page-accent-light);
}

.life-insurance-page .icon-circle {
    background: linear-gradient(135deg, var(--page-accent) 0%, var(--page-accent-dark) 100%);
}

.life-insurance-page .icon-circle i {
    color: var(--white);
}

.life-insurance-page .btn-hero {
    background-color: var(--page-accent);
    color: var(--white);
}

.life-insurance-page .btn-hero:hover {
    background-color: var(--page-accent-dark);
}

.life-insurance-page .insurance-type-icon {
    background: linear-gradient(135deg, var(--page-accent) 0%, var(--page-accent-dark) 100%);
}

.life-insurance-page .sidebar-list li i,
.life-insurance-page .insurance-benefits-list li::before {
    color: var(--page-accent);
}

.life-insurance-page .insurance-type-card:hover {
    border: 2px solid var(--page-accent-light);
    box-shadow: 0 8px 30px rgba(46, 134, 171, 0.2);
}

.life-insurance-page .cta-section {
    background: linear-gradient(135deg, #1B4F72 0%, #2E86AB 100%);
}

.life-insurance-page .service-link {
    color: var(--page-accent);
}

.life-insurance-page .service-link:hover {
    color: var(--page-accent-dark);
}

/* Other Insurance Section - Destination-based color themes */
/* Life Insurance card (Blue theme) */
.other-insurance-section .service-card:has(a[href*="life-insurance"]) .icon-circle {
    background: linear-gradient(135deg, #2E86AB 0%, #1B4F72 100%);
}

.other-insurance-section .service-card:has(a[href*="life-insurance"]) .icon-circle i {
    color: var(--white);
}

.other-insurance-section .service-card:has(a[href*="life-insurance"]) .service-card-link:hover .icon-circle {
    box-shadow: 0 6px 20px rgba(46, 134, 171, 0.4);
}

.other-insurance-section .service-card:has(a[href*="life-insurance"]) .service-card-link .service-title {
    color: var(--dark-text);
}

.other-insurance-section .service-card:has(a[href*="life-insurance"]) .service-card-link:hover .service-title {
    color: #2E86AB;
}

.other-insurance-section .service-card:has(a[href*="life-insurance"]) .service-link {
    color: #2E86AB;
}

.other-insurance-section .service-card:has(a[href*="life-insurance"]) .service-link:hover {
    color: #1B4F72;
}

.other-insurance-section .service-card:has(a[href*="life-insurance"]):hover {
    box-shadow: 0 8px 30px rgba(46, 134, 171, 0.25);
}

/* Homeowners Insurance card (Green theme) */
.other-insurance-section .service-card:has(a[href*="homeowners-insurance"]) .icon-circle {
    background: linear-gradient(135deg, #27AE60 0%, #1E8449 100%);
}

.other-insurance-section .service-card:has(a[href*="homeowners-insurance"]) .icon-circle i {
    color: var(--white);
}

.other-insurance-section .service-card:has(a[href*="homeowners-insurance"]) .service-card-link:hover .icon-circle {
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.other-insurance-section .service-card:has(a[href*="homeowners-insurance"]) .service-card-link .service-title {
    color: var(--dark-text);
}

.other-insurance-section .service-card:has(a[href*="homeowners-insurance"]) .service-card-link:hover .service-title {
    color: #27AE60;
}

.other-insurance-section .service-card:has(a[href*="homeowners-insurance"]) .service-link {
    color: #27AE60;
}

.other-insurance-section .service-card:has(a[href*="homeowners-insurance"]) .service-link:hover {
    color: #1E8449;
}

.other-insurance-section .service-card:has(a[href*="homeowners-insurance"]):hover {
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.25);
}

/* Auto Insurance card (Red theme) */
.other-insurance-section .service-card:has(a[href*="auto-insurance"]) .icon-circle {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
}

.other-insurance-section .service-card:has(a[href*="auto-insurance"]) .icon-circle i {
    color: var(--white);
}

.other-insurance-section .service-card:has(a[href*="auto-insurance"]) .service-card-link:hover .icon-circle {
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.other-insurance-section .service-card:has(a[href*="auto-insurance"]) .service-card-link .service-title {
    color: var(--dark-text);
}

.other-insurance-section .service-card:has(a[href*="auto-insurance"]) .service-card-link:hover .service-title {
    color: #E74C3C;
}

.other-insurance-section .service-card:has(a[href*="auto-insurance"]) .service-link {
    color: #E74C3C;
}

.other-insurance-section .service-card:has(a[href*="auto-insurance"]) .service-link:hover {
    color: #C0392B;
}

.other-insurance-section .service-card:has(a[href*="auto-insurance"]):hover {
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.25);
}

/* Business Insurance card (Purple theme) */
.other-insurance-section .service-card:has(a[href*="business-insurance"]) .icon-circle {
    background: linear-gradient(135deg, #5B2C6F 0%, #3D1F4F 100%);
}

.other-insurance-section .service-card:has(a[href*="business-insurance"]) .icon-circle i {
    color: var(--white);
}

.other-insurance-section .service-card:has(a[href*="business-insurance"]) .service-card-link:hover .icon-circle {
    box-shadow: 0 6px 20px rgba(91, 44, 111, 0.4);
}

.other-insurance-section .service-card:has(a[href*="business-insurance"]) .service-card-link .service-title {
    color: var(--dark-text);
}

.other-insurance-section .service-card:has(a[href*="business-insurance"]) .service-card-link:hover .service-title {
    color: #5B2C6F;
}

.other-insurance-section .service-card:has(a[href*="business-insurance"]) .service-link {
    color: #5B2C6F;
}

.other-insurance-section .service-card:has(a[href*="business-insurance"]) .service-link:hover {
    color: #3D1F4F;
}

.other-insurance-section .service-card:has(a[href*="business-insurance"]):hover {
    box-shadow: 0 8px 30px rgba(91, 44, 111, 0.25);
}

/* Main Services Section - Destination-based color themes */
/* Life Insurance card (Blue theme) */
.services-section .service-card:has(a[href*="life-insurance"]) .icon-circle {
    background: linear-gradient(135deg, #2E86AB 0%, #1B4F72 100%);
}

.services-section .service-card:has(a[href*="life-insurance"]) .icon-circle i {
    color: var(--white);
}

.services-section .service-card:has(a[href*="life-insurance"]) .service-card-link:hover .icon-circle {
    box-shadow: 0 6px 20px rgba(46, 134, 171, 0.4);
}

.services-section .service-card:has(a[href*="life-insurance"]) .service-card-link .service-title {
    color: var(--dark-text);
}

.services-section .service-card:has(a[href*="life-insurance"]) .service-card-link:hover .service-title {
    color: #2E86AB;
}

.services-section .service-card:has(a[href*="life-insurance"]) .service-link {
    color: #2E86AB;
}

.services-section .service-card:has(a[href*="life-insurance"]) .service-link:hover {
    color: #1B4F72;
}

.services-section .service-card:has(a[href*="life-insurance"]):hover {
    box-shadow: 0 8px 30px rgba(46, 134, 171, 0.25);
}

/* Homeowners Insurance card (Green theme) */
.services-section .service-card:has(a[href*="homeowners-insurance"]) .icon-circle {
    background: linear-gradient(135deg, #27AE60 0%, #1E8449 100%);
}

.services-section .service-card:has(a[href*="homeowners-insurance"]) .icon-circle i {
    color: var(--white);
}

.services-section .service-card:has(a[href*="homeowners-insurance"]) .service-card-link:hover .icon-circle {
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.services-section .service-card:has(a[href*="homeowners-insurance"]) .service-card-link .service-title {
    color: var(--dark-text);
}

.services-section .service-card:has(a[href*="homeowners-insurance"]) .service-card-link:hover .service-title {
    color: #27AE60;
}

.services-section .service-card:has(a[href*="homeowners-insurance"]) .service-link {
    color: #27AE60;
}

.services-section .service-card:has(a[href*="homeowners-insurance"]) .service-link:hover {
    color: #1E8449;
}

.services-section .service-card:has(a[href*="homeowners-insurance"]):hover {
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.25);
}

/* Auto Insurance card (Red theme) */
.services-section .service-card:has(a[href*="auto-insurance"]) .icon-circle {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
}

.services-section .service-card:has(a[href*="auto-insurance"]) .icon-circle i {
    color: var(--white);
}

.services-section .service-card:has(a[href*="auto-insurance"]) .service-card-link:hover .icon-circle {
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.services-section .service-card:has(a[href*="auto-insurance"]) .service-card-link .service-title {
    color: var(--dark-text);
}

.services-section .service-card:has(a[href*="auto-insurance"]) .service-card-link:hover .service-title {
    color: #E74C3C;
}

.services-section .service-card:has(a[href*="auto-insurance"]) .service-link {
    color: #E74C3C;
}

.services-section .service-card:has(a[href*="auto-insurance"]) .service-link:hover {
    color: #C0392B;
}

.services-section .service-card:has(a[href*="auto-insurance"]):hover {
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.25);
}

/* Business Insurance card (Purple theme) */
.services-section .service-card:has(a[href*="business-insurance"]) .icon-circle {
    background: linear-gradient(135deg, #5B2C6F 0%, #3D1F4F 100%);
}

.services-section .service-card:has(a[href*="business-insurance"]) .icon-circle i {
    color: var(--white);
}

.services-section .service-card:has(a[href*="business-insurance"]) .service-card-link:hover .icon-circle {
    box-shadow: 0 6px 20px rgba(91, 44, 111, 0.4);
}

.services-section .service-card:has(a[href*="business-insurance"]) .service-card-link .service-title {
    color: var(--dark-text);
}

.services-section .service-card:has(a[href*="business-insurance"]) .service-card-link:hover .service-title {
    color: #5B2C6F;
}

.services-section .service-card:has(a[href*="business-insurance"]) .service-link {
    color: #5B2C6F;
}

.services-section .service-card:has(a[href*="business-insurance"]) .service-link:hover {
    color: #3D1F4F;
}

.services-section .service-card:has(a[href*="business-insurance"]):hover {
    box-shadow: 0 8px 30px rgba(91, 44, 111, 0.25);
}

.life-insurance-page .sidebar-card {
    border-top: 4px solid var(--page-accent);
}

/* Homeowners Insurance Page - Home/Comfort Theme */
.homeowners-insurance-page {
    --page-accent: #27AE60;
    --page-accent-light: #A8E6CF;
    --page-accent-dark: #1E8449;
}

.homeowners-insurance-page .page-hero {
    background: linear-gradient(135deg, #1E8449 0%, #27AE60 50%, #A8E6CF 100%);
}

.homeowners-insurance-page .page-hero-label {
    color: var(--page-accent-light);
}

.homeowners-insurance-page .title-accent {
    color: var(--page-accent-light);
}

.homeowners-insurance-page .icon-circle {
    background: linear-gradient(135deg, var(--page-accent) 0%, var(--page-accent-dark) 100%);
}

.homeowners-insurance-page .icon-circle i {
    color: var(--white);
}

.homeowners-insurance-page .btn-hero {
    background-color: var(--page-accent);
    color: var(--white);
}

.homeowners-insurance-page .btn-hero:hover {
    background-color: var(--page-accent-dark);
}

.homeowners-insurance-page .insurance-type-icon {
    background: linear-gradient(135deg, var(--page-accent) 0%, var(--page-accent-dark) 100%);
}

.homeowners-insurance-page .sidebar-list li i,
.homeowners-insurance-page .insurance-benefits-list li::before {
    color: var(--page-accent);
}

.homeowners-insurance-page .insurance-type-card:hover {
    border: 2px solid var(--page-accent-light);
    box-shadow: 0 8px 30px rgba(39, 174, 96, 0.2);
}

.homeowners-insurance-page .cta-section {
    background: linear-gradient(135deg, #1E8449 0%, #27AE60 100%);
}

.homeowners-insurance-page .service-link {
    color: var(--page-accent);
}

.homeowners-insurance-page .service-link:hover {
    color: var(--page-accent-dark);
}


.homeowners-insurance-page .sidebar-card {
    border-top: 4px solid var(--page-accent);
}

/* Auto Insurance Page - Dynamic, Road-Focused Theme */
.auto-insurance-page {
    --page-accent: #E74C3C;
    --page-accent-light: #F8BBD0;
    --page-accent-dark: #C0392B;
}

.auto-insurance-page .page-hero {
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 50%, #F8BBD0 100%);
}

.auto-insurance-page .page-hero-label {
    color: var(--page-accent-light);
}

.auto-insurance-page .title-accent {
    color: var(--page-accent-light);
}

.auto-insurance-page .icon-circle {
    background: linear-gradient(135deg, var(--page-accent) 0%, var(--page-accent-dark) 100%);
}

.auto-insurance-page .icon-circle i {
    color: var(--white);
}

.auto-insurance-page .btn-hero {
    background-color: var(--page-accent);
    color: var(--white);
}

.auto-insurance-page .btn-hero:hover {
    background-color: var(--page-accent-dark);
}

.auto-insurance-page .insurance-type-icon {
    background: linear-gradient(135deg, var(--page-accent) 0%, var(--page-accent-dark) 100%);
}

.auto-insurance-page .sidebar-list li i,
.auto-insurance-page .insurance-benefits-list li::before {
    color: var(--page-accent);
}

.auto-insurance-page .insurance-type-card:hover {
    border: 2px solid var(--page-accent-light);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.2);
}

.auto-insurance-page .cta-section {
    background: linear-gradient(135deg, #C0392B 0%, #E74C3C 100%);
}

.auto-insurance-page .service-link {
    color: var(--page-accent);
}

.auto-insurance-page .service-link:hover {
    color: var(--page-accent-dark);
}

.auto-insurance-page .sidebar-card {
    border-top: 4px solid var(--page-accent);
}


/* Business Insurance Page - Professional, Corporate Theme */
.business-insurance-page {
    --page-accent: #5B2C6F;
    --page-accent-light: #D7BDE2;
    --page-accent-dark: #3D1F4F;
}

.business-insurance-page .page-hero {
    background: linear-gradient(135deg, #3D1F4F 0%, #5B2C6F 50%, #D7BDE2 100%);
}

.business-insurance-page .page-hero-label {
    color: var(--page-accent-light);
}

.business-insurance-page .title-accent {
    color: var(--page-accent-light);
}

.business-insurance-page .icon-circle {
    background: linear-gradient(135deg, var(--page-accent) 0%, var(--page-accent-dark) 100%);
}

.business-insurance-page .icon-circle i {
    color: var(--white);
}

.business-insurance-page .btn-hero {
    background-color: var(--page-accent);
    color: var(--white);
}

.business-insurance-page .btn-hero:hover {
    background-color: var(--page-accent-dark);
}

.business-insurance-page .insurance-type-icon {
    background: linear-gradient(135deg, var(--page-accent) 0%, var(--page-accent-dark) 100%);
}

.business-insurance-page .sidebar-list li i,
.business-insurance-page .insurance-benefits-list li::before {
    color: var(--page-accent);
}

.business-insurance-page .insurance-type-card:hover {
    border: 2px solid var(--page-accent-light);
    box-shadow: 0 8px 30px rgba(91, 44, 111, 0.2);
}

.business-insurance-page .cta-section {
    background: linear-gradient(135deg, #3D1F4F 0%, #5B2C6F 100%);
}

.business-insurance-page .service-link {
    color: var(--page-accent);
}

.business-insurance-page .service-link:hover {
    color: var(--page-accent-dark);
}


.business-insurance-page .sidebar-card {
    border-top: 4px solid var(--page-accent);
}

@media (max-width: 968px) {
    .insurance-detail-content {
        grid-template-columns: 1fr;
    }
    
    .insurance-detail-sidebar {
        position: static;
    }
    
    .insurance-types-grid {
        grid-template-columns: 1fr;
    }
}

