/* Home Page Styles */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #003a66 0%, #002a4d 100%);
    overflow: hidden;
    margin-bottom: 0;
    contain: layout;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heroPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23heroPattern)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7), 0 0 20px rgba(255,255,255,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ffffff;
    opacity: 0.95;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6), 0 0 15px rgba(255,255,255,0.2);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-btn-whatsapp {
    background: linear-gradient(135deg, #e12355 0%, #c41e4a 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(225, 35, 85, 0.4);
}

.hero-btn-contact {
    background: linear-gradient(135deg, #004d7a 0%, #003a66 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 58, 102, 0.4);
}

/* Carousel Overrides */
#carouselId {
    contain: layout;
}

.carousel-item {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 58, 102, 0.85) 0%, rgba(0, 42, 77, 0.85) 100%);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    pointer-events: none;
}

.carousel-caption * {
    pointer-events: auto;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1001;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 58, 102, 0.9) 0%, rgba(225, 35, 85, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-card-overlay {
    opacity: 1;
}

.service-card-content {
    padding: 30px;
    text-align: center;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-card-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-card-btn {
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.4);
    color: white;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    z-index: 1001;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.features-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.05), transparent);
    transform: rotate(15deg);
    pointer-events: none;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 58, 102, 0.3);
    animation: float 3s ease-in-out infinite;
}

/* Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Enhanced Feature Cards */
.feature-card-enhanced {
    position: relative;
    height: 100%;
    perspective: 1000px;
}

.feature-card-inner {
    background: white;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(30, 58, 138, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.02) 0%, rgba(5, 150, 105, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-enhanced:hover .feature-card-inner::before {
    opacity: 1;
}

.feature-card-enhanced:hover .feature-card-inner {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(30, 58, 138, 0.2);
    border-color: #1e3a8a;
}

/* Enhanced Feature Icons */
.feature-icon-enhanced {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 58, 102, 0.3);
}

.icon-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.feature-card-enhanced:hover .icon-bg::before {
    animation: shine 0.8s ease-in-out;
}

.feature-card-enhanced:hover .icon-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 58, 102, 0.4);
}

.icon-bg i {
    font-size: 2.5rem;
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.feature-card-enhanced:hover .icon-bg i {
    transform: scale(1.1);
}

/* Icon Pulse Effect */
.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(30, 58, 138, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s infinite;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

/* Feature Content */
.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #003a66;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    position: relative;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-enhanced:hover .feature-title::after {
    opacity: 1;
}

.feature-card-enhanced:hover .feature-title {
    color: #e12355;
}

.feature-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
    font-size: 1rem;
}

/* Feature Stats */
.feature-stats {
    margin-top: auto;
}

.stat-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 58, 102, 0.1) 0%, rgba(225, 35, 85, 0.1) 100%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #003a66;
    transition: all 0.3s ease;
}

.feature-card-enhanced:hover .stat-item {
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    color: white;
    transform: translateY(-2px);
}

/* Hover Effect */
.feature-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-card-enhanced:hover .feature-hover-effect {
    opacity: 1;
}

.feature-card-enhanced:hover .icon-pulse {
    opacity: 0;
    animation: none;
}

/* Trust Indicators */
.trust-indicators {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(30, 58, 138, 0.1);
    position: relative;
}

.trust-indicators::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    border-radius: 2px;
}

.trust-item {
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(5deg);
}

.trust-icon i {
    font-size: 1.5rem;
    color: white;
}

.trust-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #003a66;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.trust-item:hover .trust-title {
    color: #e12355;
}

.trust-desc {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.03);
        opacity: 0.2;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.06);
        opacity: 0;
    }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    z-index: 1001;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="aboutPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23aboutPattern)"/></svg>');
    pointer-events: none;
}

/* Enhanced About Images */
.about-images-enhanced {
    position: relative;
    height: 100%;
    min-height: 500px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.image-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    justify-content: space-between;
}

.image-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.1);
    flex: 1;
    min-height: 0;
}

.image-item-large {
    flex: 1.2;
}

.image-item-small {
    flex: 0.8;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(1.15) contrast(1.25) saturate(1.15) sharpness(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.image-item:hover .image-wrapper img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.3) saturate(1.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 58, 102, 0.8) 0%, rgba(225, 35, 85, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-item:hover .image-overlay {
    opacity: 1;
}

.image-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Additional Image Quality Improvements */
.image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.image-item:hover .image-wrapper::before {
    opacity: 1;
}


.floating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
}

.badge-content {
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 58, 102, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.badge-content i {
    font-size: 1rem;
}

/* Enhanced About Content */
.about-content-enhanced {
    padding-left: 40px;
    position: relative;
}

.about-title-enhanced {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #003a66;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 25px;
}

/* About Stats Grid */
.about-stats-grid {
    margin: 40px 0;
}

.stat-item-enhanced {
    display: flex;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 58, 102, 0.1);
}

.stat-item-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 58, 102, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003a66;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Benefits Enhanced */
.benefits-enhanced {
    margin: 40px 0;
}

.benefits-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #003a66;
    margin-bottom: 25px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 58, 102, 0.1);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 58, 102, 0.15);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.2rem;
    color: white;
}

.benefit-content h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #003a66;
    margin-bottom: 5px;
}

.benefit-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0;
}

/* Contact Info Enhanced */
.contact-info-enhanced {
    margin-top: 40px;
}

.contact-card {
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 58, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23contactPattern)"/></svg>');
    pointer-events: none;
}

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.contact-header i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.contact-header span {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-phone {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.contact-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-call-small,
.btn-whatsapp-small {
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-call-small {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-call-small:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

.btn-whatsapp-small {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-whatsapp-small:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    z-index: 1001;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contactPattern)"/></svg>');
    pointer-events: none;
}

/* Enhanced Office Card */
.office-card-enhanced {
    position: relative;
    height: 100%;
    perspective: 1000px;
}

.office-card-inner {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 58, 102, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.office-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 58, 102, 0.02) 0%, rgba(225, 35, 85, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.office-card-enhanced:hover .office-card-inner::before {
    opacity: 1;
}

.office-card-enhanced:hover .office-card-inner {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(0, 58, 102, 0.15);
    border-color: #003a66;
}

/* Office Header */
.office-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.office-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 58, 102, 0.3);
}

.office-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.office-card-enhanced:hover .office-icon::before {
    animation: shine 0.8s ease-in-out;
}

.office-card-enhanced:hover .office-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 58, 102, 0.4);
}

.office-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    position: relative;
}

.office-title {
    font-size: 2rem;
    font-weight: 700;
    color: #003a66;
    margin-bottom: 0;
    position: relative;
}

.office-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    border-radius: 2px;
}

/* Office Content */
.office-content {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 58, 102, 0.05) 0%, rgba(225, 35, 85, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #003a66 0%, #e12355 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-details {
    flex: 1;
    z-index: 2;
    position: relative;
}

.office-phone {
    font-size: 1.4rem;
    font-weight: 700;
    color: #003a66;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.office-phone:hover {
    color: #e12355;
}

.office-email {
    font-size: 1.1rem;
    color: #003a66;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.office-email:hover {
    color: #e12355;
}

.office-address {
    font-size: 1.1rem;
    color: #003a66;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-label {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

/* Office Actions */
.office-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #e12355 0%, #c41e4a 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 35, 85, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 35, 85, 0.4);
    color: white;
}

.btn-call {
    background: linear-gradient(135deg, #003a66 0%, #002a4d 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 58, 102, 0.3);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 58, 102, 0.4);
    color: white;
}

/* Hover Effect */
.office-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 58, 102, 0.05) 0%, rgba(225, 35, 85, 0.05) 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.office-card-enhanced:hover .office-hover-effect {
    opacity: 1;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #1e3a8a;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-main-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 80px 0;
    }
    
    .services-section,
    .features-section,
    .about-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-main-title {
        font-size: 1.75rem;
    }
}

/* Bulk Scrap CTA Section */
.bulk-scrap-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    z-index: 1001;
}

.bulk-scrap-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="bulkPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23bulkPattern)"/></svg>');
    pointer-events: none;
}

.bulk-cta-content {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 58, 102, 0.1);
    border: 1px solid rgba(0, 58, 102, 0.1);
}

.bulk-cta-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #003a66 0%, #002a4d 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 58, 102, 0.3);
}

.bulk-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003a66;
    margin-bottom: 25px;
    line-height: 1.3;
}

.text-highlight {
    background: linear-gradient(135deg, #e12355 0%, #c41e4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bulk-cta-description {
    font-size: 1.2rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 500;
}

.bulk-requirements {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.requirement-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #374151;
    font-weight: 500;
}

.requirement-item i {
    font-size: 18px;
}

.requirement-item .text-danger {
    color: #dc2626 !important;
}

.requirement-item .text-success {
    color: #16a34a !important;
}

.bulk-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-whatsapp-bulk {
    background: linear-gradient(135deg, #e12355 0%, #c41e4a 100%);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(225, 35, 85, 0.4);
    display: inline-flex;
    align-items: center;
}

.btn-whatsapp-bulk:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(225, 35, 85, 0.5);
    color: #ffffff;
}

.btn-call-bulk {
    background: linear-gradient(135deg, #003a66 0%, #002a4d 100%);
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 58, 102, 0.4);
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-call-bulk:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 58, 102, 0.5);
    color: #ffffff;
}

.bulk-note {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 191, 36, 0.1);
    color: #92400e;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    border-left: 4px solid #f59e0b;
}

.bulk-note i {
    font-size: 16px;
}

/* Responsive Design for Bulk CTA */
@media (max-width: 768px) {
    .bulk-scrap-cta-section {
        padding: 60px 0;
    }
    
    .bulk-cta-content {
        padding: 40px 25px;
    }
    
    .bulk-cta-title {
        font-size: 2rem;
    }
    
    .bulk-requirements {
        flex-direction: column;
        gap: 20px;
    }
    
    .bulk-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .bulk-note {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .bulk-cta-content {
        padding: 30px 20px;
    }
    
    .bulk-cta-title {
        font-size: 1.75rem;
    }
    
    .bulk-cta-description {
        font-size: 1.1rem;
    }
}

/* Office Card Landscape Layout */
.office-card-landscape .office-card-inner {
    display: flex;
    align-items: center;
    min-height: 200px;
}

.office-left-section {
    flex: 2;
    padding-right: 40px;
}

.office-right-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 40px;
    border-left: 2px solid rgba(0, 58, 102, 0.1);
}

.office-card-landscape .office-header {
    margin-bottom: 30px;
}

.office-card-landscape .office-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.office-card-landscape .office-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.office-card-landscape .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 25px;
    font-size: 1rem;
}

/* Responsive Design for Office Card Landscape */
@media (max-width: 768px) {
    .office-card-landscape .office-card-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .office-left-section {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .office-right-section {
        padding-left: 0;
        border-left: none;
        border-top: 2px solid rgba(0, 58, 102, 0.1);
        padding-top: 30px;
    }
    
    .office-card-landscape .office-actions {
        flex-direction: row;
        gap: 15px;
    }
    
    .office-card-landscape .btn {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .office-card-landscape .office-actions {
        flex-direction: column;
    }
    
    .office-card-landscape .btn {
        width: 100%;
    }
}