/* PLATOS Cyber Security - Sections CSS */

/* ========================================
   About Section
======================================== */
.about-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.about-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Company Stats */
.company-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 24px;
}

.stat-content h4 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* About Visual */
.about-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-shield {
    width: 100%;
    height: 100%;
    max-width: 500px;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(8, 180, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    animation: float 6s ease-in-out infinite;
}

.float-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.float-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

/* MVV Section */
.mvv-section {
    margin-top: 80px;
}

.mvv-card {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 15px;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(8, 180, 140, 0.15);
    border-color: var(--primary-color);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--secondary-color);
}

.mvv-card h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.mvv-card p {
    color: var(--text-light);
}

/* Policy Section */
.policy-section {
    margin-top: 60px;
}

.policy-card {
    background: #ffffff;
    border: 1px solid rgba(8, 180, 140, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(8, 180, 140, 0.05) 0%, transparent 70%);
    animation: rotate-slow 30s linear infinite;
}

.policy-title {
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.policy-title i {
    color: var(--primary-color);
}

.policy-content {
    position: relative;
    z-index: 1;
}

.policy-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    color: var(--primary-color);
    font-weight: 600;
}

.badge-item i {
    font-size: 18px;
}

/* ========================================
   Solutions Section
======================================== */
.solutions-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch;
}

/* Solution Card with Flip Effect */
.solution-card {
    height: 400px;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.solution-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.card-front {
    background: #ffffff;
    border: 2px solid #f0f0f0;
}

.card-back {
    transform: rotateY(180deg);
    color: #ffffff;
}

/* Solution Icon */
.solution-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.solution-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    animation: rotate-slow 20s linear infinite;
}

.solution-icon i {
    position: relative;
    z-index: 1;
}

.solution-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.solution-description {
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

.solution-footer {
    margin-top: 20px;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.learn-more:hover {
    gap: 12px;
}

/* Card Back Styles */
.card-back h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: var(--secondary-color);
    font-size: 14px;
}

.btn-light {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Custom Solutions Card */
.additional-solutions {
    margin-top: 60px;
}

.custom-solutions-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.custom-solutions-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(8, 180, 140, 0.1) 0%, transparent 70%);
    animation: rotate-slow 30s linear infinite;
}

.custom-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--secondary-color);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.custom-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.custom-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.custom-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Background Animation */
.solutions-bg-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    pointer-events: none;
    opacity: 0.5;
}

.solutions-bg-animation svg {
    width: 100%;
    height: 100%;
}

/* ========================================
   Services Section
======================================== */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

/* Timeline */
.services-timeline {
    position: relative;
    padding: 40px 0;
}

.services-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 40px;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left::after {
    right: -10px;
}

.timeline-item.right::after {
    left: -10px;
}

/* Service Number */
.service-number {
    position: absolute;
    top: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(8, 180, 140, 0.1);
    z-index: 0;
}

.timeline-item.left .service-number {
    right: 60px;
}

.timeline-item.right .service-number {
    left: 60px;
}

/* Service Card */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

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

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.timeline-item.right .service-header {
    flex-direction: row;
}

.timeline-item.left .service-header {
    flex-direction: row-reverse;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.service-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service Features */
.service-features {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.service-features h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.timeline-item.left .service-features li {
    justify-content: flex-end;
}

.service-features i {
    color: var(--primary-color);
    font-size: 14px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* Service Process */
.service-process {
    margin-top: 100px;
    text-align: center;
}

.process-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: rgba(8, 180, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary-color);
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--gradient-1);
    color: var(--secondary-color);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.process-arrow {
    font-size: 30px;
    color: var(--primary-color);
    opacity: 0.3;
}

/* Services CTA */
.services-cta {
    margin-top: 80px;
}

.cta-content {
    background: var(--gradient-1);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate-slow 30s linear infinite;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* ========================================
   Partners Section
======================================== */
.partners-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Partner Filter */
.partner-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: var(--secondary-color);
    border: 2px solid transparent;
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.partner-item {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s ease;
}

.partner-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
}

.partner-card {
    display: block;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    height: 200px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid #f5f5f5;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(8, 180, 140, 0.15);
    border-color: var(--primary-color);
}

.partner-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.partner-logo {
    max-width: 180px;
    max-height: 80px;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition);
}

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

/* Partner Overlay */
.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 180, 140, 0.95) 0%, rgba(6, 160, 124, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.partner-card:hover .partner-overlay {
    opacity: 1;
    transform: translateY(0);
}

.partner-name {
    color: var(--text-white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.partner-link {
    color: var(--text-white);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

/* Partner Benefits */
.partner-benefits {
    margin-bottom: 60px;
}

.benefits-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(8, 180, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--primary-color);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary-color);
    color: var(--text-white);
    transform: scale(1.1);
}

.benefit-card h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Partner CTA */
.partner-cta {
    text-align: center;
}

.partner-cta .cta-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.partner-cta .cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate-slow 30s linear infinite;
}

.cta-icon {
    font-size: 60px;
    opacity: 0.9;
}

.cta-text {
    flex: 1;
    text-align: left;
}

.cta-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.cta-text p {
    opacity: 0.9;
    margin-bottom: 0;
}

.partner-cta .btn {
    flex-shrink: 0;
    background: var(--secondary-color);
    color: var(--primary-color);
}

.partner-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Background Decoration */
.partners-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    pointer-events: none;
}

/* ========================================
   Contact Section
======================================== */
.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.contact-content {
    margin-bottom: 60px;
}

/* Contact Info */
.contact-info {
    padding-right: 40px;
}

.info-title {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(8, 180, 140, 0.1);
    border-color: var(--primary-color);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--text-white);
}

.info-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-content p {
    color: var(--text-light);
    margin: 0;
}

.info-content a {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--primary-dark);
}

/* Contact Social */
.contact-social {
    margin-top: 40px;
}

.contact-social h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: var(--transition);
    background: var(--secondary-color);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(8, 180, 140, 0.1);
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 42px;
    color: var(--text-light);
    pointer-events: none;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.form-row .col-md-6 {
    flex: 1;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.form-info {
    color: var(--text-light);
    font-size: 0.9rem;
}

.form-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Form Messages */
.form-messages {
    margin-top: 20px;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Map Section */
.map-wrapper {
    margin-top: 60px;
}

.map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.map-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--secondary-color);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow-lg);
    max-width: 300px;
}

.map-overlay-card h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-overlay-card h4 i {
    color: var(--primary-color);
}

.map-overlay-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Background Pattern */
.contact-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    pointer-events: none;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 992px) {
    .timeline-item {
        width: 100%;
        padding-left: 80px;
        text-align: left;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .services-timeline::before {
        left: 30px;
    }
    
    .timeline-item::after {
        left: 20px;
    }
    
    .service-number {
        left: 90px !important;
        right: auto !important;
    }
    
    .service-header {
        flex-direction: row !important;
    }
    
    .service-features li {
        justify-content: flex-start !important;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .partner-cta .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-row .col-md-6 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .company-stats {
        flex-direction: column;
    }
    
    .stat-box {
        width: 100%;
    }
    
    .about-visual {
        height: 400px;
        margin-top: 40px;
    }
    
    .policy-card {
        padding: 30px 20px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-solutions-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .partner-card {
        height: 150px;
        padding: 20px;
    }
    
    .partner-logo {
        max-width: 120px;
        max-height: 60px;
    }
    
    .cta-content {
        padding: 40px 30px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .map-overlay-card {
        position: relative;
        left: 0;
        bottom: 0;
        max-width: 100%;
        margin: 20px;
    }
}

/* Animation */
@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
