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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    background-color: #0a0f1a;
    color: #f1f5f9;
}

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

/* Header Styles */
.header {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #1e293b;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-wrapper {
    transition: transform 0.3s ease;
}

.logo-wrapper:hover {
    transform: scale(1.05);
}

.logo {
    height: 6rem;
    width: auto;
    mix-blend-mode: screen;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    color: #f1f5f9;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-link:hover {
    color: #10b981;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.phone-link {
    display: none;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .phone-link {
        display: flex;
    }
}

.phone-link:hover {
    color: rgba(16, 185, 129, 0.8);
}

.phone-icon {
    width: 1rem;
    height: 1rem;
}

.call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.call-button:hover {
    background: rgba(16, 185, 129, 0.9);
    transform: scale(1.05);
}

.call-button:active {
    transform: scale(0.95);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #16a34a 0%, #059669 50%, #0f766e 100%);
    color: white;
    padding: 3rem 0 4rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    min-height: 1.2em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-cta {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: scale(0.95);
    animation: fadeInUp 0.5s ease 0.4s forwards;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    color: #16a34a;
    font-weight: 700;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.hero-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-button:active {
    transform: scale(0.95);
}

.hero-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.6s forwards;
}

@media (min-width: 640px) {
    .hero-features {
        flex-direction: row;
    }
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease 0.8s forwards;
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-feature-icon {
    width: 1rem;
    height: 1rem;
    color: white;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: #0a0f1a;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    color: #94a3b8;
    max-width: 32rem;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-card {
    background: #111827;
    border: 2px solid #1e293b;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.5s ease forwards;
}

.process-card:nth-child(1) { animation-delay: 0.1s; }
.process-card:nth-child(2) { animation-delay: 0.2s; }
.process-card:nth-child(3) { animation-delay: 0.3s; }

.process-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.card-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #10b981;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #f1f5f9;
}

.card-description {
    font-size: 0.875rem;
    color: #94a3b8;
}

.process-cta {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 0.4s forwards;
}

.process-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: bounce 2s infinite;
}

.process-button:hover {
    background: rgba(16, 185, 129, 0.9);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.process-note {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-top: 1rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 5rem 0;
    background: rgba(30, 41, 59, 0.2);
}

.why-choose-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-choose-content {
        grid-template-columns: 1fr 1fr;
    }
}

.why-choose-text {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 0.6s ease forwards;
}

.features-list {
    margin: 2rem 0;
}

.features-list .feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.5s ease forwards;
}

.features-list .feature-item:nth-child(1) { animation-delay: 0.1s; }
.features-list .feature-item:nth-child(2) { animation-delay: 0.2s; }
.features-list .feature-item:nth-child(3) { animation-delay: 0.3s; }
.features-list .feature-item:nth-child(4) { animation-delay: 0.4s; }

.feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #10b981;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #f1f5f9;
}

.feature-description {
    font-size: 0.875rem;
    color: #94a3b8;
}

.why-choose-cta {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 0.8s forwards;
}

.partner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.partner-button:hover {
    background: rgba(16, 185, 129, 0.9);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.why-choose-image {
    position: relative;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 0.6s ease 0.3s forwards;
}

.image-container {
    position: relative;
    width: 80%;
    margin: 0 auto;
    aspect-ratio: 4/5;
    overflow: hidden;
    transform: rotate(0deg);
    transition: transform 0.5s ease;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0a0f1a 0%, transparent 30%, transparent 70%, #0a0f1a 100%);
    z-index: 2;
    pointer-events: none;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #0a0f1a 0%, transparent 40%, transparent 60%, #0a0f1a 100%);
    z-index: 2;
    pointer-events: none;
}

.image-container:hover {
    transform: rotate(0deg) scale(1.05);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

/* Carriers Section */
.carriers {
    padding: 5rem 0;
    background: #0a0f1a;
}

.carriers-grid {
    display: grid;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

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

@media (min-width: 1024px) {
    .carriers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.carrier-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.carrier-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.carrier-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #10b981;
}

.carrier-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #f1f5f9;
}

/* Agent Guidance Section */
.agent-guidance {
    padding: 5rem 0;
    background: linear-gradient(135deg, #16a34a 0%, #059669 50%, #0f766e 100%);
    color: white;
}

.agent-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .agent-content {
        grid-template-columns: 1fr 1fr;
    }
}

.agent-image {
    order: 2;
}

@media (min-width: 1024px) {
    .agent-image {
        order: 1;
    }
}

.agent-text {
    order: 1;
}

@media (min-width: 1024px) {
    .agent-text {
        order: 2;
    }
}

.agent-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
}

.agent-image .image-container::before {
    display: none;
}

.agent-image .image-container::after {
    display: none;
}

.agent-features {
    margin-top: 1rem;
}

.agent-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #16a34a 0%, #059669 50%, #0f766e 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 48rem;
    margin: 0 auto;
}

.cta-icon {
    width: 5rem;
    height: 5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    opacity: 0;
    transform: scale(0);
    animation: fadeInScale 0.5s ease 0.1s forwards;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

@media (min-width: 768px) {
    .cta-description {
        font-size: 1.25rem;
    }
}

.cta-button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease 0.5s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    color: #16a34a;
    font-weight: 700;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.7s forwards;
}

/* Footer */
.footer {
    background: rgba(17, 24, 39, 0.05);
    border-top: 1px solid #1e293b;
}

.footer-contact {
    background: #111827;
    border-bottom: 1px solid #1e293b;
    padding: 3rem 0;
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-description {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta {
    display: flex;
    justify-content: center;
}

.footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #10b981;
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: bounce 2s infinite;
}

.footer-button:hover {
    background: rgba(16, 185, 129, 0.9);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.footer-main {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 7rem;
    width: auto;
    mix-blend-mode: screen;
}

.footer-column-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.footer-link:hover {
    color: #10b981;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: #94a3b8;
    max-width: 80rem;
    margin: 0 auto;
    line-height: 1.5;
}

.footer-disclaimer p {
    margin-bottom: 0.75rem;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .carriers-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
