/*
  File: style.css
  Description: Main stylesheet for Midas Networks website.
*/

/* --- Global Variables & Resets --- */
:root {
    --primary-color: #0056b3; /* Deep Blue */
    --secondary-color: #f0a500; /* Golden Yellow */
    --dark-color: #0a192f;
    --light-color: #f4f7f6;
    --white-color: #ffffff;
    --text-color: #333;
    --light-text-color: #666;
    --font-family-headings: 'Poppins', sans-serif;
    --font-family-body: 'Roboto', sans-serif;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    background-color: var(--white-color);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    font-weight: 600;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

p {
    margin-bottom: 1rem;
    color: var(--light-text-color);
}

img {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-text-color);
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white-color);
    margin-top: 5%;
}

.btn-primary:hover {
    background-color: var(--white-color);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-color);
    border-color: var(--dark-color);
}

.btn-secondary:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
    transform: translateY(-3px);
}

/* --- Animations --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Header & Navbar --- */
.navbar {
    background: var(--white-color);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar .logo span {
    color: var(--secondary-color);
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li a {
    color: var(--text-color);
    padding: 0.5rem 1rem;
    font-weight: 500;
    position: relative;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    background-size: cover;
    background-position: center;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 86, 179, 0.85), rgba(10, 25, 47, 0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white-color);
    margin-bottom: 1rem;
    margin-top: 15%;
    font-weight: 700;
    transition: opacity 0.3s ease;
    text-align: center;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    word-wrap: break-word;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    transition: opacity 0.3s ease;
    min-height: 3rem;
    text-align: center;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
}

/* Hero Navigation Buttons */
.hero-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: rgba(240, 165, 0, 0.9);
    border-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(240, 165, 0, 0.3);
}

.hero-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

/* --- Partners Section --- */
.partners {
    padding: 20 px 0;
    background: var(--white-color);
    border-top: 10px solid var(--light-color);
    border-bottom: 15px solid var(--light-color);
}

.partners-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.partners-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 5px auto 0;
    border-radius: 2px;
}

.partners-slider {
    overflow: hidden;
    width: 100%;
}

.partners-track {
    display: flex;
    animation: scroll-right 25s linear infinite;
}

.partner-logo {
    height: 60px;
    margin: 0 30px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* --- Features Section --- */
.features {
    background: var(--light-color);
}

.features-home {
    background: linear-gradient(rgba(244, 247, 246, 0.5), rgba(244, 247, 246, 0.5)), url('../images/6640353_23170.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.features-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.85) 0%, rgba(10, 25, 47, 0.85) 100%);
    z-index: 1;
}

.features-home .section-title,
.features-home .section-subtitle {
    position: relative;
    z-index: 2;
    color: var(--white-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.features-home .section-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.features-home .section-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 70px auto;
    line-height: 1.6;
    opacity: 0.95;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white-color);
    border-radius: 10px;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--secondary-color);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* --- Why Choose Us Section --- */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-us-content ul {
    list-style: none;
    margin-top: 2rem;
}
.why-us-content li {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}
.why-us-content li i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}
.why-us-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* --- Technology Showcase Section --- */
.tech-showcase {
    background: var(--white-color);
    padding: 100px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-item {
    background: var(--light-color);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 86, 179, 0.1);
}

/* New icon style for tech showcase */
.tech-icon {
    width: 92px;
    height: 92px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0,86,179,0.12), rgba(240,165,0,0.06));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 36px;
    color: var(--primary-color);
    border: 1px solid rgba(0, 86, 179, 0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

@media (max-width: 640px) {
    .tech-icon { width: 72px; height: 72px; font-size: 28px; }
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 86, 179, 0.1);
}

.tech-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tech-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tech-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* --- Stats Counter Section --- */
.stats-section {
    background: var(--dark-color);
    color: var(--white-color);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    font-weight: 700;
}
.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* --- Testimonials Section --- */
.testimonials {
    background: var(--light-color);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    position: relative;
}
.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.1;
}

/* Continuous Testimonial Slider */
.testimonial-slider {
    overflow: hidden;
    padding: 20px 0 10px;
}
.testimonial-track {
    display: flex;
    gap: 30px;
    align-items: stretch;
    animation: testimonial-scroll 28s linear infinite;
    /* Reverse animation so testimonials scroll left-to-right */
    animation-direction: reverse;
}
.testimonial-track:hover { animation-play-state: paused; }
.testimonial-track .testimonial-card { min-width: 320px; width: 320px; flex: 0 0 auto; }

@keyframes testimonial-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Ensure responsive behavior */
@media (max-width: 900px) {
    .testimonial-track { gap: 18px; }
    .testimonial-track .testimonial-card { min-width: 280px; width: 280px; }
}
@media (max-width: 480px) {
    .testimonial-track .testimonial-card { min-width: 240px; width: 240px; }
}
.review-header { align-items:flex-start }
.review-header .author-avatar { width:48px; height:48px; }
.review-header .author-meta h4 { font-size:0.95rem }
@media (max-width: 480px) {
    .review-header { flex-direction:column; align-items:flex-start; gap:8px }
    .review-header .author-left { gap:10px }
    .testimonial-meta { align-items:flex-start }
    .testimonial-meta .review-time{ margin-left:0; text-align:left }
}
.testimonial-text {
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
}
.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.author-info h4 {
    margin: 0;
}
.author-info span {
    color: var(--light-text-color);
    font-size: 0.9rem;
}

/* Google-like review header inside testimonial cards */
.review-header { display:flex; justify-content:space-between; gap:12px; align-items:center; margin-bottom:8px; }
.review-header .author-left { display:flex; gap:12px; align-items:center; }
.review-header .testimonial-meta { display:flex; flex-direction:column; align-items:flex-end; gap:6px; }
.review-header .testimonial-meta .review-time { font-size:0.85rem; color:#888; }
.review-header .author-avatar { width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; background: linear-gradient(135deg,#0056b3,#f0a500); color: #fff; font-weight:700; font-size:14px; }
.review-header .author-avatar .author-initials { font-size:14px; letter-spacing:0.6px; }
.review-header .author-meta h4 { margin:0; font-size:1rem; color:var(--dark-color); }
.review-header .author-meta .review-location { font-size:0.85rem; font-weight:500; color:var(--light-text-color); margin-left:6px; }
.review-rating { display:flex; gap:6px; align-items:center; margin-top:4px; }
.review-rating i { color:#f6b000; font-size:14px; }
.review-date { font-size:0.85rem; color:#888; margin-left:6px; }
.review-source { font-size:0.85rem; font-weight:600; color: #4285f4; margin-left:6px; }

.testimonial-text { font-size: 1rem; color: var(--text-color); line-height: 1.6; }

/* --- FAQ Section --- */
.faq-item {
    background: var(--white-color);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}
.faq-answer p {
    padding: 0 20px 20px 20px;
    margin: 0;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust as needed */
}

/* --- CTA Section --- */
.cta-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
}
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.8);
}
.cta-content {
    position: relative;
    z-index: 2;
}
.cta-section h2 {
    font-size: 2.5rem;
    color: var(--white-color);
    margin-bottom: 1rem;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* --- Page Header --- */
.page-header {
    padding: 150px 0 80px 0;
    background: var(--dark-color);
    color: var(--white-color);
    text-align: center;
}
.page-header h1 {
    color: var(--white-color);
    font-size: 3rem;
}

/* --- Plans Page --- */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: center;
}
.plan-card {
    background: var(--white-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}
.plan-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--secondary-color);
    position: relative;
}
.plan-card:hover {
     transform: translateY(-10px) scale(1.02);
     box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Comparison Table Styling for Plans Page */
.comparison-table-container { display: flex; justify-content: center; }
.comparison-table {
    width: 100%;
    max-width: 1100px;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    background: var(--white-color);
}
.comparison-table thead th {
    background: var(--primary-color);
    color: #fff;
    padding: 16px 18px;
    text-align: left;
    font-weight: 700;
}
.comparison-table th, .comparison-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    vertical-align: middle;
}
.comparison-table tbody tr:nth-child(odd) { background: #fafafa; }
.comparison-table tbody tr:hover { background: #fffbe6; }
.comparison-table td:first-child { font-weight: 600; color: var(--dark-color); }
.comparison-table td:nth-child(2), .comparison-table td:nth-child(3), .comparison-table td:nth-child(4){ font-weight:700; color:var(--primary-color); }

/* Highlight a 'best value' - can be toggled by adding .best-value on a <tr> */
.comparison-table tr.best-value { background: linear-gradient(90deg, rgba(240,165,0,0.06), rgba(0,86,179,0.02)); }
.comparison-table tr.best-value td { color: var(--dark-color); }
.comparison-table tr.best-value td:nth-child(2),
.comparison-table tr.best-value td:nth-child(3),
.comparison-table tr.best-value td:nth-child(4) { color: #b35d00; }

@media (max-width: 760px) {
    .comparison-table { box-shadow: none; }
    .comparison-table thead { display: none; }
    .comparison-table, .comparison-table tbody, .comparison-table tr, .comparison-table td { display: block; width: 100%; }
    .comparison-table tr { margin-bottom: 12px; border-radius: 8px; border: 1px solid #eee; padding: 12px; }
    .comparison-table td { padding: 8px 12px; text-align: right; }
    .comparison-table td::before { content: attr(data-label); float: left; font-weight: 700; color: var(--text-color); }
}
.plan-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}
.plan-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 20px 0;
}
.plan-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
}
.plan-features {
    list-style: none;
    margin-bottom: 30px;
}
.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.plan-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- Blog Page --- */
.blog-page-section {
    background: var(--light-color);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.blog-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-meta {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 10px;
}
.blog-card-title a {
    font-size: 1.25rem;
    color: var(--dark-color);
    font-weight: 600;
}
.blog-card-excerpt {
    margin: 15px 0;
    flex-grow: 1;
}
.read-more-link {
    font-weight: 600;
    color: var(--primary-color);
}

/* --- Single Post Page --- */
.single-post .featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}
.post-meta {
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}
.post-content {
    max-width: 800px;
    margin: 0 auto;
}
.post-content h2, .post-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
}
.post-content ul, .post-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}
.post-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.like-button {
    background: none;
    border: 2px solid #ddd;
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.like-button i {
    margin-right: 8px;
    color: #ccc;
    transition: all 0.3s ease;
}
.like-button.liked i {
    color: #e2264d;
    transform: scale(1.2);
}
.like-button:hover {
    border-color: var(--primary-color);
}

/* --- Comments Section --- */
.comments-section {
    max-width: 800px;
    margin: 60px auto 0 auto;
}
.comment-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family-body);
    margin-bottom: 10px;
}
.comment-form .btn {
    float: right;
}
.comment-box {
    margin-top: 30px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 8px;
}
.comment-box-note {
    text-align: center;
    color: var(--light-text-color);
}
.comment-box-note i {
    color: var(--primary-color);
}

/* --- Footer --- */
.footer {
    background: var(--dark-color);
    color: #ccc;
    padding-top: 60px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}
.footer-col h4 {
    color: var(--white-color);
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li a {
    color: #ccc;
    display: block;
    padding: 5px 0;
}
.footer-col ul li a:hover {
    color: var(--secondary-color);
}
.footer-col p i {
    color: var(--secondary-color);
    margin-right: 10px;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #2a3a4f;
}

.footer-branding {
    text-align: center;
}

.footer-branding p {
    margin: 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    color: #ccc;
}

.branding-separator {
    color: #666;
    font-weight: normal;
}

.branding-text {
    color: #888 !important;
    font-size: 0.85rem !important;
}

.branding-text i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.branding-text a {
    color: var(--secondary-color) !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.branding-text a:hover {
    color: var(--white-color) !important;
    text-decoration: underline;
}

/* --- Blog Preview Section --- */
.blog-preview {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.blog-card.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    margin-bottom: 10px;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--light-text-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.blog-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--light-text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* --- Call to Action Section --- */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white-color);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(240, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(240, 165, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--white-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-content .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--secondary-color);
    color: var(--dark-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 8px 25px rgba(240, 165, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-content .btn:hover {
    background: var(--white-color);
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(240, 165, 0, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Page Header Section --- */
.page-header {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    background-image: 
        linear-gradient(rgba(0, 86, 179, 0.8), rgba(10, 25, 47, 0.9)),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white-color);
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(240, 165, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(240, 165, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.page-header-subtitle {
    position: relative;
    z-index: 2;
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .why-us-image {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white-color);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
    }
    .nav-menu.active {
        max-height: 300px;
        border-top: 1px solid #eee;
    }
    .nav-menu ul {
        flex-direction: column;
        padding: 1rem 0;
    }
    .nav-menu ul li a {
        display: block;
        padding: 1rem 2rem;
    }
    .hero h1 { 
        font-size: 2.2rem; 
        line-height: 1.1;
    }
    .hero p { font-size: 1.1rem; }
    .hero-content {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .hero-prev {
        left: 15px;
    }
    
    .hero-next {
        right: 15px;
    }
    .section-title { font-size: 2.2rem; }
    .contact-grid { 
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-info h3,
    .contact-form-container h3 {
        font-size: 1.5rem;
    }
    
    .form-group-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-details-list li {
        padding: 15px 0;
    }
    
    .contact-details-list li i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .business-hours {
        padding: 20px;
    }
    
    .business-hours-header h3 {
        font-size: 1.8rem;
    }
    
    .business-hours-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .hours-card {
        padding: 25px 15px;
    }
    
    .hours-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .hours-card h4 {
        font-size: 1.1rem;
    }
    
    .hours-card p {
        font-size: 1rem;
    }
    
    /* CTA Section Mobile Styles */
    .cta-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-content .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    /* Page Header Mobile Styles */
    .page-header {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
        padding: 0 20px;
        margin-bottom: 15px;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .coverage-area {
        padding: 20px;
    }

    .coverage-area h3 {
        font-size: 1.2rem;
    }

    .expansion-stats {
        margin: 20px 0;
    }

    .expansion-stats h3 {
        font-size: 1.5rem;
    }
}

/* --- Coverage Page Styles --- */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.coverage-area {
    background: var(--white-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.coverage-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.coverage-area:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.coverage-area h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.coverage-area h3 i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.coverage-area ul {
    list-style: none;
    padding: 0;
}

.coverage-area li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coverage-area li:last-child {
    border-bottom: none;
}

.coverage-area li::before {
    content: '📍';
    font-size: 0.8rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* Expansion Stats */
.expansion-stats {
    margin: 30px 0;
}

.expansion-stats h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0;
}

.expansion-stats p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: var(--light-text-color);
}

/* --- Contact Page Styles --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    align-items: stretch;
}

.contact-info {
    background: var(--white-color);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info h3::before {
    content: '📞';
    font-size: 1.5rem;
}

.contact-info > p {
    color: var(--light-text-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-details-list li:last-child {
    border-bottom: none;
}

.contact-details-list li i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-details-list li div h4 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.contact-details-list li div p {
    margin: 0;
    font-size: 1rem;
}

.contact-details-list li div p a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details-list li div p a:hover {
    color: var(--secondary-color);
}

.business-hours {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05), rgba(240, 165, 0, 0.05));
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.business-hours h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.business-hours h4::before {
    content: '🕐';
    font-size: 1.1rem;
}

.business-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-hours ul li {
    padding: 8px 0;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.business-hours ul li:last-child {
    border-bottom: none;
}

.business-hours ul li span {
    font-weight: 600;
    color: var(--dark-color);
}

.contact-form-container {
    background: var(--white-color);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-container h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-container h3::before {
    content: '✉️';
    font-size: 1.5rem;
}

.contact-form-container form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-form-container .btn {
    margin-top: auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group-grid input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-family-body);
    background: var(--white-color);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group-grid input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-container .btn {
    width: 100%;
    margin-top: 10px;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: var(--white-color);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-container .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3);
}

.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container iframe {
    border-radius: 15px;
}

/* Business Hours Full Width Section */
.business-hours-full {
    max-width: 1000px;
    margin: 0 auto;
}

.business-hours-header {
    text-align: center;
    margin-bottom: 40px;
}

.business-hours-header h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.business-hours-header h3::before {
    content: '🕐';
    font-size: 2rem;
}

.business-hours-header p {
    color: var(--light-text-color);
    font-size: 1.1rem;
    margin: 0;
}

.business-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.hours-card {
    background: var(--white-color);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.hours-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.support-card {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.05), rgba(0, 86, 179, 0.05));
}

.support-card::before {
    background: var(--secondary-color);
}

.hours-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
}

.support-card .hours-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.hours-card h4 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.hours-card p {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.support-card p {
    color: var(--secondary-color);
}

/* --- Notification Styles --- */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 350px;
    max-width: 450px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateX(500px);
    transition: transform 0.3s ease;
    border-left: 5px solid;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left-color: #28a745;
}

.notification-error {
    border-left-color: #dc3545;
}

.notification-content {
    padding: 20px;
    position: relative;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.notification-success .notification-header i {
    color: #28a745;
}

.notification-error .notification-header i {
    color: #dc3545;
}

.notification-header strong {
    color: var(--dark-color);
    font-size: 1.1rem;
}

.notification p {
    margin: 0;
    color: var(--light-text-color);
    line-height: 1.5;
}

.notification-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--light-text-color);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
}
