/* styles.css */
:root {
    --primary-color: #0056b3;
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --heading-color: #222;
    --border-color: #dee2e6;
    --success-color: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

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

/* Header */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.call-btn, .whatsapp-btn {
    background-color: var(--success-color);
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-block;
}

.call-btn:hover, .whatsapp-btn:hover {
    background-color: #218838;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs li::after {
    content: " > ";
    margin: 0 10px;
    color: #666;
}

.breadcrumbs li:last-child::after {
    content: "";
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background-color: #fff;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.hero-content p {
    font-size: 1.1rem;
    text-align: justify;
}

h2 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

/* Sections */
section {
    padding: 50px 0;
}

section:nth-child(even) {
    background-color: #fff;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: var(--secondary-color);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Reasons */
.reasons-section ul {
    list-style-type: none;
}

.reasons-section li {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.reasons-section li::before {
    content: "✓";
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Map Section */
.map-container {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nap-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.mesh-links {
    margin-top: 20px;
    font-size: 0.95rem;
}

.mesh-links a {
    color: var(--primary-color);
    text-decoration: none;
    margin-right: 10px;
}

.mesh-links a:hover {
    text-decoration: underline;
}

/* SEO Footer (Mesh Linking) */
.internal-linking-section {
    background-color: #f1f5f9;
}
.internal-linking-section a:hover {
    text-decoration: underline !important;
}

/* Floating Contact Buttons */
.floating-contact-wrapper {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 1000;
    width: auto;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    animation: none;
}

.floating-btn.phone-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.floating-btn.wa-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    animation-delay: 1s;
}

.floating-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

@media (max-width: 768px) {
    .floating-contact-wrapper {
        bottom: 15px;
        width: 95%;
        gap: 10px;
        justify-content: space-between;
    }
    .floating-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 15px;
        font-size: 1rem;
    }
    .floating-btn span {
        display: inline-block;
    }
}

/* Footer */
.site-footer {
    background-color: var(--heading-color);
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
