:root {
    --primary: #FFC107; /* Cheerful Yellow */
    --primary-dark: #FFB300;
    --secondary: #0056b3; /* Trustworthy Blue */
    --secondary-dark: #003d80;
    --dark: #2C3E50;
    --light: #F8F9FA;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --border-radius: 12px;
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--light);
}

h1, h2, h3, h4, .logo {
    font-family: 'Quicksand', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
}

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

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

.btn-block {
    display: block;
    width: 100%;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

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

.btn-nav {
    background-color: var(--secondary);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 20px;
}

.btn-nav:hover {
    background-color: var(--secondary-dark);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
    margin-top: 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 86, 179, 0.85), rgba(44, 62, 80, 0.6));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.badge {
    background-color: var(--primary);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

/* Stats */
.stats {
    background-color: var(--white);
    padding: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-item i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Sections General */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

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

/* Benefits */
.benefits {
    background-color: var(--white);
}

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

.benefit-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.benefit-img {
    height: 200px;
    overflow: hidden;
}

.benefit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.benefit-card:hover .benefit-img img {
    transform: scale(1.1);
}

.benefit-text {
    padding: 30px;
}

.benefit-text h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.benefit-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Models */
.models {
    background-color: #eef2f5;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.model-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.model-image {
    position: relative;
    height: 250px;
}

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

.model-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--dark);
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
}

.model-content {
    padding: 30px;
    text-align: center;
}

.model-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.model-features {
    text-align: left;
    margin-bottom: 25px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.model-features li {
    margin-bottom: 10px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.model-features li i {
    color: var(--secondary);
    width: 20px;
    text-align: center;
}

/* Testimonial */
.testimonial {
    background-color: var(--white);
}

.testimonial-content {
    display: flex;
    align-items: center;
    background-color: #f0f7ff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.testimonial-text {
    flex: 1;
    padding: 60px;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(0, 86, 179, 0.1);
    position: absolute;
    top: 30px;
    left: 30px;
}

.testimonial-text p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.author h4 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.author span {
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial-img {
    flex: 0 0 400px;
    height: 100%;
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

/* Contact */
.contact {
    background-color: var(--dark);
    color: var(--white);
    padding-bottom: 100px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info > p {
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 400px;
}

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

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item h4 {
    margin-bottom: 5px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    color: var(--dark);
}

.contact-form h3 {
    margin-bottom: 25px;
    color: var(--secondary);
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--secondary);
}

/* Footer */
.footer {
    background-color: #1a252f;
    color: #fff;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-brand span {
    color: var(--primary);
}

.footer-brand p {
    opacity: 0.7;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

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

.footer-social a:hover {
    background: var(--primary);
    color: var(--dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-content { flex-direction: column; }
    .testimonial-img { flex: auto; width: 100%; height: 300px; }
    .testimonial-img img { min-height: auto; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }

    .mobile-toggle {
        display: block;
    }

    .hero h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    
    .contact-wrapper { flex-direction: column; }
    .testimonial-text { padding: 30px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.8rem; }
}
/* Vibitely Responsive Safety Fixes */
img, video, iframe, embed, object { max-width: 100%; height: auto; }
.vibitely-hidden { display: none !important; }
