/* General Section Styling */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.pricing-section {
    padding: 4rem 2rem;
}

/* Compact Pricing Grid */
.pricing-grid.compact {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-grid.compact .pricing-card {
    padding: 1.5rem;
}

.pricing-grid.compact .features {
    margin: 1rem 0;
}

.paypal-btn {
    background-color: #0070ba;
}
.paypal-btn:hover {
    background-color: #005ea6;
}
.paypal-btn i {
    margin-right: 10px;
}


/* Info Grid Layout */
.info-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.info-box {
    background-color: rgba(24, 26, 27, 0.7);
    border: 1px solid #333;
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    height: 100%; /* Make boxes equal height */
}

.info-box .section-title {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #444;
}

/* Location Map Section adjustments */
.ping-info-text {
    text-align: center;
    margin-top: 1.5rem;
    color: #fff;
    font-size: 25px;
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%; /* Aspect ratio for the map */
    background-image: url('/styles/img/map.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
}

.location-point {
    position: absolute;
    cursor: pointer;
}

.location-point .tooltip {
    position: absolute;
    bottom: 150%; /* Position above the dot */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    font-size: 0.9rem;
    z-index: 10;
    pointer-events: none; /* So it doesn't interfere with hover */
}

.location-point:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.pulsating-circle {
    width: 20px;
    height: 20px;
    background-color: #00aaff;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(0, 170, 255, 0.7);
    animation: pulse 2s infinite;
    transform: translate(-50%, -50%); /* Center the dot on the exact coordinates */
}

/* Position for Germany */
.location-point.germany {
    top: 35%;
    left: 49.5%;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 170, 255, 0.7);
    }
    70% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 20px rgba(0, 170, 255, 0);
    }
    100% {
        transform: translate(-50%, -50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 170, 255, 0);
    }
}

/* Location & Latency Section */
.location-section {
    padding: 4rem 2rem;
    background-color: rgba(26, 26, 26, 0.7);
    text-align: center;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-content .icon {
    font-size: 4rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.location-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-content p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.7;
}

/* Modern Contact Section adjustments */
/* Padding is now on the parent .info-grid-container */

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-form-wrapper .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px;
    background-color: #1e1e1e;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    transition: border-color 0.3s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: #007bff;
}

.contact-info-wrapper {
    background-color: rgba(18, 18, 18, 0.8);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #444;
}

.contact-info-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-info-wrapper p {
    margin-bottom: 1.5rem;
    color: #ccc;
    line-height: 1.7;
}

.contact-details {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-details li i {
    color: #007bff;
    font-size: 1.5rem;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.contact-details li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details li a:hover {
    color: #007bff;
}

.contact-info-wrapper h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
}

.contact-info-wrapper .social-icons a {
    color: #aaa;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-info-wrapper .social-icons a:hover {
    color: #007bff;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .info-grid-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
.main-footer {
    background-color: #121212;
    color: #aaa;
    padding: 3rem 2rem;
    border-top: 1px solid #333;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p,
.footer-column ul,
.footer-column li {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #007bff;
}

.footer-column i {
    margin-right: 10px;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}