@font-face {
    font-family: 'Satisfy';
    src: url('fonts/Satisfy-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

:root {
    --primary-yellow: #FCD34D;
    --dark-yellow: #F59E0B;
    --darker-yellow: #D97706;
    --black: #1F2937;
    --dark-gray: #374151;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
}

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

/* Header */
header {
    background: var(--black);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    height: 50px;
    transition: transform 0.3s ease;
}

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

.brand-name {
    font-family: 'Satisfy', cursive;
    font-size: 2.5rem;
    font-weight: normal;
    line-height: 1;
}

.brand-cras {
    color: #508cc3;
}

.brand-heroes {
    color: var(--dark-yellow);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-yellow);
}

/* Hero Section */
.hero {
    background-image: url('images/header1.jpeg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 2rem 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* About Section */
.about {
    padding: 80px 2rem;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 50%, var(--darker-yellow) 100%);
    color: var(--black);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 0 0 350px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

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

.about-content {
    flex: 1;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.about-content p:last-child {
    font-size: 1.5rem;
    color: var(--black);
    font-weight: 600;
    font-style: italic;
    margin-top: 2rem;
}

/* Key Figures Section */
.key-figures {
    padding: 80px 2rem;
    background: var(--black);
    color: var(--white);
}

.key-figures-container {
    max-width: 1000px;
    margin: 0 auto;
}

.key-figures-container h2 {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
}

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

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-yellow);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.stat-description {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.stat-description p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.stat-description p:last-child {
    margin-bottom: 0;
}

.stat-description strong {
    color: var(--black);
    font-weight: 700;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero .tagline {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.hero p {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

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

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--black);
    color: var(--primary-yellow);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Features Section */
.features {
    padding: 80px 2rem;
    background: var(--white);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.feature-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 30px rgba(252, 211, 77, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

/* Gallery Section */
.gallery {
    padding: 80px 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(252, 211, 77, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    color: var(--white);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 2rem;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    perspective: 1000px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 20px 20px 0 0;
}

.pricing-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* Card Colors */
.card-rescue::before {
    background: linear-gradient(90deg, #a8d5e5, #7ec8e3);
}

.card-rescue .card-header {
    background: linear-gradient(135deg, #d4eef7 0%, #b8e2f2 100%);
}

.card-platinum::before {
    background: linear-gradient(90deg, #90EE90, #32CD32);
}

.card-platinum .card-header {
    background: linear-gradient(135deg, #c8f7c8 0%, #a8e6a8 100%);
}

.card-fleet::before {
    background: linear-gradient(90deg, #DDA0DD, #BA55D3);
}

.card-fleet .card-header {
    background: linear-gradient(135deg, #f0d4f0 0%, #e6c3e6 100%);
}

/* Featured card */
.pricing-card.featured {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(50, 205, 50, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px) rotateX(5deg);
}

.card-header {
    padding: 1.5rem 2rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.card-body {
    padding: 2rem;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.price-item:last-of-type {
    border-bottom: none;
}

.price-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.price-unit {
    font-size: 1rem;
    font-weight: 400;
    color: var(--dark-gray);
}

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

.features-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark-gray);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #32CD32;
    font-weight: bold;
}

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

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .pricing-card:hover {
        transform: translateY(-10px);
    }
}

/* Contact Section */
.contact {
    padding: 80px 2rem;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.contact-item span {
    font-size: 1.5rem;
}

.contact-item a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p, .footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-gray);
    color: var(--light-gray);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: var(--primary-yellow);
    color: var(--black);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
    background: transparent;
    color: var(--light-gray);
    border: 2px solid transparent;
}

.lang-btn:hover {
    color: var(--primary-yellow);
}

.lang-btn.active {
    background: var(--primary-yellow);
    color: var(--black);
    border-color: var(--primary-yellow);
}

@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-image {
        flex: none;
        width: 100%;
        height: 400px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
    }

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

    .language-switcher {
        margin-right: 0.5rem;
    }

    .brand-name {
        font-size: 2rem;
    }

    .logo {
        height: 40px;
    }

    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-image {
        flex: none;
        width: 100%;
        height: 400px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

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

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}
