/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* ===== Top Bar ===== */
.top-bar {
    background-color: #666666;
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    color: #666666;
    border-radius: 50%;
    margin: 0 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.top-bar .social-icon:hover {
    background-color: #e91e63;
    color: #ffffff;
    transform: scale(1.1);
}

.top-bar .phone-numbers {
    font-weight: 600;
}

/* ===== Header ===== */
.main-header {
    background-color: #666666;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.main-header .navbar {
    padding: 10px 0;
}

.main-header .logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.main-header .logo:hover {
    transform: scale(1.05);
}

.main-header .navbar-nav {
    gap: 10px;
}

.main-header .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.main-header .nav-link:hover {
    background-color: rgba(233, 30, 99, 0.8);
    color: #ffffff !important;
}

.main-header .nav-link.active {
    background-color: #e91e63;
    color: #ffffff !important;
}

/* ===== Responsive Styles ===== */
@media (max-width: 991px) {
    .top-bar {
        font-size: 12px;
        padding: 5px 0;
    }
    
    .top-bar .phone-numbers {
        display: block;
        margin-top: 5px;
    }
    
    .main-header .logo {
        height: 50px;
    }
    
    .main-header .navbar-nav {
        padding: 10px 0;
        gap: 5px;
    }
    
    .main-header .nav-link {
        padding: 10px 15px !important;
    }
}

@media (max-width: 576px) {
    .top-bar .social-icon {
        width: 25px;
        height: 25px;
        font-size: 12px;
        margin: 0 3px;
    }
    
    .top-bar span:first-child {
        display: block;
        margin-bottom: 8px;
    }
    
    .main-header .logo {
        height: 40px;
    }
}

/* ===== Hero Carousel ===== */
.hero-carousel {
    position: relative;
    width: 100%;
}

.hero-carousel .carousel {
    width: 100%;
}

.hero-carousel .carousel-inner {
    width: 100%;
}

.hero-carousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

.hero-carousel .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Carousel Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(233, 30, 99, 0.7);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-control-prev {
    left: 20px;
}

.hero-carousel .carousel-control-next {
    right: 20px;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    opacity: 1;
    background-color: rgba(233, 30, 99, 0.9);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Carousel Indicators */
.hero-carousel .carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
    background-color: #e91e63;
    width: 14px;
    height: 14px;
}

/* Mobile Carousel Adjustments */
@media (max-width: 768px) {
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-carousel .carousel-control-prev {
        left: 10px;
    }
    
    .hero-carousel .carousel-control-next {
        right: 10px;
    }
    
    .hero-carousel .carousel-control-prev-icon,
    .hero-carousel .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-carousel .carousel-indicators {
        bottom: 10px;
    }
    
    .hero-carousel .carousel-indicators button {
        width: 8px;
        height: 8px;
    }
    
    .hero-carousel .carousel-indicators button.active {
        width: 10px;
        height: 10px;
    }
}

/* ===== Action Buttons Section ===== */
.action-buttons-section {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    border: 2px solid #666666;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.action-btn i {
    font-size: 24px;
}

.action-btn-phone {
    color: #666666;
    border-color: #666666;
}

.action-btn-phone:hover {
    background-color: #666666;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 102, 102, 0.3);
}

.action-btn-whatsapp {
    color: #25D366;
    border-color: #25D366;
}

.action-btn-whatsapp:hover {
    background-color: #25D366;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.action-btn-location {
    color: #666666;
    border-color: #666666;
}

.action-btn-location:hover {
    background-color: #666666;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 102, 102, 0.3);
}

/* ===== Services Section ===== */
.services-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-card {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 40px;
    color: #666666;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #e91e63;
}

.service-card:hover .service-icon i {
    color: #ffffff;
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .action-buttons-section {
        padding: 30px 0;
    }
    
    .action-btn {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .action-btn i {
        font-size: 20px;
    }
    
    .services-section {
        padding: 40px 0;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 30px;
    }
    
    .service-card h3 {
        font-size: 14px;
    }
}

/* ===== About Section ===== */
.about-section {
    background-color: #666666;
    color: #ffffff;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
}

.section-title-divider {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 20px 0;
}

.section-title-divider::before,
.section-title-divider::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background-color: #ff0a67;
}

.section-title-divider::before {
    top: 0;
}

.section-title-divider::after {
    bottom: 0;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ffffff;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content strong {
    font-weight: 700;
}

/* Responsive About Section */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .about-content p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* ===== Partners Section ===== */
.partners-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.partners-section .section-title {
    color: #333333 !important;
}

.partner-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.partner-logo {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
}

/* Responsive Partners Section */
@media (max-width: 768px) {
    .partners-section {
        padding: 50px 0;
    }
    
    .partner-card {
        padding: 20px 15px;
        min-height: 120px;
    }
    
    .partner-logo {
        max-height: 60px;
    }
}

/* ===== Plans Types Section ===== */
.plans-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.plans-section .section-title-divider {
    margin-bottom: 20px;
}

.plans-intro {
    text-align: center;
    font-size: 18px;
    color: #333333;
    margin-bottom: 50px;
}

.plan-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.plan-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.plan-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.plan-card:hover .plan-image img {
    transform: scale(1.05);
}

.plan-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.plan-card-scroll .plan-content {
    max-height: 300px;
    overflow-y: scroll;
}

.plan-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.plan-content p {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

/* Scrollbar styling */
.plan-card-scroll .plan-content::-webkit-scrollbar {
    width: 8px;
}

.plan-card-scroll .plan-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.plan-card-scroll .plan-content::-webkit-scrollbar-thumb {
    background: #e91e63;
    border-radius: 10px;
}

.plan-card-scroll .plan-content::-webkit-scrollbar-thumb:hover {
    background: #ff0a67;
}

/* Firefox scrollbar */
.plan-card-scroll .plan-content {
    scrollbar-color: #e91e63 #f1f1f1;
    scrollbar-width: thin;
}

/* Responsive Plans Section */
@media (max-width: 768px) {
    .plans-section {
        padding: 50px 0;
    }
    
    .plans-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .plan-image {
        height: 200px;
    }
    
    .plan-content {
        padding: 20px;
    }
    
    .plan-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .plan-content p {
        font-size: 13px;
    }
}

/* ===== Contact Section ===== */
.contact-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.contact-section .section-title {
    color: #333333 !important;
}

.contact-intro {
    text-align: center;
    font-size: 16px;
    color: #666666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background-color: #ffffff;
    text-align: center;
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff0f6;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 36px;
    color: #ff0a67;
}

.contact-card:hover .contact-icon {
    background-color: #ff0a67;
}

.contact-card:hover .contact-icon i {
    color: #ffffff;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.contact-card p a {
    color: #ff0a67;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-card p a:hover {
    color: #e91e63;
    text-decoration: underline;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-intro {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 28px;
    }
    
    .contact-card h3 {
        font-size: 16px;
    }
    
    .contact-card p {
        font-size: 13px;
    }
}

/* ===== Footer ===== */
.footer {
    background-color: #666666;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px;
}

.footer-logo {
    text-align: left;
}

.footer-brand-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 13px;
    color: #dddddd;
    margin: 0;
}

.footer-info {
    text-align: center;
}

.footer-address {
    margin-bottom: 20px;
}

.footer-address p {
    font-size: 13px;
    margin: 8px 0;
    line-height: 1.6;
}

.footer-address a {
    color: #ff0a67;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-address a:hover {
    text-decoration: underline;
}

.footer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
}

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: #ff0a67;
}

.footer-menu .divider {
    color: #aaaaaa;
}

.footer-image {
    text-align: right;
}

.footer-side-image {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background-color: #ff0a67;
    transform: scale(1.1);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-section {
        padding: 20px 15px;
        text-align: center !important;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-brand-logo {
        height: 60px;
    }
    
    .footer-address p {
        font-size: 12px;
    }
    
    .footer-menu {
        font-size: 11px;
        gap: 5px;
    }
    
    .footer-image {
        text-align: center;
    }
    
    .footer-side-image {
        height: 100px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* ===== Quote Request Section ===== */
.quote-section {
    background-color: #666666;
    padding: 60px 0;
    margin: 60px 0;
}

.quote-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.quote-text {
    flex: 1;
}

.quote-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.quote-text p {
    font-size: 16px;
    color: #dddddd;
    margin: 0;
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: #00ff00;
    color: #000000;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quote-btn:hover {
    background-color: #00dd00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 0, 0.3);
    color: #000000;
}

.quote-btn i {
    font-size: 20px;
}

/* Responsive Quote Section */
@media (max-width: 768px) {
    .quote-section {
        padding: 40px 0;
        margin: 40px 0;
    }
    
    .quote-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .quote-text {
        text-align: center;
    }
    
    .quote-text h2 {
        font-size: 26px;
    }
    
    .quote-text p {
        font-size: 14px;
    }
    
    .quote-btn {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

/* ===== Lead Form Section ===== */
.lead-form-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.lead-form-section .section-title {
    color: #333333 !important;
}

.form-intro {
    text-align: center;
    font-size: 16px;
    color: #666666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lead-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e91e63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

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

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

.form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 24px;
    background-color: #e91e63;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.form-btn:hover {
    background-color: #ff0a67;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.form-btn i {
    font-size: 18px;
}

/* Responsive Form */
@media (max-width: 768px) {
    .lead-form-section {
        padding: 50px 0;
    }
    
    .form-intro {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .lead-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background-color: #20ba61;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
    animation: none;
}

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

/* Responsive Floating Button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}