/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation Bar */
.navbar {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-size: 28px;
    color: #8B2332;
    font-weight: 700;
    margin-bottom: 2px;
}

.nav-logo .tagline {
    font-size: 11px;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #8B2332;
}

/* Hero Section */
.hero-section {
    background-image: url('../images/hero-sec-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - 100px);
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-video {
    flex: 1;
}

.hero-video iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #8B2332;
}

.hero-description {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #8B2332;
    color: #fff;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(139, 35, 50, 0.3);
}

.cta-button:hover {
    background-color: #6d1c28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 35, 50, 0.4);
}

/* Features Section */
.features-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 15px;
}

.features-title .highlight {
    color: #8B2332;
}

.features-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid #8B2332;
    position: relative;
}

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

.feature-card:nth-child(4),
.feature-card:nth-child(5) {
    grid-column: span 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: auto;
    margin-right: 15px;
}

.feature-card:nth-child(5) {
    grid-column: 2 / 3;
    margin-left: 15px;
    margin-right: auto;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Why AuroraXSolutions Section */
.why-section {
    background-color: #fff;
    padding: 100px 0;
}

.why-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.why-content {
    flex: 1;
}

.why-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.why-description {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.why-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-img {
    width: 100%;
    max-width: 500px;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    left: 0;
    background-color: #8B2332;
    color: #fff;
    padding: 20px 35px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 5px 20px rgba(139, 35, 50, 0.4);
    z-index: 3;
    line-height: 1.3;
}

.experience-badge p {
    margin: 0;
}

.decorative-squares {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.decorative-squares .square {
    position: absolute;
    border: 2px solid #8B2332;
    border-radius: 4px;
    opacity: 0.3;
}

.decorative-squares .square:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 100px;
}

.decorative-squares .square:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 20px;
}

.decorative-squares .square:nth-child(3) {
    width: 50px;
    height: 50px;
    top: 50px;
    right: 180px;
}

.decorative-squares .square:nth-child(4) {
    width: 70px;
    height: 70px;
    top: 100px;
    right: 50px;
}

.decorative-squares .square:nth-child(5) {
    width: 45px;
    height: 45px;
    top: 90px;
    right: 250px;
}

.decorative-squares .square:nth-child(6) {
    width: 55px;
    height: 55px;
    top: 150px;
    right: 150px;
}

/* Clients Section */
.clients-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    overflow: hidden;
}

.clients-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}

.clients-title .highlight {
    color: #8B2332;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* CTA Section */
.cta-section {
    background-color: #fff;
    padding: 100px 0;
    text-align: center;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-title .highlight {
    color: #8B2332;
}

.cta-subtitle {
    font-size: 22px;
    color: #555;
    margin-bottom: 40px;
}

.cta-subtitle strong {
    font-weight: 700;
    color: #000;
}

.cta-button-link {
    display: inline-block;
    background-color: #8B2332;
    color: #fff;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(139, 35, 50, 0.3);
}

.cta-button-link:hover {
    background-color: #6d1c28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 35, 50, 0.4);
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #a52a2a 0%, #8B2332 50%, #7a1f2a 100%);
    padding: 80px 0;
    margin: 80px 40px;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 20px 20px;
    pointer-events: none;
}

.stats-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

/* WhatsApp CTA Section */
.whatsapp-cta-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.whatsapp-card {
    background-image: url('../images/celular-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.whatsapp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.whatsapp-content {
    position: relative;
    z-index: 2;
    text-align: right;
    max-width: 600px;
}

.whatsapp-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 30px;
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: #fff;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
    padding: 100px 0;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title strong {
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author {
    margin-top: auto;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.author-company {
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

/* Contact Form Section */
.contact-section {
    background-color: #f9f9f9;
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-description {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

.contact-form-wrapper {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B2332;
    box-shadow: 0 0 0 3px rgba(139, 35, 50, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    background-color: #8B2332;
    color: #fff;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(139, 35, 50, 0.3);
    margin-top: 10px;
}

.form-submit-btn:hover {
    background-color: #6d1c28;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 35, 50, 0.4);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.modal-message {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #8B2332;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

.footer-contact li strong {
    color: #fff;
    display: inline-block;
    margin-bottom: 5px;
}

.footer-contact li a {
    color: #8B2332;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #a52a2a;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        gap: 40px;
    }

    .hero-video iframe {
        height: 350px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .feature-card:nth-child(4) {
        grid-column: 1 / 2;
        margin-left: 0;
        margin-right: 0;
    }

    .feature-card:nth-child(5) {
        grid-column: 2 / 3;
        margin-left: 0;
        margin-right: 0;
    }

    .features-title {
        font-size: 36px;
    }

    .why-container {
        flex-direction: column;
        gap: 50px;
    }

    .why-title {
        font-size: 36px;
    }

    .why-description {
        font-size: 16px;
    }

    .clients-title {
        font-size: 36px;
    }

    .client-logo {
        width: 150px;
        height: 90px;
    }

    .carousel-track {
        gap: 40px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-subtitle {
        font-size: 20px;
    }

    .stats-section {
        margin: 60px 30px;
        padding: 60px 0;
        border-radius: 50px;
    }

    .stats-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 44px;
    }

    .stat-label {
        font-size: 16px;
    }

    .whatsapp-cta-section {
        padding: 60px 0;
    }

    .whatsapp-card {
        padding: 60px 40px;
        border-radius: 35px;
    }

    .whatsapp-content {
        max-width: 500px;
    }

    .whatsapp-title {
        font-size: 30px;
    }

    .whatsapp-button {
        padding: 16px 40px;
        font-size: 17px;
    }

    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .testimonials-grid {
        gap: 30px;
    }

    .testimonial-card {
        padding: 35px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 35px;
    }

    .modal-content {
        padding: 40px 30px;
    }

    .modal-title {
        font-size: 28px;
    }

    .modal-message {
        font-size: 16px;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-links li a,
    .footer-contact li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-video iframe {
        height: 280px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 16px;
    }

    .features-section {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        grid-column: 1 / 2;
        margin: 0;
    }

    .features-title {
        font-size: 30px;
    }

    .features-subtitle {
        font-size: 16px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .why-section {
        padding: 60px 0;
    }

    .why-content {
        text-align: center;
    }

    .why-title {
        font-size: 30px;
    }

    .why-description {
        font-size: 15px;
    }

    .why-img {
        max-width: 400px;
    }

    .experience-badge {
        font-size: 18px;
        padding: 18px 30px;
        bottom: 30px;
    }

    .decorative-squares .square {
        opacity: 0.2;
    }

    .clients-section {
        padding: 60px 0;
    }

    .clients-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .client-logo {
        width: 130px;
        height: 80px;
        padding: 15px;
    }

    .carousel-track {
        gap: 30px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .cta-button-link {
        padding: 16px 40px;
        font-size: 16px;
    }

    .stats-section {
        margin: 50px 20px;
        padding: 50px 0;
        border-radius: 40px;
    }

    .stats-title {
        font-size: 34px;
        margin-bottom: 40px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 38px;
    }

    .stat-label {
        font-size: 15px;
    }

    .whatsapp-cta-section {
        padding: 50px 0;
    }

    .whatsapp-card {
        padding: 50px 30px;
        border-radius: 30px;
        justify-content: center;
    }

    .whatsapp-content {
        text-align: center;
    }

    .whatsapp-title {
        font-size: 26px;
    }

    .whatsapp-button {
        padding: 15px 35px;
        font-size: 16px;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-company {
        font-size: 14px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 30px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

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

    .form-group input,
    .form-group textarea {
        padding: 13px 15px;
        font-size: 14px;
    }

    .form-submit-btn {
        padding: 15px 35px;
        font-size: 16px;
    }

    .modal-content {
        padding: 35px 25px;
    }

    .modal-title {
        font-size: 26px;
    }

    .modal-message {
        font-size: 15px;
    }

    .modal-icon svg {
        width: 70px;
        height: 70px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-title {
        font-size: 18px;
    }

    .footer-links li a,
    .footer-contact li {
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .nav-logo h1 {
        font-size: 22px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .hero-video iframe {
        height: 220px;
    }

    .hero-title {
        font-size: 26px;
    }

    .features-title {
        font-size: 26px;
    }

    .features-subtitle {
        font-size: 15px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 15px;
    }

    .why-section {
        padding: 40px 0;
    }

    .why-title {
        font-size: 26px;
    }

    .why-description {
        font-size: 14px;
    }

    .why-img {
        max-width: 320px;
    }

    .experience-badge {
        font-size: 16px;
        padding: 15px 25px;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
    }

    .decorative-squares .square {
        display: none;
    }

    .clients-section {
        padding: 40px 0;
    }

    .clients-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .client-logo {
        width: 110px;
        height: 70px;
        padding: 12px;
    }

    .carousel-track {
        gap: 25px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-button-link {
        padding: 14px 30px;
        font-size: 15px;
    }

    .stats-section {
        margin: 40px 15px;
        padding: 40px 0;
        border-radius: 30px;
    }

    .stats-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 14px;
    }

    .whatsapp-cta-section {
        padding: 40px 0;
    }

    .whatsapp-card {
        padding: 40px 20px;
        border-radius: 25px;
        min-height: 250px;
    }

    .whatsapp-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .whatsapp-button {
        padding: 14px 30px;
        font-size: 15px;
    }

    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .testimonials-grid {
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px;
        border-radius: 15px;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .author-name {
        font-size: 14px;
    }

    .author-company {
        font-size: 13px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-description {
        font-size: 14px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-submit-btn {
        padding: 14px 30px;
        font-size: 15px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-message {
        font-size: 14px;
    }

    .modal-icon svg {
        width: 60px;
        height: 60px;
    }

    .modal-close {
        font-size: 28px;
    }

    .footer {
        padding: 35px 0 15px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-title {
        font-size: 17px;
        margin-bottom: 15px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-contact {
        gap: 12px;
    }

    .footer-links li a,
    .footer-contact li {
        font-size: 13px;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* ==================== About Page Styles ==================== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #8B2332 0%, #6d1c28 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.about-hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Our Story Section */
.our-story-section {
    padding: 100px 0;
    background-color: #fff;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.story-paragraph {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.mission-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #8B2332;
}

.mission-title {
    font-size: 28px;
    font-weight: 700;
    color: #8B2332;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

/* What We Do Section */
.what-we-do-section {
    padding: 100px 0;
    background-color: #fff;
}

.section-title-center {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 17px;
    color: #555;
    text-align: center;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-item {
    background-color: #f9f9f9;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.why-item {
    background-color: #fff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.why-number {
    font-size: 48px;
    font-weight: 700;
    color: #8B2332;
    margin-bottom: 15px;
    opacity: 0.2;
}

.why-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.why-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* About Page Responsive Design */
@media (max-width: 968px) {
    .about-hero {
        padding: 80px 0;
    }

    .about-hero-title {
        font-size: 42px;
    }

    .about-hero-subtitle {
        font-size: 18px;
    }

    .our-story-section {
        padding: 80px 0;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .story-paragraph {
        font-size: 16px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .what-we-do-section {
        padding: 80px 0;
    }

    .section-title-center {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .why-choose-section {
        padding: 80px 0;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-subtitle {
        font-size: 17px;
    }

    .our-story-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .story-paragraph {
        font-size: 15px;
    }

    .mission-section {
        padding: 60px 0;
    }

    .mission-card {
        padding: 40px 30px;
    }

    .mission-title {
        font-size: 24px;
    }

    .mission-text {
        font-size: 15px;
    }

    .what-we-do-section {
        padding: 60px 0;
    }

    .section-title-center {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-item {
        padding: 30px 25px;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 50px;
    }

    .why-item {
        padding: 30px 25px;
    }

    .why-number {
        font-size: 40px;
    }

    .why-title {
        font-size: 18px;
    }

    .why-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 50px 0;
    }

    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-subtitle {
        font-size: 16px;
    }

    .our-story-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .story-paragraph {
        font-size: 14px;
    }

    .mission-section {
        padding: 40px 0;
    }

    .mission-card {
        padding: 30px 25px;
        border-radius: 15px;
    }

    .mission-title {
        font-size: 22px;
    }

    .mission-text {
        font-size: 14px;
    }

    .what-we-do-section {
        padding: 40px 0;
    }

    .section-title-center {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .service-item {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
    }

    .why-choose-section {
        padding: 40px 0;
    }

    .why-grid {
        margin-top: 40px;
        gap: 20px;
    }

    .why-item {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .why-number {
        font-size: 36px;
    }

    .why-title {
        font-size: 17px;
    }

    .why-description {
        font-size: 13px;
    }
}

/* ==================== Contact Page Styles ==================== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #8B2332 0%, #6d1c28 100%);
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.contact-hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Info Cards Section */
.contact-info-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-info-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-info-title {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.contact-info-text {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.contact-info-text a {
    color: #8B2332;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-text a:hover {
    color: #6d1c28;
    text-decoration: underline;
}

/* Main Contact Section */
.main-contact-section {
    padding: 100px 0;
    background-color: #fff;
}

.main-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.main-contact-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.main-contact-description {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.main-contact-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
}

.contact-feature svg {
    flex-shrink: 0;
}

.main-contact-form-wrapper {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
}

.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-contact-form select {
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    cursor: pointer;
}

.main-contact-form select:focus {
    outline: none;
    border-color: #8B2332;
    box-shadow: 0 0 0 3px rgba(139, 35, 50, 0.1);
}

/* Contact Page Responsive Design */
@media (max-width: 968px) {
    .contact-hero {
        padding: 80px 0;
    }

    .contact-hero-title {
        font-size: 42px;
    }

    .contact-hero-subtitle {
        font-size: 18px;
    }

    .contact-info-section {
        padding: 60px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .main-contact-section {
        padding: 80px 0;
    }

    .main-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-contact-title {
        font-size: 36px;
    }

    .main-contact-description {
        font-size: 16px;
    }

    .main-contact-form-wrapper {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-subtitle {
        font-size: 17px;
    }

    .contact-info-section {
        padding: 50px 0;
    }

    .contact-info-card {
        padding: 35px 25px;
    }

    .contact-info-title {
        font-size: 20px;
    }

    .contact-info-text {
        font-size: 14px;
    }

    .main-contact-section {
        padding: 60px 0;
    }

    .main-contact-title {
        font-size: 30px;
    }

    .main-contact-description {
        font-size: 15px;
    }

    .main-contact-form-wrapper {
        padding: 30px;
    }

    .contact-feature {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 50px 0;
    }

    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
    }

    .contact-info-section {
        padding: 40px 0;
    }

    .contact-info-card {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .contact-info-title {
        font-size: 18px;
    }

    .contact-info-text {
        font-size: 13px;
    }

    .main-contact-section {
        padding: 40px 0;
    }

    .main-contact-title {
        font-size: 26px;
    }

    .main-contact-description {
        font-size: 14px;
    }

    .main-contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .contact-feature {
        font-size: 14px;
    }

    .contact-feature svg {
        width: 20px;
        height: 20px;
    }
}
