/* ========================================================================
PALMER INSURANCE AGENCY - HOMEPAGE STYLES
Refactored from embedded styles for better maintainability
======================================================================== */

* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

.top-bar {
    background: linear-gradient(to right, #1e3a8a, #0f172a);
    color: white;
    padding: 0.8rem 0;
    font-size: 1rem;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-left {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.top-bar-phone {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.top-bar-phone:hover {
    color: #fbbf24;
}

.top-bar-email {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.top-bar-email:hover {
    color: #fbbf24;
}

.top-bar-states {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.states-label {
    white-space: nowrap;
    flex-shrink: 0;
}

.states-carousel-wrapper {
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 0;
    mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
}

.states-carousel {
    display: flex;
    animation: scrollStates 25s linear infinite;
    width: fit-content;
}

.state-name {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0 1.5rem;
    color: white !important;
}

@keyframes scrollStates {
0% {
    transform: translateX(0);
}
100% {
    transform: translateX(-50%);
}
}

.states-carousel:hover {
    animation-play-state: paused;
}


.header-container {
    max-width: 1400px;  /* Increased from 1200px to give more room */
    margin: 0 auto;
    padding: 0 2rem;    /* Increased from 1rem to spread things out */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-icon {
    width: 80px;
    height: 80px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #1e40af;
    text-decoration: none;
    transition: transform 0.3s ease;
    white-space: nowrap;
}

.logo:hover {
    transform: scale(1.05);
    color: #1e3a8a;
}

.menu-toggle {
    display: none;
    background: #1e40af;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.nav-menu a, .nav-menu span {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Roboto Condensed', 'PT Sans Narrow', 'Oswald', 'Arial Black', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    white-space: nowrap;
}

.nav-menu a:hover, .nav-menu span:hover {
    background-color: #4169e1;
    color: white;
}

.cta-phone {
    background: #fbbf24;
    color: #1e3a8a;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.cta-phone:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}


.notice-bar {
    background: linear-gradient(to right,#0f172a, #3b82f6);
    color: white;
    padding: 1rem 0;
    position: relative;      /* <-- CHANGED FROM static */
    z-index: 1;              /* <-- CHANGED FROM 998 */
    text-align: center;
    margin: 0;
}

.notice-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 1.1rem;
}

.notice-content a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.notice-content a:hover {
    color: #fbbf24;
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1003; /* FIXED: Changed from 1000 to 1003 */
    border-radius: 8px;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    border: 1px solid #e5e7eb;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #1e40af !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 0;
    font-family: 'Roboto Condensed', 'PT Sans Narrow', 'Oswald', 'Arial Black', sans-serif;
}

.dropdown-content a:hover {
    background-color: #4169e1 !important;
    color: white !important;
}

.dropdown-content a:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-content a:last-child {
    border-radius: 0 0 8px 8px;
}

.hero {
    background-color: #f8fafc;
    color: white;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    height: calc(100vh - 11.6rem);
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-1 {
    background-image: url('hero-slide-1.jpg');
    background-size: cover !important;
    background-position: center 20% !important;
}

.hero-slide-2 {
    background-image: url('hero-slide-2.jpg');
    background-size: cover !important;
    background-position: center 20% !important;
}

.hero-slide-3 {
    background-image: url('hero-slide-3.jpg');
    background-size: cover !important;
    background-position: center 20% !important;
}

.hero-slide-4 {
    background-image: url('hero-slide-4.jpg');
    background-size: cover !important;
    background-position: center 20% !important;
}

.hero-slide-5 {
    background-image: url('hero-slide-5.jpg');
    background-size: cover !important;
    background-position: center 20% !important;
}

.hero-slide-6 {
    background-image: url('hero-slide-6.jpg');
    background-size: cover !important;
    background-position: center 20% !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.2));
    z-index: 2;
}

.hero-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.slider-indicator.active {
    background: #fbbf24;
    border-color: #fbbf24;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    height: 100%;
}

.hero h1 {
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.1;
    text-align: center;
}

.headline-part1 {
    font-size: 2.8rem;
    display: block;
}

.headline-part2 {
    font-size: 2.3rem;
    display: block;
}

.hero-motto {
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    color: #fbbf24;
    margin-bottom: 0.8rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.65s forwards;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    letter-spacing: 0.5px;
    text-align: center;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    max-width: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.8s forwards;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-weight: 300;
    line-height: 1.4;
    text-align: center;
}

@keyframes fadeInUp {
to {
    opacity: 1;
    transform: translateY(0);
}
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e3a8a;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 0.8rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: white;
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: #1e3a8a;
    transform: translateY(-3px);
    border-color: white;
}

.hero-content-box {
    background: rgba(59, 130, 246, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.3rem 2.5rem;
    margin: 0;
    max-width: 1044px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
    right: 0;
    top: 54px;
}

.content-slider {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.slider-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white;
}

.slide {
    display: none;
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: center;
}

.slide.active {
    display: block;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85), rgba(59, 130, 246, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 2rem;
    z-index: 2;
}

.slide-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
    display: block;
}

.slide h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.slide p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.slide-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slide-feature {
    background: rgba(255, 255, 255, 0.12);
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    text-align: center;
}

.slide-cta {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e3a8a;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.slide-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

.slider-nav {
    text-align: center;
    margin-top: 2rem;
}

.nav-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #cbd5e1;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.nav-dot.active {
    background: #3b82f6;
    transform: scale(1.2);
}

.nav-dot:hover {
    background: #64748b;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #1e3a8a;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slide-1 {
    background-image: url('slide1-image.jpg');
}

.slide-2 {
    background-image: url('slide2-image.jpg');
}

.slide-3 {
    background-image: url('slide3-image.jpg');
}

.insurance-partners {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.partners-title {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.partners-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.partners-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 100%;
}

.partners-carousel {
    display: flex;
    animation: scrollLogos 30s linear infinite;
    width: fit-content;
}

.partner-logo {
    flex: 0 0 auto;
    margin: 0 2rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border: 2px solid transparent;
    position: relative;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.partner-logo img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(0%) opacity(1);
    transition: all 0.3s ease;
    display: block;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.partner-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e3a8a;
    text-align: center;
    display: none;
}

.partner-logo.image-failed .partner-name {
    display: block;
}

.partner-logo.image-failed img {
    display: none;
}

@keyframes scrollLogos {
0% {
    transform: translateX(0);
}
100% {
    transform: translateX(-50%);
}
}

.partners-carousel:hover {
    animation-play-state: paused;
}

.coverage-areas {
    background: white;
    padding: 5rem 0;
    position: relative;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.state-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.state-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    transition: height 0.4s ease;
    z-index: 0;
}

.state-card:hover::before {
    height: 100%;
}

.state-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    color: white;
}

.state-card > * {
    position: relative;
    z-index: 1;
}

.state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.state-card:hover .state-icon {
    transform: scale(1.1);
}

.state-card h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.state-card:hover h3 {
    color: white;
}

.state-card p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.state-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.state-cities {
    font-size: 0.9rem;
    color: #3b82f6;
    font-weight: 500;
    transition: color 0.3s ease;
}

.state-card:hover .state-cities {
    color: #fbbf24;
}

.coverage-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    margin-top: 2rem;
}

.coverage-cta p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.services {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #fbbf24);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.service-card {
    text-decoration: none;
    color: inherit;
    display: block;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
}

.service-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    transition: height 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
    color: white;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #3b82f6;
    transition: all 0.5s ease;
    display: inline-block;
    transform: scale(1);
}

.service-card:hover .service-icon {
    color: #fbbf24;
    transform: scale(1.1) rotateY(180deg);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1e3a8a;
    transition: color 0.5s ease;
}

.service-card:hover h3 {
    color: white;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    transition: color 0.5s ease;
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.4rem 0;
    color: #64748b;
    position: relative;
    padding-left: 2rem;
    transition: all 0.5s ease;
}

.service-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
    transition: all 0.5s ease;
}

.service-card:hover .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card:hover .service-features li:before {
    color: #fbbf24;
}

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
0% {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}
50% {
    box-shadow: 0 8px 40px rgba(16, 185, 129, 0.5);
    transform: scale(1.1);
}
100% {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}
}

.floating-contact:hover {
    transform: scale(1.2);
    animation: none;
}

.contact {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: floatPattern 20s linear infinite;
}

@keyframes floatPattern {
0% { transform: translateY(0) translateX(0); }
100% { transform: translateY(-50px) translateX(-50px); }
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #fbbf24;
    transform: translateY(-2px);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Styles - Only applied on small screens */
@media (max-width: 768px) {
.top-bar-container {
    padding: 0 1rem;
    gap: 0.75rem;
}

.top-bar-left {
    gap: 1rem;
}

.top-bar-phone {
    font-size: 0.95rem;
}

.top-bar-email {
    display: none;
}

.top-bar-states {
    font-size: 0.85rem;
}

.header-container {
    padding: 0 1rem;
}

.logo-icon {
    width: 55px;
    height: 55px;
    font-size: 1.1rem;
}

.logo {
    font-size: 1rem;
    line-height: 1.2;
}

.menu-toggle {
    display: block;
}

.nav-menu {
    display: none;
    position: fixed;
    top: 5.75rem;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    max-height: calc(100vh - 6rem);
    overflow-y: auto;
    flex-direction: column;
    gap: 0;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    border-bottom: 1px solid #e5e7eb;
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-menu a, .nav-menu span {
    display: block;
    padding: 1rem;
    border-radius: 0;
}

.dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    background: #f8fafc;
    padding-left: 1rem;
    border-radius: 0;
    border: none;
    margin-top: 0;
}

.dropdown.active .dropdown-content {
    display: block;
}

.dropdown:hover .dropdown-content {
    display: none;
}

.dropdown.active:hover .dropdown-content {
    display: block;
}

.notice-bar {
    top: 5.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.hero {
    height: auto;
    min-height: 70vh;
    padding: 2rem 0;
}

.hero-container {
    padding: 0 1rem;
    min-height: auto;
}

.hero-content-box {
    padding: 1.5rem;
    top: 0;
    text-align: center;
}

.hero h1 {
    font-size: 1.75rem;
}

.headline-part1 {
    font-size: 2rem;
}

.headline-part2 {
    font-size: 1.5rem;
}

.hero-motto {
    font-size: 1.1rem;
}

.hero p {
    font-size: 1rem;
}

.hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
}

.btn-primary, .btn-secondary {
    width: 100%;
}

.hero-slider-indicators {
    bottom: 15px;
    gap: 6px;
}

.slider-indicator {
    width: 8px;
    height: 8px;
}

section {
    padding: 3rem 1rem;
}

.container {
    padding: 0 1rem;
}

.section-title {
    font-size: 1.75rem;
}

.section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.slide {
    min-height: 400px;
}

.slide-overlay {
    padding: 2rem 1.5rem;
}

.slide-icon {
    font-size: 3rem;
}

.slide h3 {
    font-size: 1.75rem;
}

.slide p {
    font-size: 1rem;
}

.slide-features {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.slide-feature {
    font-size: 0.85rem;
    padding: 0.5rem;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

.partners-title {
    font-size: 1.75rem;
}

.partners-subtitle {
    font-size: 1rem;
}

.partner-logo {
    min-width: 140px;
    height: 80px;
    margin: 0 1rem;
    padding: 1rem;
}

.partner-name {
    font-size: 0.95rem;
}

.states-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.state-card {
    padding: 1.5rem;
}

.state-icon {
    font-size: 2.5rem;
}

.state-card h3 {
    font-size: 1.35rem;
}

.services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    padding: 1.75rem;
}

.service-icon {
    font-size: 3rem;
}

.service-card h3 {
    font-size: 1.35rem;
}

.contact-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-item {
    padding: 1.5rem;
}

.floating-contact {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
    font-size: 1.35rem;
}

.footer-links {
    gap: 1.5rem;
}
}