/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #1a73e8;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a73e8;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-1px);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a73e8;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1a73e8;
}

.nav-link.active {
    color: #1a73e8;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a73e8;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/fadanye-express-logo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    padding: 60px 0 40px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.6s both;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #1557b0 0%, #3367d6 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 115, 232, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #1a73e8;
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid #1a73e8;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #1a73e8;
    color: #ffffff;
}

/* About Preview Section */
.about-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

/* Services Preview Section */
.services-preview {
    padding: 80px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 150px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.2rem 1.2rem 0.8rem 1.2rem;
}

.service-content h3 {
    font-size: 1.1rem;
    color: #1a73e8;
    margin-bottom: 0.8rem;
}

.service-content p {
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.service-link {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #4285f4;
}

.services-cta {
    text-align: center;
}

/* Contact Preview Section */
.contact-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: #1a73e8;
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    color: #1a73e8;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #1a73e8;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8, #4285f4);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #1a73e8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.footer-section .phone-number {
    color: #1a73e8;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

.footer-section ul li a:hover {
    color: #1a73e8;
    transform: translateX(5px);
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.social-link.facebook {
    background: #1877f2;
    color: #ffffff;
}

.social-link.twitter {
    background: #000000;
    color: #ffffff;
}

.social-link.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.social-link.email {
    background: #1a73e8;
    color: #ffffff;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-link.facebook:hover {
    background: #166fe5;
}

.social-link.twitter:hover {
    background: #333333;
}

.social-link.whatsapp:hover {
    background: #128c7e;
}

.social-link.email:hover {
    background: #1557b0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #404040;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.floating-icon.whatsapp {
    background: #25d366;
    color: #ffffff;
}

.floating-icon.email {
    background: #1a73e8;
    color: #ffffff;
}

.floating-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/fadanye-express-logo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: #ffffff;
    padding: 60px 0 40px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Company Story Section */
.company-story {
    padding: 80px 0;
    background: #ffffff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Vision Mission Values Section */
.vmv-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vmv-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.vmv-card:hover {
    transform: translateY(-5px);
}

.vmv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.vmv-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.vmv-card h3 {
    font-size: 1.5rem;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.vmv-card p, .vmv-card ul {
    color: #666;
    line-height: 1.6;
}

.vmv-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.vmv-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.vmv-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #ffffff;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.reason-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: #1a73e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.reason-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.reason-card h3 {
    font-size: 1.3rem;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.reason-card p {
    color: #666;
    line-height: 1.6;
}

/* Stats & Rating Section */
.stats-rating-section {
    padding: 80px 0;
    background: #ffffff;
}

.stats-rating-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e0e0e0;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.rating-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-card {
    background: linear-gradient(135deg, #1a73e8, #4285f4);
    color: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(26, 115, 232, 0.3);
}

.rating-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-header p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.rating-stars i {
    font-size: 1.5rem;
    color: #ffd700;
}

.rating-score {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.rating-description p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.rating-features {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.rating-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
}

.rating-feature i {
    color: #1a73e8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8, #4285f4);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #1a73e8;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: #1a73e8;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #1a73e8;
    margin: 0 0 0.3rem 0;
    font-weight: 600;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.commitment-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.commitment-text h3 {
    font-size: 2rem;
    color: #1a73e8;
    margin-bottom: 1.5rem;
}

.commitment-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.commitment-text ul {
    list-style: none;
    padding: 0;
}

.commitment-text ul li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: #666;
}

.commitment-text ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
}

.commitment-stats {
    display: grid;
    gap: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 40px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/fadanye-express-logo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: #ffffff;
    text-align: center;
    position: relative;
    min-height: 25vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Enhanced CTA buttons for CTA sections */
.cta-section .cta-button {
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-section .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-section .cta-button:hover::before {
    left: 100%;
}

.cta-section .cta-button:hover {
    background: linear-gradient(135deg, #1557b0 0%, #3367d6 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

.cta-section .secondary-button {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-section .secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.cta-section .secondary-button:hover::before {
    left: 100%;
}

.cta-section .secondary-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.cta-section .cta-button i,
.cta-section .secondary-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta-section .cta-button:hover i,
.cta-section .secondary-button:hover i {
    transform: scale(1.1);
}

/* Services Page Styles */
.services-overview {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.main-services {
    padding: 80px 0;
    background: #ffffff;
}

.service-card.large {
    margin-bottom: 3rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0.5rem 0;
}

.service-features li {
    margin-bottom: 0.6rem;
    padding-left: 1.2rem;
    position: relative;
    color: #666;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
}

.business-types h4 {
    color: #1a73e8;
    margin: 1rem 0;
}

.service-cta {
    margin-top: 0.5rem;
    padding: 0 1.2rem 1rem 1.2rem;
}

.service-cta .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item i {
    font-size: 3rem;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Process Steps */
.process-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #1a73e8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.3rem;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.company-intro {
    padding: 80px 0;
    background: #ffffff;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 1.5rem;
}

.intro-text h3 {
    font-size: 1.5rem;
    color: #1a73e8;
    margin: 2rem 0 1rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-text ul {
    list-style: none;
    padding: 0;
}

.intro-text ul li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    color: #666;
}

.intro-text ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
}

.intro-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #1a73e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #4285f4;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #ffffff;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    color: #1a73e8;
    margin-bottom: 1rem;
}

.form-header p {
    color: #666;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a73e8;
}

.submit-button {
    background: #1a73e8;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    background: #4285f4;
    transform: translateY(-2px);
}

.submit-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-button:disabled:hover {
    background: #cccccc;
    transform: none;
    box-shadow: none;
}

/* Form submission feedback */
.form-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.form-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Statistics & Rating Section */
.stats-rating-section {
    padding: 80px 0;
    background: #f8f9fa;
    color: #333;
    position: relative;
}

.stats-rating-section .container {
    position: relative;
    z-index: 2;
}

.stats-rating-section .section-title {
    color: #1a1a1a;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.stats-rating-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1a73e8, #4285f4);
    border-radius: 2px;
}

.stats-rating-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #1a73e8;
}

.stat-icon {
    font-size: 1.5rem;
    color: #1a73e8;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-description {
    font-size: 0.7rem;
    line-height: 1.4;
    color: #888;
    flex-grow: 1;
}

.rating-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rating-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e0e0e0;
    max-width: 350px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.rating-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.rating-header p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.rating-stars {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
}

.rating-stars i {
    font-size: 1.8rem;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.rating-stars i:hover {
    transform: scale(1.1);
}

.rating-score {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;

}

.rating-description {
    margin-bottom: 20px;
}

.rating-description p:first-child {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a73e8;
}

.rating-description p:last-child {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666;
}

.rating-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.rating-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #666;
}

.rating-feature i {
    color: #1a73e8;
    font-size: 0.9rem;
}

/* Responsive Design for Statistics & Rating Section */
@media (max-width: 1024px) {
    .stats-rating-content {
        gap: 30px;
    }
    
    .rating-card {
        padding: 20px;
        max-width: 350px;
    }
    
    .rating-header h3 {
        font-size: 1.3rem;
    }
    
    .rating-stars i {
        font-size: 1.6rem;
    }
    
    .rating-score {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .stats-rating-section {
        padding: 40px 0;
    }
    
    .stats-rating-section .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .stat-card {
        padding: 10px 8px;
        min-height: 100px;
    }
    
    .stat-icon {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .rating-card {
        padding: 18px 12px;
    }
    
    .rating-header h3 {
        font-size: 1.1rem;
    }
    
    .rating-header p {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .rating-stars {
        margin-bottom: 10px;
        gap: 1px;
    }
    
    .rating-stars i {
        font-size: 1.4rem;
    }
    
    .rating-score {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .rating-description {
        margin-bottom: 15px;
    }
    
    .rating-description p:first-child {
        font-size: 0.8rem;
    }
    
    .rating-description p:last-child {
        font-size: 0.75rem;
    }
    
    .rating-features {
        gap: 6px;
    }
    
    .rating-feature {
        font-size: 0.7rem;
        gap: 6px;
    }
    
    .footer-section .phone-number {
        color: #1a73e8;
        font-weight: 500;
    }
    
    .contact-item p {
        color: #1a73e8;
        font-weight: 500;
    }
    
    .rating-feature i {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .stats-rating-section {
        padding: 25px 0;
    }
    
    .stat-card {
        padding: 12px 10px;
    }
    
    .stat-icon {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .rating-card {
        padding: 15px 10px;
    }
    
    .rating-header h3 {
        font-size: 1rem;
    }
    
    .rating-stars i {
        font-size: 1.2rem;
    }
    
    .rating-score {
        font-size: 1.4rem;
    }
    
    .rating-feature {
        font-size: 0.65rem;
    }
    
    .footer-section .phone-number {
        color: #1a73e8;
        font-weight: 500;
    }
    
    .contact-item p {
        color: #1a73e8;
        font-weight: 500;
    }
}

/* Thank You Message Styles */
.thank-you-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 4rem;
    color: #1a73e8;
    margin-bottom: 1.5rem;
    animation: bounce 1s ease-in-out;
}

.thank-you-message h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.thank-you-message p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.thank-you-details {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.thank-you-details p {
    margin-bottom: 1rem;
    font-weight: 600;
}

.thank-you-details ul {
    list-style: none;
    padding: 0;
}

.thank-you-details li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.thank-you-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a73e8;
    font-weight: bold;
    font-size: 1.1rem;
}

.thank-you-contact {
    margin: 2rem 0;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.contact-option.whatsapp:hover {
    background: #25d366;
}

#send-another-message {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

#send-another-message:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Location Map Section */
.location-map-section {
    padding: 80px 0;
    background: #ffffff;
}

.map-container {
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.map-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-details h3 {
    font-size: 1.5rem;
    color: #1a73e8;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-details p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.map-details strong {
    color: #333;
}

.map-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-actions .cta-button,
.map-actions .secondary-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.map-actions .cta-button {
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 100%);
    color: white;
    border: 2px solid #1a73e8;
}

.map-actions .secondary-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #333;
    border: 2px solid #e0e0e0;
}

.map-actions .cta-button:hover {
    background: linear-gradient(135deg, #1557b0 0%, #3367d6 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(26, 115, 232, 0.3);
    border-color: #1557b0;
}

.map-actions .secondary-button:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #1a73e8;
    color: #1a73e8;
}

.map-actions .cta-button:active,
.map-actions .secondary-button:active {
    transform: translateY(-1px) scale(0.98);
}

.map-actions .cta-button i,
.map-actions .secondary-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.map-actions .cta-button:hover i,
.map-actions .secondary-button:hover i {
    transform: scale(1.1);
}

/* Business Hours Section */
.business-hours {
    padding: 80px 0;
    background: #f8f9fa;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hours-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hours-card h3 {
    font-size: 1.3rem;
    color: #1a73e8;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-card ul {
    list-style: none;
    padding: 0;
}

.hours-card ul li {
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section .cta-button,
    .cta-section .secondary-button {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .service-content {
        padding: 1rem 1rem 0.6rem 1rem;
    }
    
    .service-cta {
        margin-top: 0.3rem;
        padding: 0 1rem 0.8rem 1rem;
    }
    
    .service-content h3 {
        font-size: 1rem;
    }
    
    .service-image {
        height: 120px;
    }
    
    .footer-section .phone-number {
        color: #1a73e8;
        font-weight: 500;
    }
    
    .contact-item p {
        color: #1a73e8;
        font-weight: 500;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .floating-icons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header {
        background-attachment: scroll;
    }
    
    .story-content,
    .intro-content,
    .commitment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vmv-grid,
    .reasons-grid,
    .benefits-grid,
    .process-steps,
    .contact-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .map-actions .cta-button,
    .map-actions .secondary-button {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-width: 140px;
    }
    
    /* Stats & Rating Section */
    .stats-rating-section {
        padding: 50px 0;
    }
    
    .stats-rating-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .stats-rating-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        padding: 12px 10px;
        min-height: 120px;
    }
    
    .stat-icon {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }
    
    .stat-description {
        font-size: 0.65rem;
    }
    
    .rating-card {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .rating-header h3 {
        font-size: 1.3rem;
    }
    
    .rating-header p {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .rating-stars {
        margin-bottom: 12px;
        gap: 2px;
    }
    
    .rating-stars i {
        font-size: 1.6rem;
    }
    
    .rating-score {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .rating-description p:first-child {
        font-size: 0.9rem;
    }
    
    .rating-description p:last-child {
        font-size: 0.8rem;
    }
    
    .rating-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .rating-feature {
        font-size: 0.75rem;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-section {
        background-attachment: scroll;
    }
}
