:root {
    --primary-dark: #1a2d5a;
    --primary-blue: #2c4a8a;
    --accent-teal: #00b4d8;
    --accent-red: #e63946;
    --text-dark: #1d3557;
    --text-gray: #6c757d;
    --text-light: #f8f9fa;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --gradient-hero: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

.top-bar {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.top-bar a:hover {
    color: var(--accent-teal);
}

.top-bar .location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar .location i {
    color: var(--accent-red);
}

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

header {
    background: var(--bg-white);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

.logo .star {
    color: var(--accent-teal);
    font-size: 20px;
}

.logo-underline {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent-teal));
    margin-top: -5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--accent-teal);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s;
}

.search-btn:hover {
    color: var(--accent-teal);
}

.phone-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    font-size: 18px;
}

.phone-info span {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
}

.phone-info a {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

.hero {
    background: var(--gradient-hero);
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 500px;
    line-height: 1.8;
}

.hero-icons {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    color: var(--accent-teal);
    font-size: 20px;
    animation: float 3s ease-in-out infinite;
}

.hero-icon:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.curved-arrow {
    position: absolute;
    right: 80px;
    top: 30%;
    color: var(--accent-red);
    font-size: 40px;
    transform: rotate(-30deg);
}

.hero-image {
    position: relative;
    height: 500px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 100px;
}


.page-hero {
    background: var(--gradient-hero);
    padding: 80px 0;
    text-align: center;
}

.page-hero h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.page-hero .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--text-gray);
}

.page-hero .breadcrumb a {
    color: var(--accent-teal);
    text-decoration: none;
}

.quote-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%);
    position: relative;
    overflow: hidden;
}

.quote-section .section-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}


.partners-slider {
    width: 100%;
    overflow: hidden;
    padding: 30px 0 60px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-slider::before,
.partners-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, #f5f5f5, transparent);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, #f5f5f5, transparent);
}

.partners-track {
    display: flex;
    gap: 30px;
    animation: scrollLogos 20s linear infinite;
    width: fit-content;
    align-items: center;
}

.partner-logo {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.1);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-170px * 4));
    }
}

.quote-section .section-header span {
    color: var(--text-gray);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.quote-section .section-header h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-top: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quote-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

.quote-form-wrapper::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40px;
    background: var(--accent-teal);
    border-radius: 0 0 20px 20px;
    opacity: 0.3;
    z-index: -1;
}

.quote-form-header {
    margin-bottom: 25px;
}

.quote-form-header span {
    color: var(--text-gray);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.quote-form-header h4 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-top: 5px;
}

.insurance-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.insurance-tab {
    padding: 10px 18px;
    background: var(--text-dark);
    color: var(--text-light);
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.insurance-tab:hover,
.insurance-tab.active {
    background: var(--accent-teal);
}

.quote-form input,
.quote-form textarea,
.quote-form select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
    outline: none;
    border-color: var(--accent-teal);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #adb5bd;
}

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

.btn-primary {
    background: var(--accent-red);
    color: var(--text-light);
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
    background: #c1121f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}


.form-message {
    margin-top: 15px;
    display: none;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.quote-image {
    position: relative;
}

.quote-image-main {
    position: relative;
    border-radius: 50% 50% 50% 0;
    overflow: hidden;
    width: 100%;
    height: 450px;
}

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

.quote-image-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-teal);
}

.teal-curve {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border: 8px solid var(--accent-teal);
    border-radius: 50%;
    opacity: 0.3;
}


.about-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.about-images {
    position: relative;
}

.about-image-main {
    width: 80%;
    height: 400px;
    border-radius: 50% 50% 50% 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

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

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--bg-white);
    z-index: 3;
}

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

.experience-badge {
    position: absolute;
    bottom: 50px;
    right: 20px;
    background: var(--bg-white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 4;
    text-align: center;
}

.experience-badge .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.experience-badge span {
    font-size: 14px;
    color: var(--text-gray);
}

.about-text span {
    color: var(--text-gray);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-text h3 {
    font-size: 36px;
    color: var(--accent-red);
    margin: 10px 0 25px;
    line-height: 1.3;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.about-feature i {
    color: var(--accent-teal);
    font-size: 18px;
}

.about-page-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-page-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-page-image {
    position: relative;
}

.about-page-image-main {
    width: 100%;
    height: 500px;
    border-radius: 0 100px 0 100px;
    overflow: hidden;
    border-left: 5px solid var(--accent-teal);
}

.about-page-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page-text span {
    color: var(--text-gray);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-page-text span::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--accent-red);
}

.about-page-text h3 {
    font-size: 38px;
    color: var(--primary-dark);
    margin: 15px 0 30px;
    line-height: 1.3;
}

.about-page-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.9;
    text-align: justify;
}

.mission-vision {
    padding: 100px 0;
    background: var(--bg-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent-teal);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.mv-card:hover::before {
    transform: scaleY(1);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.mv-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 28px;
    margin-bottom: 25px;
}

.mv-card h4 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

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

.support-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.support-text span {
    color: var(--text-gray);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.support-text h3 {
    font-size: 36px;
    color: var(--primary-dark);
    margin: 10px 0 30px;
    line-height: 1.3;
}

.support-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.support-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

.support-badge i {
    color: var(--accent-teal);
}

.support-text > p {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.support-feature {
    display: flex;
    gap: 20px;
}

.support-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 20px;
    flex-shrink: 0;
}

.support-feature-text h5 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.support-feature-text p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.support-image {
    position: relative;
}

.support-image-main {
    width: 100%;
    height: 500px;
    border-radius: 50% 0 50% 50%;
    overflow: hidden;
    position: relative;
}

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

.support-image-main::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--accent-teal);
}

.vertical-text {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--text-gray);
    white-space: nowrap;
}

.contact-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
    padding: 50px;
    border-radius: 20px;
    color: var(--text-light);
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info > p {
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-text h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-info-text p,
.contact-info-text a {
    opacity: 0.9;
    font-size: 14px;
    color: var(--text-light);
    text-decoration: none;
}

.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-social h5 {
    margin-bottom: 15px;
}

.contact-social .social-links a {
    background: rgba(255,255,255,0.1);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
}

.contact-form-wrapper h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

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

.map-section {
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2c4a8a 100%);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h4 {
    font-size: 24px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.footer-brand .logo-underline {
    background: linear-gradient(90deg, var(--text-light), var(--accent-teal));
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-brand .company-name {
    color: var(--accent-teal);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-teal);
    transform: translateY(-3px);
}

.footer-column h5 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-red);
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-column a:hover {
    color: var(--accent-teal);
    padding-left: 5px;
}

.footer-column p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-column p i {
    color: var(--accent-red);
    margin-top: 3px;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero .container,
    .quote-content,
    .about-content,
    .support-content,
    .about-page-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-image {
        height: 350px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }

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

    .quote-image {
        order: -1;
    }

    .support-image {
        order: -1;
    }

    .about-page-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .about-text h3,
    .support-text h3,
    .about-page-text h3 {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .support-badges {
        flex-direction: column;
    }

    .phone-box {
        display: none;
    }

    .about-images {
        padding: 30px;
    }

    .about-image-secondary {
        left: 0;
        bottom: 0;
    }

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

    .contact-info {
        padding: 30px;
    }

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