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

:root {
    --primary: #ff6b6b;
    --secondary: #4ecdc4;
    --dark: #1a1a2e;
    --light: #f7f7f7;
    --text: #333;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d44 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    color: var(--primary);
    font-size: 2rem;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d44 100%);
    color: white;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    animation: slideInLeft 0.8s ease;
    padding: 4rem 2rem;
    z-index: 10;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-image-full {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 107, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.location-badge i {
    color: var(--primary);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, #ff5252 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Cars Section */
.cars-section {
    padding: 5rem 2rem;
    background: var(--light);
}

.cars-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.car-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.car-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.car-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-card:hover .car-image-wrapper img {
    transform: scale(1.1);
}

.car-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.car-badge.premium {
    background: var(--secondary);
}

.car-details {
    padding: 1.5rem;
}

.car-details h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.car-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.car-specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.car-specs span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.car-specs i {
    color: var(--primary);
}

.car-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
}

.or {
    color: #999;
    font-size: 0.85rem;
}

.btn-book-car {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #45b8b0 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-book-car:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

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

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

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

@keyframes carDrive {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(10px) translateY(-10px);
    }
    50% {
        transform: translateX(0) translateY(-20px);
    }
    75% {
        transform: translateX(-10px) translateY(-10px);
    }
}

@keyframes car3DRotate {
    0% {
        transform: rotateY(0deg) rotateX(5deg) translateY(0);
    }
    25% {
        transform: rotateY(15deg) rotateX(5deg) translateY(-15px);
    }
    50% {
        transform: rotateY(0deg) rotateX(5deg) translateY(-25px);
    }
    75% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(-15px);
    }
    100% {
        transform: rotateY(0deg) rotateX(5deg) translateY(0);
    }
}

@keyframes car3DStable {
    0% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(0);
    }
    25% {
        transform: rotateY(5deg) rotateX(2deg) translateY(-10px);
    }
    50% {
        transform: rotateY(0deg) rotateX(2deg) translateY(-15px);
    }
    75% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(-10px);
    }
    100% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(0);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-up {
    animation: slide-up 0.6s ease forwards;
}

.slide-up:nth-child(1) { animation-delay: 0.1s; }
.slide-up:nth-child(2) { animation-delay: 0.2s; }

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease 0.2s both;
}

/* Booking Section */
.booking-section {
    padding: 5rem 2rem;
    background: white;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
}

.booking-form {
    background: var(--light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--primary) 0%, #ff5252 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.success-message {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    animation: slideInUp 0.5s ease;
}

.success-message i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
    display: block;
}

.success-message h3 {
    margin-bottom: 0.5rem;
}

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

/* Pricing Section */
.pricing-section {
    padding: 5rem 2rem;
    background: var(--light);
}

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

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--dark);
}

.pricing-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.pricing-header h3 {
    font-size: 1.1rem;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-card .btn-book-car {
    margin-top: auto;
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 1rem;
    }
    .pricing-container {
        grid-template-columns: 1fr;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 2rem;
    background: white;
}

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

.feature-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, #ff5252 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary) 0%, #45b8b0 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-card p {
    color: #666;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondary);
}

.contact-alt {
    margin-top: 0.3rem;
}

.contact-alt a {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 2rem;
}

.footer p {
    margin: 0.3rem 0;
}

/* Call Modal */
.call-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.call-modal.active {
    display: flex;
}

.call-modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary);
}

.call-modal-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    flex-direction: column;
}

.call-modal-header i {
    font-size: 2.5rem;
    color: var(--primary);
}

.call-modal-header h2 {
    color: var(--dark);
    font-size: 1.5rem;
}

.call-modal-text {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.call-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.call-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text);
}

.call-option:hover {
    border-color: var(--primary);
    background: rgba(255, 107, 107, 0.05);
    transform: translateY(-3px);
}

.call-option i {
    font-size: 2rem;
    color: var(--primary);
}

.call-option span {
    font-weight: 600;
    font-size: 1rem;
}

.call-option p {
    font-size: 0.85rem;
    color: #999;
}

/* Responsive Design */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .hero-content {
        padding: 2rem 0;
    }

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

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

    .hero-image-full {
        min-height: 400px;
    }

    .car-full-image {
        max-width: 400px;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .booking-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

/* Mobile Devices (480px - 768px) */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero-content {
        padding: 1.5rem 0;
        text-align: center;
    }

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

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

    .location-badge {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }

    .hero-image-full {
        min-height: 300px;
    }

    .car-full-image {
        max-width: 300px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .nav-menu {
        gap: 0.8rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .cars-section {
        padding: 3rem 1rem;
    }

    .cars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .car-image-wrapper {
        height: 180px;
    }

    .car-details {
        padding: 1rem;
    }

    .car-details h3 {
        font-size: 1.1rem;
    }

    .car-specs {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .booking-section {
        padding: 3rem 1rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-card i {
        font-size: 2rem;
    }

    .call-modal-content {
        width: 95%;
        padding: 1.5rem;
    }

    .call-modal-header i {
        font-size: 2rem;
    }

    .call-modal-header h2 {
        font-size: 1.2rem;
    }

    .call-option {
        padding: 1rem;
    }

    .call-option i {
        font-size: 1.5rem;
    }

    .call-option span {
        font-size: 0.9rem;
    }

    .call-option p {
        font-size: 0.8rem;
    }
}

/* Small Mobile Devices (320px - 480px) */
@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0.8rem;
    }

    .hero-content {
        padding: 1rem 0;
    }

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

    .hero p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .location-badge {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }

    .btn-primary {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-image-full {
        min-height: 250px;
    }

    .car-full-image {
        max-width: 250px;
    }

    .nav-container {
        padding: 0 0.8rem;
    }

    .logo {
        font-size: 1rem;
    }

    .logo i {
        font-size: 1.2rem;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .cars-section {
        padding: 2rem 0.8rem;
    }

    .cars-grid {
        gap: 1rem;
    }

    .car-image-wrapper {
        height: 150px;
    }

    .car-details {
        padding: 0.8rem;
    }

    .car-details h3 {
        font-size: 1rem;
    }

    .car-desc {
        font-size: 0.8rem;
    }

    .car-specs {
        gap: 0.8rem;
        font-size: 0.75rem;
    }

    .price {
        font-size: 1rem;
    }

    .or {
        font-size: 0.7rem;
    }

    .btn-book-car {
        padding: 0.7rem;
        font-size: 0.85rem;
    }

    .booking-section {
        padding: 2rem 0.8rem;
    }

    .booking-form {
        padding: 1rem;
    }

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

    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .form-row {
        gap: 0.8rem;
    }

    .btn-submit {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .contact-section {
        padding: 2rem 0.8rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-card i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .contact-card h3 {
        font-size: 0.95rem;
    }

    .contact-card p {
        font-size: 0.85rem;
    }

    .footer {
        padding: 1.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .footer p {
        margin: 0.2rem 0;
    }

    .call-modal-content {
        width: 95%;
        padding: 1.2rem;
        border-radius: 15px;
    }

    .modal-close {
        font-size: 1.5rem;
        top: 0.8rem;
        right: 0.8rem;
    }

    .call-modal-header i {
        font-size: 1.8rem;
    }

    .call-modal-header h2 {
        font-size: 1rem;
    }

    .call-modal-text {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .call-option {
        padding: 0.8rem;
        gap: 0.3rem;
    }

    .call-option i {
        font-size: 1.3rem;
    }

    .call-option span {
        font-size: 0.85rem;
    }

    .call-option p {
        font-size: 0.75rem;
    }
}

/* Customer Reviews Section */
.reviews-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.review-stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.review-stars i {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.review-author i {
    font-size: 2.5rem;
    color: #007bff;
}

.review-author h4 {
    margin: 0;
    color: #333;
    font-size: 1rem;
}

.review-author span {
    color: #777;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
}
