/* ===== Pricing Section ===== */
.pricing-section {
    padding: 80px 0;
}

.unlimited-section {
    background: var(--light-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--white);
    border-radius: 10px;
    padding: 35px 25px;
    box-shadow: var(--shadow);
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.pricing-card.popular {
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-hover);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.pricing-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.pricing-amount {
    margin: 25px 0;
}

.pricing-amount .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.pricing-amount .currency {
    font-size: 1.2rem;
    color: #666;
    margin-left: 5px;
}

.pricing-validity {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    font-weight: 600;
}

.pricing-features {
    text-align: left;
    margin: 25px 0;
}

.pricing-features li {
    padding: 10px 0;
    color: #555;
    line-height: 1.6;
}

.pricing-note {
    margin-top: 50px;
    padding: 25px;
    background: #fff8e1;
    border-left: 4px solid var(--accent-orange);
    border-radius: 5px;
}

.pricing-note p {
    color: var(--text-gray);
    line-height: 1.8;
}

.pricing-note a {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ===== Unlimited Plans ===== */
.unlimited-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.unlimited-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.unlimited-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.unlimited-card.featured {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-hover);
}

.badge-recommended {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.unlimited-header {
    text-align: center;
    margin-bottom: 25px;
}

.unlimited-header h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.unlimited-subtitle {
    color: #666;
    font-size: 0.95rem;
}

.unlimited-speed {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
}

.unlimited-speed .speed-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    line-height: 1;
}

.unlimited-speed .speed-unit {
    font-size: 1.2rem;
    color: #666;
    font-weight: 600;
}

.unlimited-price {
    text-align: center;
    margin: 25px 0;
}

.unlimited-price .price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.unlimited-price .price-unit {
    font-size: 1rem;
    color: #666;
    display: block;
    margin-top: 5px;
}

.unlimited-features {
    margin: 30px 0;
    text-align: left;
}

.unlimited-features li {
    padding: 8px 0;
    color: #555;
    line-height: 1.6;
}

.usage-type {
    margin-top: 20px;
    padding: 15px;
    background: #e6f7ff;
    border-radius: 5px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.unlimited-advantages {
    margin-top: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.unlimited-advantages h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.advantage {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
}

.advantage strong {
    display: block;
    color: var(--dark-blue);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.advantage p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== Installation Pack ===== */
.installation-pack-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

.installation-pack {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: 15px;
    padding: 50px;
    box-shadow: var(--shadow-hover);
}

.pack-content h2 {
    color: var(--dark-blue);
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.pack-price-big {
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 10px;
}

.pack-price-big .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    display: block;
}

.pack-price-big .subtitle {
    font-size: 1rem;
    color: #666;
    margin-top: 5px;
}

.pack-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.pack-includes {
    margin: 25px 0;
}

.pack-includes li {
    padding: 10px 0;
    color: #555;
    line-height: 1.6;
}

.pack-cta {
    margin-top: 30px;
    text-align: center;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.pack-note {
    margin-top: 15px;
    color: #666;
    font-size: 0.95rem;
}

.pack-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
}

.faq-item h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.faq-item p {
    color: #555;
    line-height: 1.8;
}

/* ===== Installation Page ===== */
.installation-hero {
    padding: 80px 0;
    background: var(--light-gray);
}

.installation-hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.installation-hero-content h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.hero-price {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.hero-price .price-big {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
}

.hero-price .currency {
    font-size: 1.8rem;
    color: #666;
    margin-left: 10px;
}

.hero-price .price-subtitle {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    color: #666;
}

.pack-highlights {
    display: grid;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
}

.highlight-icon {
    font-size: 2rem;
}

.highlight-item strong {
    display: block;
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.highlight-item p {
    color: #666;
    font-size: 0.95rem;
}

.value-banner {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-orange), #ff6b00);
    color: var(--white);
    border-radius: 10px;
    text-align: center;
    font-size: 1.2rem;
}

.installation-hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

/* ===== Process Timeline ===== */
.process-section {
    padding: 80px 0;
}

.process-timeline {
    margin-top: 50px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 50px;
    bottom: 50px;
    width: 3px;
    background: var(--primary-blue);
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: var(--shadow);
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.timeline-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 700;
}

/* ===== Included Section ===== */
.included-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.included-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.included-card:hover {
    transform: translateY(-10px);
}

.included-card.highlight {
    border: 3px solid var(--accent-orange);
    background: linear-gradient(to bottom, var(--white), #fff8f0);
}

.included-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    filter: brightness(0) saturate(100%) invert(47%) sepia(93%) saturate(1726%) hue-rotate(167deg);
}

.included-card h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.included-card p {
    color: #555;
    line-height: 1.8;
}

/* ===== FAQ Accordion ===== */
.faq-accordion {
    max-width: 900px;
    margin: 50px auto 0;
}

.faq-accordion-item {
    background: var(--white);
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-blue);
}

.faq-accordion-item h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.faq-accordion-item p {
    color: #555;
    line-height: 1.9;
}

/* ===== Request Form ===== */
.request-form-section {
    padding: 80px 0;
}

.request-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.form-intro {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 40px;
    text-align: center;
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.form-benefits {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.installation-form {
    padding: 40px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-blue);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
}

.form-note {
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* ===== Quick Contact ===== */
.quick-contact {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.quick-contact h2 {
    color: var(--dark-blue);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.quick-contact p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-option {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    background: var(--primary-blue);
    color: var(--white);
}

.contact-icon {
    font-size: 3rem;
}

.contact-option strong {
    font-size: 1.2rem;
}

.contact-detail {
    font-size: 0.95rem;
    color: #666;
}

.contact-option:hover .contact-detail {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Contact Page ===== */
.contact-methods {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.method-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.method-card.highlight {
    border-color: #25D366;
    background: linear-gradient(to bottom, var(--white), #f0fff4);
}

.method-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.method-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.method-value {
    display: block;
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 15px 0;
}

.method-value:hover {
    color: var(--accent-orange);
}

.method-card p {
    color: #666;
    margin: 8px 0;
}

.method-note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--accent-orange);
}

/* ===== Contact Form Section ===== */
.contact-form-section {
    padding: 80px 0;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    padding: 50px;
}

.form-side h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-side > p {
    color: #666;
    margin-bottom: 35px;
    line-height: 1.8;
}

.form-message {
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
}

.form-message.success {
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

.form-message strong {
    display: block;
    margin-bottom: 8px;
}

/* ===== Info Side ===== */
.info-side {
    background: var(--light-gray);
    padding: 35px;
    border-radius: 10px;
}

.info-side h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.info-block:last-child {
    border-bottom: none;
}

.info-block h4 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.info-block p {
    color: #555;
    line-height: 1.8;
    margin: 8px 0;
}

.info-detail {
    font-size: 0.9rem;
    color: #777;
}

.response-times,
.payment-methods {
    list-style: none;
}

.response-times li,
.payment-methods li {
    padding: 8px 0;
    color: #555;
}

.highlight-info {
    background: #fff3cd;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
}

.urgent-btn {
    display: inline-block;
    margin: 15px 0;
    padding: 12px 25px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 5px;
    font-weight: 700;
}

.urgent-btn:hover {
    background: #e67e00;
}

/* ===== Map Section ===== */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info {
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.map-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.map-info p {
    font-size: 1.1rem;
    margin: 10px 0;
    opacity: 0.95;
}

.map-info .btn {
    margin-top: 25px;
}

/* ===== About Page ===== */
.about-story {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content h2 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.story-content .lead {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #444;
}

.story-content p {
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
}

/* ===== Mission Section ===== */
.mission-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
}

.mission-card.highlight {
    border: 3px solid var(--primary-blue);
    background: linear-gradient(to bottom, var(--white), #f0f8ff);
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.mission-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mission-card p {
    color: #555;
    line-height: 1.8;
}

/* ===== Stats Section ===== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
}

.stats-section .section-title {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ===== Team Section ===== */
.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 100%;
    height: 250px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    margin: 20px 20px 10px;
}

.member-role {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    padding: 0 25px 30px;
    color: #555;
    line-height: 1.8;
}

/* ===== Infrastructure Section ===== */
.infrastructure-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.infra-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.infra-text h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin: 30px 0 15px;
}

.infra-text h3:first-child {
    margin-top: 0;
}

.infra-text p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.infra-list {
    list-style: none;
    margin: 20px 0;
}

.infra-list li {
    padding: 10px 0;
    color: #555;
    line-height: 1.8;
}

.infra-features {
    display: grid;
    gap: 20px;
}

.feature-box {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-blue);
}

.feature-box h4 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Coverage Section ===== */
.coverage-section {
    padding: 80px 0;
}

.coverage-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.map-placeholder-about {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
}

.map-placeholder-about h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.map-placeholder-about p {
    font-size: 1.1rem;
    margin: 15px 0;
}

.coverage-list {
    list-style: none;
    margin: 25px 0;
    text-align: left;
    display: inline-block;
}

.coverage-list li {
    padding: 8px 0;
    font-size: 1.1rem;
}

.coverage-expansion h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.coverage-expansion p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.expansion-list {
    list-style: none;
    margin: 25px 0;
}

.expansion-list li {
    padding: 10px 0;
    color: #555;
    font-size: 1.05rem;
}

.expansion-note {
    margin-top: 30px;
    padding: 20px;
    background: #fff8e1;
    border-left: 4px solid var(--accent-orange);
    border-radius: 5px;
}

.expansion-note a {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ===== Commitments Section ===== */
.commitments-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.commitment-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-blue);
    transition: transform 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-5px);
}

.commitment-card h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.commitment-card p {
    color: #555;
    line-height: 1.8;
}

/* ===== Blog Page ===== */
.featured-article-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.featured-badge {
    background: var(--primary-blue);
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-date,
.article-category,
.article-views {
    font-size: 0.9rem;
    color: #666;
}

.article-category {
    color: var(--primary-blue);
    font-weight: 600;
}

.featured-content h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-excerpt {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ===== Blog Grid ===== */
.blog-grid-section {
    padding: 80px 0;
}

.blog-sidebar-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.blog-main .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content .article-meta {
    margin-bottom: 15px;
}

.blog-card-content h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-block;
}

.read-more:hover {
    color: var(--accent-orange);
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-link {
    padding: 10px 18px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    color: var(--text-gray);
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* ===== Sidebar ===== */
.blog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.sidebar-widget p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.highlight-widget {
    background: linear-gradient(135deg, #fff8e1, #ffe0b2);
    border-left: 4px solid var(--accent-orange);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    color: #555;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.category-list a:hover {
    background: var(--light-gray);
    color: var(--primary-blue);
}

.popular-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 12px;
    background: var(--light-gray);
    border-radius: 5px;
    transition: background 0.3s ease;
}

.popular-item:hover {
    background: #e0e0e0;
}

.popular-number {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.popular-title {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.cta-widget {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    text-align: center;
}

.cta-widget h3 {
    color: var(--white);
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Article Single Page ===== */
.breadcrumb {
    background: var(--light-gray);
    padding: 15px 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-blue);
}

.breadcrumb span {
    color: #666;
}

.article-single {
    padding: 60px 0;
}

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.article-header {
    margin-bottom: 30px;
}

.article-category {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.article-header h1 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-meta-full {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.meta-item {
    color: #666;
    font-size: 0.95rem;
}

.meta-item strong {
    color: var(--text-gray);
}

.article-featured-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}

.article-content h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin: 40px 0 20px;
}

.article-content h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.article-content h4 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin: 25px 0 12px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 20px 0 20px 30px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.article-content a {
    color: var(--primary-blue);
    font-weight: 600;
}

.article-content a:hover {
    color: var(--accent-orange);
}

.article-content strong {
    color: var(--dark-blue);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
}

.article-share {
    margin: 50px 0;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 10px;
}

.article-share h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 5px;
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.related-articles {
    margin: 50px 0;
}

.related-articles h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

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

.related-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-card h4 {
    padding: 15px 20px 10px;
    margin: 0;
}

.related-card h4 a {
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.related-card h4 a:hover {
    color: var(--primary-blue);
}

.related-card p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.95rem;
}

.article-comments {
    margin: 50px 0;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 10px;
}

.article-comments h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

/* ===== Search Form ===== */
.search-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-form input[type="text"],
.search-form input[type="email"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* ===== Message Banners ===== */
.message-banner {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid;
    animation: slideDown 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes slideDown {
    from { 
        opacity: 0; 
        transform: translateY(-20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.message-success {
    background: #d1e7dd;
    border-color: #198754;
    color: #0f5132;
}

.message-error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.message-info {
    background: #cfe2ff;
    border-color: #0d6efd;
    color: #084298;
}

.message-warning {
    background: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.message-banner strong {
    display: block;
    margin-bottom: 5px;
}

.message-banner a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.message-banner a:hover {
    opacity: 0.8;
}

/* ===== Blog Card Clickable ===== */
.blog-card {
    cursor: pointer;
}

.blog-card a {
    display: block;
    height: 100%;
}

.blog-card h3 {
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--primary-blue);
}

.read-more {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.blog-card:hover .read-more {
    color: var(--accent-orange);
}

/* ===== Featured Article Clickable ===== */
.featured-article h2 a:hover {
    color: var(--primary-blue) !important;
}

/* ===== Responsive Article ===== */
@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .article-meta-full {
        flex-direction: column;
        gap: 10px;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-sidebar {
        position: static;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-btn {
        justify-content: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Legal Page ===== */
.legal-content {
    padding: 80px 0;
    background: var(--light-gray);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.legal-wrapper h2 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
}

.legal-wrapper h2:first-child {
    margin-top: 0;
}

.legal-wrapper h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.legal-wrapper p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.legal-wrapper ul {
    margin: 15px 0 15px 30px;
    list-style: disc;
}

.legal-wrapper li {
    color: #555;
    line-height: 1.9;
    margin-bottom: 8px;
}

.legal-wrapper a {
    color: var(--primary-blue);
    font-weight: 600;
}

.legal-wrapper a:hover {
    color: var(--accent-orange);
}

.contact-box {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
    margin: 25px 0;
}

.contact-box p {
    margin: 10px 0;
}

.update-date {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    color: #888;
    font-size: 0.95rem;
}

/* ===== Responsive Legal ===== */
@media (max-width: 768px) {
    .legal-wrapper {
        padding: 30px 20px;
    }

    .legal-wrapper h2 {
        font-size: 1.5rem;
    }

    .legal-wrapper h3 {
        font-size: 1.2rem;
    }
}

/* ===== Responsive Blog ===== *//* ===== Variables & Reset ===== */
:root {
    --primary-blue: #0099CC;
    --accent-orange: #FF8C00;
    --dark-blue: #003D7A;
    --text-gray: #333333;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* ===== Header ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--text-gray);
    font-weight: 600;
    padding: 8px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-blue);
    transition: all 0.3s ease;
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 61, 122, 0.6);
    z-index: 1;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 3rem;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s ease;
}

.slider-nav:hover {
    background: var(--accent-orange);
    color: var(--white);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    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(--accent-orange);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background: #0088bb;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-blue);
}

/* ===== Sections ===== */
.services-section,
.advantages-section,
.testimonials-section {
    padding: 80px 0;
}

.advantages-section {
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
    color: #555;
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: #555;
}

/* ===== Advantages Grid ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon img {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
}

.advantage-item h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.advantage-item p {
    color: #555;
}

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 4px solid var(--primary-blue);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.testimonial-role {
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.testimonial-rating {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-orange);
}

.footer p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-slogan {
    font-style: italic;
    color: var(--accent-orange);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--accent-orange);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.social-icon {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.social-icon.whatsapp {
    background: #25D366;
}

.social-icon.facebook {
    background: #1877F2;
}

.social-icon:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== Service Detail ===== */
.service-detail {
    padding: 80px 0;
}

.service-detail.alt {
    background: var(--light-gray);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-grid.reverse {
    direction: rtl;
}

.service-detail-grid.reverse > * {
    direction: ltr;
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-detail-content h2 {
    color: var(--dark-blue);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.service-intro {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-steps {
    counter-reset: step;
    list-style: none;
    margin: 20px 0;
}

.service-steps li {
    counter-increment: step;
    padding: 15px 0 15px 40px;
    position: relative;
    line-height: 1.8;
}

.service-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 12px;
    width: 28px;
    height: 28px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.price-cards-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.price-card-mini {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.price-card-mini:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.price-card-mini.popular {
    border-color: var(--accent-orange);
    position: relative;
}

.price-card-mini .badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price-card-mini h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.price-card-mini .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin: 10px 0;
}

.price-card-mini .validity {
    font-size: 0.85rem;
    color: #666;
}

.service-benefits ul {
    margin: 20px 0;
}

.service-benefits li,
.usage-list li {
    padding: 10px 0;
    line-height: 1.8;
    color: #555;
}

.plan-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.plan-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e0e0e0;
    position: relative;
}

.plan-item.featured {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-hover);
}

.plan-item h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.plan-item .speed {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 10px 0;
}

.plan-item .plan-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-orange);
    margin: 15px 0;
}

.plan-item .plan-desc {
    font-size: 0.95rem;
    color: #666;
    margin-top: 10px;
}

.installation-package {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    margin: 25px 0;
}
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 40px 20px;
        gap: 10px;
    }

    .nav-list a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid var(--light-gray);
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-nav {
        font-size: 2rem;
        padding: 5px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .services-grid,
    .advantages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    /* Services page responsive */
    .page-header h1 {
        font-size: 2rem;
    }

    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }

    .price-cards-mini {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-comparison,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .installation-cta .btn {
        display: block;
        margin: 10px 0;
    }

    /* Forfaits page responsive */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .unlimited-grid {
        grid-template-columns: 1fr;
    }

    .installation-pack {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .pack-image {
        order: -1;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .advantages-list {
        grid-template-columns: 1fr;
    }

    /* Installation page responsive */
    .installation-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-price .price-big {
        font-size: 3rem;
    }

    .process-timeline::before {
        display: none;
    }

    .timeline-item {
        flex-direction: column;
        margin-bottom: 40px;
    }

    .timeline-number {
        margin: 0 auto;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-benefits {
        flex-direction: column;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    /* Contact page responsive */
    .methods-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .info-side {
        order: -1;
    }

    .map-placeholder {
        height: 300px;
    }

    /* About page responsive */
    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-image {
        order: -1;
    }

    .mission-grid,
    .team-grid,
    .commitments-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .infra-content {
        grid-template-columns: 1fr;
    }

    .coverage-info {
        grid-template-columns: 1fr;
    }

    /* Blog page responsive */
    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 300px;
    }

    .blog-sidebar-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }
}