:root {
    --primary-color: #2c5aa0;
    --secondary-color: #27ae60;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-gray: #f9f9f9;
    --border-color: #e5e5e5;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

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

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(44, 90, 160, 0.1);
}

.navbar {
    padding: 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.logo-img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-50%);
    border-radius: 10px;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.btn-cta-main {
    background: linear-gradient(135deg, var(--accent-color), #c0392b);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    border: 2px solid transparent;
}

.btn-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    border-color: white;
}

.cta-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/carousel-1.jpg') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 8rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.hero-content {
    color: white;
    max-width: 700px;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-form .form-group {
    margin: 0;
}

.quote-form input {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    background: white;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.quote-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.quote-form input::placeholder {
    color: #999;
}

.quote-form .btn {
    grid-column: 1 / -1;
    background: var(--accent-color) !important;
    color: white !important;
    padding: 14px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
    font-size: 0.95rem;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.hero-image img {
    display: none;
}

/* About Company Section */
.about-company {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.company-content {
    max-width: 1200px;
    margin: 0 auto;
}

.company-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-left-width: 6px;
}

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

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

.info-card p {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

@media (max-width: 968px) {
    .company-info {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 2rem;
    }
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3f5a 100%);
    color: white;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.trust-section h2 {
    color: white;
    margin-top: 2rem;
}

.trust-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.partner-logo {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-4px);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.services h2,
.about h2,
.reviews h2,
.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
    font-weight: 400;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #1e3f5a);
    color: white;
}

.service-icon img {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
}

.icon-vehicle::before {
    content: "🚗";
}

.icon-health::before {
    content: "❤️";
}

.icon-home::before {
    content: "🏠";
}

.icon-business::before {
    content: "💼";
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: white;
}

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

.about-text p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.about-list li {
    padding: 0.6rem 0;
    color: #666;
    font-size: 1rem;
    font-weight: 400;
    transition: var(--transition);
}

.about-list li:hover {
    color: var(--secondary-color);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background-color: var(--light-bg-color);
    text-align: center;
    position: relative; /* For carousel buttons */
}

.reviews h2 {
    margin-bottom: 2.5rem;
}

.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 2.5rem;
    padding: 0 2rem; /* Add padding to prevent cards from touching wrapper edges */
}

.reviews-grid {
    display: flex;
    overflow-x: scroll; /* Enable horizontal scrolling */
    scroll-snap-type: x mandatory; /* Snap to elements */
    scroll-behavior: smooth; /* Smooth scrolling */
    -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
    white-space: nowrap; /* Prevent cards from wrapping */
    padding-bottom: 1rem; /* Space for potential scrollbar on some OS */
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    align-items: stretch; /* Ensure cards have equal height */
    margin: 0;
    padding-left: 1rem; /* Adjust for reviews-carousel-wrapper padding */
}

.reviews-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.review-card {
    flex: 0 0 calc(33.333% - 2rem); /* 3 cards visible with gaps */
    max-width: none; /* Override any previous max-width */
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    margin-right: 2rem; /* Gap between cards */
    scroll-snap-align: start; /* Snap to the start of each card */
    display: inline-block; /* For older browsers/fallbacks, though flex is dominant */
    white-space: normal; /* Allow text to wrap within the card */
    vertical-align: top; /* Align cards at the top if heights vary */
}

.review-card:last-child {
    margin-right: 0; /* No margin on the last card */
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-card p {
    color: #666;
    margin-bottom: 1.2rem;
    font-style: italic;
    line-height: 1.7;
    font-size: 0.95rem;
}

.review-card strong {
    color: var(--primary-color);
    font-weight: 600;
}

.review-source {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.8rem;
    font-style: normal;
}

/* Carousel Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 1.8rem;
    border-radius: 50%;
    z-index: 10;
    box-shadow: var(--shadow);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-button:hover {
    background-color: #224a7d; /* Slightly darker primary */
    transform: translateY(-50%) scale(1.05);
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

/* Responsive adjustments for carousel */
@media (max-width: 968px) {
    .reviews-carousel-wrapper {
        padding: 0 1rem;
    }
    .review-card {
        flex: 0 0 calc(50% - 1.5rem); /* 2 cards on medium screens */
        margin-right: 1.5rem;
    }
    .carousel-button.prev {
        left: 0.5rem;
    }
    .carousel-button.next {
        right: 0.5rem;
    }
}

@media (max-width: 768px) {
    .review-card {
        flex: 0 0 calc(100% - 1rem); /* 1 card on small screens */
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .carousel-button {
        padding: 8px 12px;
        font-size: 1.4rem;
    }
    .reviews-carousel-wrapper {
        padding: 0 0.5rem;
    }
    .reviews-grid {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .carousel-button.prev {
        left: 0.2rem;
    }
    .carousel-button.next {
        right: 0.2rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3f5a 100%);
    color: white;
    position: relative;
}

.contact h2 {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

.contact-info h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.info-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    border-left: 3px solid var(--secondary-color);
    transition: var(--transition);
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.info-item strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.info-item a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.info-item a:hover {
    color: var(--secondary-color);
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.15);
    outline: none;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1), 0 0 0 3px rgba(var(--secondary-color-rgb), 0.2);
}

.form-group select option {
    background-color: var(--primary-color-dark);
    color: white;
}

.contact-form .btn-primary {
    width: auto;
    display: inline-block;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3f5a 0%, var(--primary-color) 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    font-size: 0.95rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-col h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-col p,
.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

.footer-col .social-links {
    margin-top: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: white;
}

.certificate-info {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin-top: 1.5rem;
    text-align: left;
}

.certificate-info p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.certificate-info strong {
    color: white;
}

.agno-credit {
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
}

.agno-credit a {
    color: var(--secondary-color);
    text-decoration: none;
}

.agno-credit a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: linear-gradient(135deg, white 0%, #f5f5f5 100%);
        flex-direction: column;
        gap: 0;
        width: 100%;
        display: none;
        box-shadow: var(--shadow-lg);
        border-bottom: 3px solid var(--secondary-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a {
        display: block;
        padding: 1.2rem;
        font-weight: 600;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 4rem 0;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

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

    .btn {
        width: 100%;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-image img {
        order: -1;
    }

    .services h2,
    .about h2,
    .reviews h2,
    .contact h2 {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .contact {
        padding: 4rem 0;
    }

    .contact h2 {
        color: white;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-grid,
    .reviews-grid,
    .types-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 0;
    }

    .services h2,
    .about h2,
    .reviews h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

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

/* Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .menu-toggle,
    .footer {
        display: none;
    }
}

/* Minimal Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Product Pages */
.product-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3f5a 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.product-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-hero p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.product-content {
    padding: 5rem 0;
}

.product-section {
    margin-bottom: 4rem;
}

.product-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.product-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.coverage-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.coverage-table tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.coverage-table td {
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.coverage-yes {
    background: rgba(39, 174, 96, 0.1);
    border-left: 4px solid var(--secondary-color);
    color: #27ae60;
}

.coverage-no {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--accent-color);
    color: var(--accent-color);
}

.factors-list {
    list-style: none;
    padding: 0;
}

.factors-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

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

.factors-list strong {
    color: var(--primary-color);
}

.faq-section {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 12px;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.quote-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.quote-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.quote-form-full {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.quote-form-full .btn {
    width: 100%;
    padding: 14px !important;
}

/* Products Detail Section */
.products-detail {
    padding: 5rem 0;
    background: var(--light-gray);
}

.products-detail h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.product-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    scroll-margin-top: 100px;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

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

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

.product-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.kasko-card {
    border-top-color: #3498db;
}

.kasko-card:hover {
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
}

.dask-card {
    border-top-color: #e67e22;
}

.dask-card:hover {
    box-shadow: 0 20px 40px rgba(230, 126, 34, 0.3);
}

.health-card {
    border-top-color: #e74c3c;
}

.health-card:hover {
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.3);
}

.business-card {
    border-top-color: #9b59b6;
}

.business-card:hover {
    box-shadow: 0 20px 40px rgba(155, 89, 182, 0.3);
}

.product-icon-large {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

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

.product-detail-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.product-detail-card > p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-col h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-col ul {
    list-style: none;
    padding: 0;
}

.feature-col ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
    color: #555;
    font-size: 0.9rem;
}

.feature-col ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.feature-col ul.no-coverage li::before {
    content: '✗';
    color: var(--accent-color);
}

.product-detail-card .btn {
    width: 100%;
    margin-top: 1rem;
    padding: 12px !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
}

.product-detail-card .btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3) !important;
}

@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .product-detail-card {
        padding: 2rem;
    }
    
    .product-icon-large {
        font-size: 3rem;
    }
}