/* ========================================
   DEXASIG - Main CSS Stylesheet
   ======================================== */

/* Variables */
:root {
    --primary-color: #1e3c72;
    --primary-color2: #e0e0e0;
    --primary-dark: #0f2a5a;
    --primary-light: #2a5298;
    --secondary-color: #2C3E50;
    --accent-color: #E74C3C;
    --success-color: #27AE60;
    --warning-color: #F39C12;
    --info-color: #3498DB;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --gray-color: #95A5A6;
    --white: #FFFFFF;
    --black: #000000;
    
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

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

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.header-top {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

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

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
    opacity: 0.9;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-item a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    position: relative;
}

.nav-item a:hover,
.nav-item a.active {
    color: var(--primary-color);
}

/* Active state for dropdown toggle */
.dropdown.active > .dropdown-toggle,
.dropdown:hover > .dropdown-toggle {
    color: var(--primary-color);
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-item a:hover::after,
.nav-item a.active::after {
    width: 80%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 280px;
    box-shadow: var(--shadow-xl);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    padding: 10px 0;
    margin-top: 10px;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--dark-color);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Active link inside dropdown */
.dropdown-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.dropdown-menu i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 3px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary-nav::after {
    display: none !important;
}

.btn-outline-primary2 {
    background: #818e8f;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-primary2:hover {
    background: #122e5f;
    color:rgb(252, 252, 252);
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: relative;
    width: 100%;
    min-height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    margin: 0 auto;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(42px, 6vw, 64px);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--accent-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(22px, 3.5vw, 32px);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 400;
    line-height: 1.3;
}

.hero-description {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Hero Stats */
.hero-stats {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 30px 0;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    display: block;
}

.stat-label {
    color: var(--gray-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
}

.animate-fade-up-delay {
    animation: fadeUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.animate-fade-up-delay-2 {
    animation: fadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.animate-fade-up-delay-3 {
    animation: fadeUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e9ecef" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e9ecef" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e9ecef" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e9ecef" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e9ecef" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

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

.section-title {
    font-size: clamp(32px, 4vw, 42px);
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-subtitle {
    color: var(--gray-color);
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid rgba(139, 38, 53, 0.1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(139, 38, 53, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 25px auto 0px;
    background: linear-gradient(135deg, var(--accent-color, var(--primary-color)), var(--accent-color, var(--primary-dark)));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-description {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(139, 38, 53, 0.05));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.service-card:hover .service-hover-effect {
    transform: translateX(0);
}

/* Why Us Section */
.why-us-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e9ecef" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}


.why-us-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(139, 38, 53, 0.1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 38, 53, 0.15);
    border-color: rgba(139, 38, 53, 0.3);
}

.why-card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(139, 38, 53, 0.2);
}

.why-card:hover .why-card-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 12px 35px rgba(139, 38, 53, 0.3);
}

.why-card-icon i {
    font-size: 36px;
    color: var(--white);
    font-weight: 900;
}

.why-card-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 18px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.why-card-content p {
    color: var(--gray-color);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

.why-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(30, 60, 114, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.why-card:hover .why-card-number {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}


/* CTA Section */
/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e9ecef" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    z-index: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.partner-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(139, 38, 53, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 38, 53, 0.05), transparent);
    transition: left 0.6s ease;
}

.partner-card:hover::before {
    left: 100%;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 38, 53, 0.15);
    border-color: rgba(139, 38, 53, 0.2);
}

.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: rgba(139, 38, 53, 0.05);*/
    border-radius: 16px;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo {
    /*background: rgba(139, 38, 53, 0.1);*/
    transform: scale(1.1);
}

.partner-logo img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
}

.partner-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 15px;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-name {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-white:hover {
    background: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.partner-card {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    display: flow;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-card img {
    max-width: 120px;
    opacity: 0.8;
    transition: var(--transition);
    filter: grayscale(100%);
}

.partner-card:hover img {
    opacity: 1;
    filter: grayscale(0%);
}

/* Page Header */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    margin-top: 98px;
    background: var(--primary-color);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/se-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    color: var(--white);
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 20px;
}

.breadcrumb {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 10px;
}

/* Static / Legal pages */
.legal-text { font-size: 16px; color: var(--secondary-color); line-height: 1.8; }
.legal-text h2 { margin-top: 20px; }
.legal-text p { margin-bottom: 15px; }
.legal-list { list-style: none; margin: 10px 0 20px; }
.legal-list li { padding: 8px 0; position: relative; padding-left: 22px; }
.legal-list li::before { content: '•'; color: var(--primary-color); position: absolute; left: 0; }
.legal-note { font-size: 14px; color: var(--gray-color); }

/* Utility */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.text-center { text-align: center; }
.text-muted { color: var(--gray-color); }

/* Lists with icons inside cards */
.coverage-list i { color: var(--success-color); }

/* Make service link area more obvious */
.service-card .service-link { font-weight: 600; }
.service-card:hover .service-link { color: var(--primary-color2); }

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

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

/* Insurance - Common */
.insurance-content { padding: 80px 0; background: var(--light-color); }
.insurance-intro { text-align: center; max-width: 800px; margin: 0 auto 40px; }
.insurance-section { margin-bottom: 60px; }
.section-card { background: var(--white); border-radius: var(--border-radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.coverage-list { list-style: none; }
.coverage-list li { padding: 8px 0; display: flex; align-items: center; gap: 10px; }
.risks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 15px; }
.risk-item { display: flex; align-items: center; gap: 10px; padding: 12px; background: var(--white); border-radius: var(--border-radius); }
.risk-item i { color: var(--success-color); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.package-card { background: var(--white); border: 1px solid var(--light-color); border-radius: var(--border-radius-lg); padding: 24px; text-align: center; position: relative; transition: var(--transition); }
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.package-header { padding: 16px; border-radius: var(--border-radius); margin-bottom: 12px; background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); }
.package-header h5, .package-header i { color: var(--white); }
.package-ribbon { position: absolute; top: -10px; right: 16px; background: var(--accent-color); color: var(--white); padding: 4px 10px; border-radius: var(--border-radius); font-size: 12px; font-weight: 600; }
.package-features { list-style: none; text-align: left; margin: 12px 0 0; }
.package-features li { padding: 8px 0; border-bottom: 1px solid var(--light-color); }
.package-features li::before { content: '✓'; color: var(--success-color); margin-right: 10px; }
.insurance-cta { text-align: center; padding: 40px; background: var(--primary-color); border-radius: var(--border-radius-lg); color: var(--white); }
.insurance-cta h3 { color: var(--white); margin-bottom: 10px; }
.insurance-cta p { color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.insurance-cta .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }
.insurance-cta .btn { box-shadow: var(--shadow-sm); }
.insurance-cta .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* RCA Calculator Actions */
.rca-actions {
    margin-top: 20px;
    text-align: center;
}

.rca-actions .btn {
    margin: 0 10px;
}

/* Insurance - RCA */
.rca-calculator-card { background: var(--white); padding: 40px; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-xl); }
.rca-form .form-grid, .rca-form .form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 20px; }
.rca-result { margin-top: 20px; padding: 16px; border-radius: var(--border-radius); background: rgba(52, 152, 219, 0.08); border: 1px solid var(--info-color); color: var(--secondary-color); display: none; }
.rca-result.visible { display: block; }
.btn-calculate { width: 100%; padding: 14px; font-size: 16px; }

/* Insurance - CASCO variants */
.package-header.basic { background: #95A5A6; }
.package-header.standard { background: var(--primary-color); }
.package-header.premium { background: #F39C12; }

.contact-form-wrapper h2 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

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

/* Form Styles */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.1);
}

.form-control.error {
    border-color: var(--accent-color);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

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

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-text {
    color: var(--gray-color);
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.error-message {
    color: var(--accent-color);
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

/* Alert Messages */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

/* Contact Info */
.contact-info-wrapper h2 {
    margin-bottom: 30px;
    color: var(--dark-color);
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--white);
    font-size: 20px;
}

.info-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.info-content p,
.info-content a {
    color: var(--gray-color);
    margin: 0;
}

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

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 40px;
}

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

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color2);
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--white);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact .contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
    flex-shrink: 0;
}

.footer-partners {
    background: rgba(255,255,255,0.05);
    padding: 30px 0;
}

.footer-partners h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--white);
}

.partners-slider {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.partner-item img {
    height: 40px;
    opacity: 0.6;
    filter: grayscale(100%) brightness(200%);
    transition: var(--transition);
}

.partner-item:hover img {
    opacity: 1;
    filter: grayscale(0%) brightness(100%);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 5px 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 98px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 98px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }

    /* Ensure dropdown toggles work nicely on mobile */
    .dropdown > .dropdown-toggle::after {
        content: '';
        display: inline-block;
        margin-left: 6px;
        border: 5px solid transparent;
        border-top-color: currentColor;
        transform: translateY(-2px);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-color);
        margin-top: 10px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Sticky header refined state */
.main-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: saturate(150%) blur(6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Accessibility focus states for nav links */
.nav-item a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.15);
    border-radius: var(--border-radius);
}

@media (max-width: 480px) {
    .header-top {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   MODERN HOME PAGE STYLES
   ======================================== */

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    color: #4CAF50;
}

/* Hero Agent Info */
.hero-agent-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    margin: 40px auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 1000px;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.hero-agent-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-agent-info h2 {
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-agent-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.6;
    font-weight: 500;
}

.hero-agent-info p strong {
    color: var(--white);
    font-weight: 900;
    font-size: 28px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 16px 0;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #ffffff, #e6f3ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-transform: uppercase;
    animation: nameGlow 3s ease-in-out infinite alternate;
}

@keyframes nameGlow {
    0% { text-shadow: 0 6px 20px rgb(255 255 255 / 70%); }
    100% {  text-shadow: 0 6px 20px rgb(218 218 218 / 70%); }
}

.hero-agent-info p strong::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4CAF50, #00ff88, #4CAF50, transparent);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}

/* Hero Badge */
.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 14px 28px;
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
}

.badge-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4CAF50, #00ff88, #4CAF50);
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-badge:hover .badge-glow {
    opacity: 0.3;
}

/* Modern Agent Info */
.agent-title {
    text-align: center;
    margin-bottom: 40px;
}

.agent-title h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--success-color);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

.agent-intro {
    text-align: center;
    margin-bottom: 50px;
}

.agent-name {
    margin-bottom: 20px;
}

.name-label {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-weight: 500;
}

.agent-name-text {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin: 0;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffffff, #e6f3ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.name-decoration {
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, transparent, var(--success-color), #00ff88, var(--success-color), transparent);
    margin: 15px auto 0;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.agent-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}


.insurance-types-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    width: 100%;
}

.insurance-types-list li {
    color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.insurance-types-list li:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.feature-item i {
    color: #4CAF50;
    font-size: 16px;
}

/* Section Badge */
.section-badge {
    display: flow;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3);
}

.section-badge i {
    font-size: 12px;
}

/* Service Card Modern */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.service-header {
    position: relative;
    padding: 24px 24px 0;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #4CAF50;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.service-content {
    padding: 24px;
}

.service-features {
    list-style: none;
    margin: 16px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 14px;
    color: var(--gray-color);
}

.service-features i {
    color: var(--success-color);
    font-size: 12px;
}

.service-footer {
    padding: 0 24px 24px;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
    color: white;
}

/* Why Us Items Modern */
.why-item {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.why-item:last-child {
    border-bottom: none;
}

.why-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    padding: 20px 0px 0px 0px;
}

.why-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.why-content p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* Image Container */
.image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
}

.decoration-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20px;
    right: 20px;
}

.decoration-circle:nth-child(2) {
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
}

.decoration-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.image-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 16px;
}

.image-stat {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

.image-stat .stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.image-stat .stat-label {
    font-size: 12px;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Process Section */
.process-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
}

.process-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.process-item p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* CTA Section Modern */
.cta-section {
    background: var(--primary-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    opacity: 0.1;
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px 0;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.cta-feature i {
    color: #4CAF50;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0;
        min-height: auto;
    }
    
    .hero-content {
        padding: 60px 15px;
        min-height: auto;
    }
    
    .hero-agent-info {
        padding: 25px;
        margin: 25px auto;
        max-width: 98%;
    }
    
    .hero-agent-info h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .hero-agent-info p {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .hero-agent-info p strong {
        font-size: 18px;
        margin: 8px 0;
        letter-spacing: 0.8px;
    }
    
    .insurance-types-list {
        gap: 8px;
        margin: 15px auto 0 auto;
        max-width: 100%;
        flex-wrap: wrap;
    }
    
    .insurance-types-list li {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .image-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 15px 0;
        min-height: auto;
    }
    
    .hero-content {
        padding: 40px 10px;
        min-height: auto;
    }
    
    .hero-agent-info {
        padding: 20px;
        margin: 20px auto;
        border-radius: 12px;
        max-width: 98%;
    }
    
    .hero-agent-info h2 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .hero-agent-info p {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .hero-agent-info p strong {
        font-size: 16px;
        margin: 6px 0;
        letter-spacing: 0.6px;
    }
    
    .insurance-types-list {
        gap: 6px;
        margin: 12px auto 0 auto;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .insurance-types-list li {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .partner-card {
        padding: 25px 15px;
    }
    
    .partner-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .partner-logo img {
        max-width: 45px;
        max-height: 45px;
    }
    
    .partner-name {
        font-size: 14px;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .why-card {
        padding: 30px 20px;
    }
    
    .why-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .why-card-icon i {
        font-size: 24px;
    }
    
    .why-card-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .why-card-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-card {
        padding: 25px 15px;
    }
    
    .why-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .why-card-icon i {
        font-size: 20px;
    }
    
    .why-card-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .why-card-content p {
        font-size: 13px;
    }
    
    .agent-name-text {
        font-size: 32px;
    }
    
    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .insurance-card {
        padding: 15px 10px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .insurance-card span {
        font-size: 12px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .partner-card {
        padding: 20px 15px;
    }
    
    .partner-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .partner-logo img {
        max-width: 35px;
        max-height: 35px;
    }
    
    .partner-name {
        font-size: 13px;
    }
}

/* About Page Styles - Specific to about page */
.about-content {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-hero-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--secondary-color);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* About page specific sections */
.about-content .values-section, 
.about-content .services-section {
    margin-bottom: 60px;
}

.about-content .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-content .section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.about-content .section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

.about-content .values-grid, 
.about-content .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-content .value-card, 
.about-content .service-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.about-content .value-card:hover, 
.about-content .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-content .value-icon, 
.about-content .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
}

.about-content .value-card h3, 
.about-content .service-item h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.about-content .value-card p, 
.about-content .service-item p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* About page agent profile */
.about-content .agent-profile {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 50px;
    margin-top: 40px;
}

.about-content .agent-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.about-content .agent-details h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.about-content .agent-role {
    font-size: 1.1rem;
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content .agent-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-content .insurance-types h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.about-content .insurance-types ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
}

.about-content .insurance-types li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.about-content .insurance-types li:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    transform: translateX(5px);
}

.about-content .insurance-types li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.about-content .insurance-types li:hover i {
    color: var(--white);
}

/* Legal Content Styles - Specific to legal pages */
.legal-content, .privacy-content {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.legal-content .legal-wrapper, 
.privacy-content .privacy-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content .legal-intro, 
.privacy-content .privacy-intro {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.legal-content .legal-intro h2, 
.privacy-content .privacy-intro h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content .legal-intro p, 
.privacy-content .privacy-intro p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.8;
}

.legal-content .legal-sections, 
.privacy-content .privacy-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.legal-content .legal-section, 
.privacy-content .privacy-section {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.legal-content .legal-section:hover, 
.privacy-content .privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.legal-content .section-icon, 
.privacy-content .section-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.legal-content .section-content, 
.privacy-content .section-content {
    flex: 1;
}

.legal-content .section-content h3, 
.privacy-content .section-content h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-content .section-content p, 
.privacy-content .section-content p {
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Legal pages specific lists */
.legal-content .legal-list, 
.privacy-content .legal-list {
    list-style: none;
    padding: 0;
}

.legal-content .legal-list li, 
.privacy-content .legal-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: var(--secondary-color);
}

.legal-content .legal-list li::before, 
.privacy-content .legal-list li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Legal pages specific content boxes */
.legal-content .service-highlights, 
.legal-content .responsibility-notes, 
.legal-content .data-protection, 
.legal-content .copyright-info,
.privacy-content .service-highlights, 
.privacy-content .responsibility-notes, 
.privacy-content .data-protection, 
.privacy-content .copyright-info {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.legal-content .highlight-item, 
.legal-content .note-item,
.privacy-content .highlight-item, 
.privacy-content .note-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.legal-content .highlight-item i, 
.legal-content .note-item i,
.privacy-content .highlight-item i, 
.privacy-content .note-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.legal-content .data-protection h4, 
.legal-content .copyright-info h4,
.privacy-content .data-protection h4, 
.privacy-content .copyright-info h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-content .data-protection ul,
.privacy-content .data-protection ul {
    list-style: none;
    padding: 0;
}

.legal-content .data-protection li,
.privacy-content .data-protection li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    color: var(--secondary-color);
}

.legal-content .data-protection li::before,
.privacy-content .data-protection li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Legal pages specific contact info */
.legal-content .contact-details, 
.legal-content .contact-info, 
.legal-content .contact-options,
.privacy-content .contact-details, 
.privacy-content .contact-info, 
.privacy-content .contact-options {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.legal-content .contact-item, 
.legal-content .contact-option,
.privacy-content .contact-item, 
.privacy-content .contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary-color);
}

.legal-content .contact-item i, 
.legal-content .contact-option i,
.privacy-content .contact-item i, 
.privacy-content .contact-option i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.legal-content .contact-item a, 
.legal-content .contact-option a,
.privacy-content .contact-item a, 
.privacy-content .contact-option a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-content .contact-item a:hover, 
.legal-content .contact-option a:hover,
.privacy-content .contact-item a:hover, 
.privacy-content .contact-option a:hover {
    text-decoration: underline;
}

/* Privacy page specific data categories */
.privacy-content .data-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.privacy-content .category-item {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.privacy-content .category-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-content .category-item ul {
    list-style: none;
    padding: 0;
}

.privacy-content .category-item li {
    padding: 5px 0;
    color: var(--secondary-color);
    position: relative;
    padding-left: 20px;
}

.privacy-content .category-item li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Privacy page specific purposes grid */
.privacy-content .purposes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.privacy-content .purpose-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--border-radius);
    border-top: 4px solid var(--primary-color);
}

.privacy-content .purpose-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.privacy-content .purpose-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.privacy-content .purpose-item p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Privacy page specific legal basis */
.privacy-content .legal-basis {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.privacy-content .basis-item {
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    color: var(--secondary-color);
}

/* Privacy page specific retention periods */
.privacy-content .retention-periods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.privacy-content .period-item {
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    color: var(--secondary-color);
}

/* Privacy page specific recipients list */
.privacy-content .recipients-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.privacy-content .recipient-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    color: var(--secondary-color);
}

.privacy-content .recipient-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Privacy page specific rights grid */
.privacy-content .rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.privacy-content .right-item {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--border-radius);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.privacy-content .right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.privacy-content .right-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.privacy-content .right-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.privacy-content .right-item p {
    color: var(--secondary-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Privacy page specific cookie types */
.privacy-content .cookie-types {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.privacy-content .cookie-item {
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    color: var(--secondary-color);
}

.privacy-content .cookie-note {
    margin-top: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    color: var(--secondary-color);
    font-style: italic;
}

/* Legal pages specific footer */
.legal-content .legal-footer, 
.privacy-content .privacy-footer {
    margin-top: 50px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.legal-content .legal-footer p, 
.privacy-content .privacy-footer p {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.legal-content .legal-footer p:last-child, 
.privacy-content .privacy-footer p:last-child {
    margin-bottom: 0;
    font-style: italic;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-content .legal-section, 
    .privacy-content .privacy-section {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-content .section-icon, 
    .privacy-content .section-icon {
        margin: 0 auto;
    }
    
    .about-content .values-grid, 
    .about-content .services-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-content .data-categories, 
    .privacy-content .purposes-grid, 
    .privacy-content .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content .about-hero-content h2 {
        font-size: 2rem;
    }
    
    .about-content .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Footer Official Banners */
.footer-official {
    background: linear-gradient(135deg, #233240 0%, #233240 100%);
    padding: 40px 0;
    border-top: 1px solid #d4d4d4;
}

.official-banners {
    text-align: center;
}

.banner-section h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.official-banner {
    background: transparent;
    border-radius: var(--border-radius-lg);
    padding: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex: 0 0 auto;
}

.official-banner:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.banner-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-link:hover {
    text-decoration: none;
}

.banner-image {
    width: 200px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
}

.official-banner:hover .banner-image {
    transform: scale(1.05);
}

.banner-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.banner-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.official-banner:hover .banner-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.banner-text {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    margin-bottom: 4px;
    display: block;
}

.banner-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray-color);
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    display: block;
    line-height: 1.2;
}

.official-banner:hover .banner-text {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.official-banner:hover .banner-subtitle {
    color: var(--accent-color);
}

/* Specific banner styles */
.anpc-banner:hover {
    border-color: #1e40af;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
}

.sol-banner:hover {
    border-color: #059669;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.2);
}

.asf-banner:hover {
    border-color: #7c3aed;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
}

.anspdcp-banner:hover {
    border-color: #dc2626;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

/* Icon specific colors */
.anpc-icon svg circle:first-child {
    fill: #1e40af;
}

.sol-icon svg rect {
    fill: #059669;
}

.asf-icon svg rect {
    fill: #7c3aed;
}

.anspdcp-icon svg circle:first-child {
    fill: #dc2626;
}

.banner-info {
    margin-top: 20px;
}

.banner-disclaimer {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-style: italic;
}

.banner-disclaimer i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Responsive Design for Official Banners */
@media (max-width: 768px) {
    .footer-official {
        padding: 30px 0;
    }
    
    .banners-grid {
        gap: 10px;
    }
    
    .official-banner {
        padding: 8px;
    }
    
    .banner-image {
        width: 150px;
        height: 30px;
    }
    
    .banner-section h4 {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .banner-disclaimer {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .banners-grid {
        flex-direction: column;
        gap: 8px;
    }
    
    .official-banner {
        padding: 6px;
    }
    
    .banner-image {
        width: 120px;
        height: 25px;
    }
}

/* ========================================
   FOOTER DESIGN CREDIT BAR STYLES
   ======================================== */

.footer-design-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.footer-design-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.footer-design-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.design-credit-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.design-credit-text {
    font-size: 0.9rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.designer-link,
.veltwo-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-block;
    margin: 0 2px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.designer-link:hover,
.veltwo-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.designer-link strong,
.veltwo-link strong {
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.made-with {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin: 0 4px;
    font-weight: 500;
}

/* Special styling for Veltwo™ */
.veltwo-link {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.veltwo-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Designer link special styling */
.designer-link {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.designer-link:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Footer Credit Bar */
@media (max-width: 768px) {
    .footer-design-bar {
        padding: 15px 0;
    }
    
    .design-credit-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .designer-link,
    .veltwo-link {
        padding: 3px 6px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-design-bar {
        padding: 12px 0;
    }
    
    .design-credit-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .designer-link,
    .veltwo-link {
        padding: 2px 4px;
        font-size: 0.85rem;
    }
    
    .made-with {
        margin: 0 3px;
    }
}

/* Additional creative effects - removed emojis */

/* Pulse effect for the entire bar */
.footer-design-bar:hover {
    animation: designPulse 2s ease-in-out infinite;
}

@keyframes designPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
}

/* ========================================
   COOKIE CONSENT BANNER STYLES
   ======================================== */

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    backdrop-filter: blur(15px);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent-banner.cookie-consent-show {
    transform: translateY(0);
}

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

.cookie-consent-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 30px;
    position: relative;
    border: 1px solid rgba(229, 231, 235, 0.5);
    backdrop-filter: blur(10px);
}

.cookie-consent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
}

.cookie-consent-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent-title i {
    color: #3b82f6;
    font-size: 1.4rem;
}

.cookie-consent-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-consent-close:hover {
    background: #f3f4f6;
    color: #374151;
    transform: scale(1.1);
}

.cookie-consent-body {
    margin-bottom: 25px;
}

.cookie-consent-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 20px;
}

.cookie-consent-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6b7280;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
}

.cookie-detail-item i {
    color: #3b82f6;
    font-size: 0.9rem;
}

.cookie-consent-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 120px;
    justify-content: center;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cookie-btn-accept::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cookie-btn-accept:hover::before {
    left: 100%;
}

.cookie-btn-accept:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.cookie-btn-refuse {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #6b7280;
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.cookie-btn-refuse:hover {
    background: linear-gradient(135deg, #f9fafb 0%, #f1f5f9 100%);
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.cookie-btn-preferences {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #6b7280;
    border: 2px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.cookie-btn-preferences:hover {
    background: linear-gradient(135deg, #f9fafb 0%, #f1f5f9 100%);
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.cookie-accessibility-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    animation: pulse 2s infinite, float 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accessibility-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes slideUpIn {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Cookie Preferences Modal */
.cookie-preferences-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-preferences-modal.cookie-preferences-show {
    opacity: 1;
    visibility: visible;
}

.cookie-preferences-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.cookie-preferences-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
    max-width: 650px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    margin: 0 auto;
    display: block;
}

.cookie-preferences-modal.cookie-preferences-show .cookie-preferences-content {
    transform: scale(1);
}

.cookie-preferences-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 2px solid #f3f4f6;
}

.cookie-preferences-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-preferences-header h3 i {
    color: #3b82f6;
}

.cookie-preferences-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-preferences-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.cookie-preferences-body {
    padding: 25px 30px;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-category-header h4 i {
    color: #3b82f6;
}

.cookie-category p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-slider {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(26px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.cookie-toggle input:disabled + .cookie-slider {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    cursor: not-allowed;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.cookie-toggle input:focus + .cookie-slider {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.cookie-preferences-actions {
    padding: 20px 30px 30px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    border-top: 2px solid #f3f4f6;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cookie-btn-secondary {
    background: #ffffff;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.cookie-btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-consent-container {
        padding: 15px;
    }
    
    .cookie-consent-content {
        padding: 20px;
    }
    
    .cookie-consent-title {
        font-size: 1.1rem;
    }
    
    .cookie-consent-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: auto;
    }
    
    .cookie-preferences-content {
        width: 95%;
        margin: 20px auto;
        max-width: 90%;
    }
    
    .cookie-preferences-header,
    .cookie-preferences-body,
    .cookie-preferences-actions {
        padding: 20px;
    }
    
    .cookie-category {
        padding: 15px;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-container {
        padding: 10px;
    }
    
    .cookie-consent-content {
        padding: 15px;
    }
    
    .cookie-consent-title {
        font-size: 1rem;
    }
    
    .cookie-consent-description {
        font-size: 0.9rem;
    }
    
    .cookie-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}