/*
Theme Name: صيانة اجهزة منزلية
Theme URI: https://elesla7.com
Author: فريق التطوير
Author URI: https://elesla7.com
Description: Home appliance maintenance theme for Arabic maintenance and repair services.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: elesla7
Domain Path: /languages
Requires at least: 5.2
Requires PHP: 7.4
Tested up to: 6.4
*/

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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f39c12;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --border-color: #ddd;
}

body {
    font-family: 'Cairo', 'Almarai', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0 80px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Almarai', 'Cairo', sans-serif;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

h1 { font-weight: 800; font-size: 2.5rem; }
h2 { font-weight: 800; font-size: 2rem; }
h3 { font-weight: 700; font-size: 1.3rem; }
h4 { font-weight: 700; font-size: 1.1rem; }

p {
    font-family: 'Cairo', 'Almarai', sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d7a 100%);
    color: white;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--secondary-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-link:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-links li { position: relative; }

.nav-links a {
    color: white;
    font-weight: 600;
    font-family: 'Cairo', 'Almarai', sans-serif;
    padding: 10px 18px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.08);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 700px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4d7a 50%, #0f3a5a 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(243, 156, 18, 0.15) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    opacity: 0.15;
    z-index: 0;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, white 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, white 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    left: 10%;
}

.hero-shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, white 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    right: 10%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(243, 156, 18, 0.3);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--secondary-color);
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    font-family: 'Almarai', 'Cairo', sans-serif;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: white;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Cairo', 'Almarai', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #e67e22 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Sections */
.why-us, .services, .about, .branches, .contact, .testimonials, .company-info, .statistics, .team, .features, .cta, .faq, .process {
    padding: 80px 0;
}

.why-us, .about, .testimonials, .company-info, .statistics, .team {
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2,
.why-us h2, .services h2, .about h2, .branches h2, .contact h2, .testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header p,
.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.features-grid, .services-grid, .branches-grid, .testimonials-grid, .services-grid-expanded, .branch-card, .cta-features, .team-grid, .branches-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

/* Cards */
.feature-card, .service-card, .branch-card, .testimonial-card, .team-member, .stat-card, .cta-feature {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover, .service-card:hover, .branch-card:hover, .testimonial-card:hover, .team-member:hover, .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon, .cta-feature i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card {
    text-align: right;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.feature-card h3, .service-card h3, .branch-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-card p, .service-card p, .branch-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-feature {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-right: 4px solid var(--secondary-color);
    text-align: right;
}

.about-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
}

.faq-header:hover {
    background: #efefef;
}

.faq-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-header h3 {
    margin: 0;
    flex-grow: 1;
    text-align: right;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-content {
    max-height: 1000px;
}

.faq-content p {
    padding: 1.5rem;
    color: #666;
    line-height: 1.8;
}

/* Branches */
.branch-info {
    text-align: right;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    direction: rtl;
}

.info-row i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.label {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

/* Team */
.member-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 1rem;
}

.team-member .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member .bio {
    color: #666;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-box, .contact-info-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.form-intro {
    color: #666;
    margin-bottom: 2rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Cairo', 'Almarai', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: #666;
    margin: 0;
}

.info-content p.highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.social-links h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: var(--primary-color);
}

/* Testimonials */
.testimonial-card .stars {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.testimonial-card .review {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section p {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

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

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.cta-feature {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
}

.cta-feature i {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-feature h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #1a4d7a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

.step-connector {
    position: absolute;
    top: 30px;
    right: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    z-index: 0;
}

.process-step:last-child .step-connector {
    display: none;
}

/* Service Detail Cards */
.service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: right;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-detail-card .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-detail-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-intro {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-details h4 {
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.service-details ul {
    list-style: none;
    padding-right: 0;
    text-align: right;
}

.service-details ul li {
    padding: 0.5rem 0;
    padding-right: 1.5rem;
    color: #666;
    position: relative;
}

.service-details ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Features Grid */
.feature-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Loading Screen */
#loadingScreen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 20% 15%, rgba(243, 156, 18, 0.2), transparent 40%),
        radial-gradient(circle at 80% 85%, rgba(126, 210, 255, 0.18), transparent 42%),
        linear-gradient(145deg, #0a2847 0%, #103e66 55%, #081d32 100%);
    animation: loadingScreenAutoHide 0.55s ease-out 6s forwards;
    overflow: hidden;
}

.loading-minimal {
    width: min(92vw, 430px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    box-shadow: 0 26px 48px rgba(3, 12, 24, 0.42);
    padding: 24px 22px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.loading-core {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-core-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(243, 156, 18, 0.9);
    opacity: 0.9;
    animation: loaderRingSpin 6s linear infinite;
}

.loading-core-ring.ring-a {
    inset: 0;
}

.loading-core-ring.ring-b {
    inset: 14px;
    border-style: solid;
    border-color: rgba(123, 210, 255, 0.7);
    animation-direction: reverse;
    animation-duration: 4.8s;
}

.loading-logo {
    width: 86px;
    height: 86px;
    border-radius: 18px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(8, 24, 42, 0.28);
    animation: loaderFloat 2.2s ease-in-out infinite;
}

.loading-logo .custom-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.loading-logo img {
    max-width: 72px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.loading-scan {
    position: relative;
    width: min(100%, 320px);
    height: 8px;
    margin: 0 auto 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    overflow: hidden;
}

.loading-scan span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 45%;
    background: linear-gradient(90deg, #f39c12 0%, #ffc861 100%);
    border-radius: inherit;
    animation: loaderScan 1.4s ease-in-out infinite;
}

.loading-text {
    color: #f4f8ff;
    font-family: 'Cairo', 'Almarai', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.2px;
}

#loadingScreen.hidden {
    animation: loadingScreenFadeOut 0.45s ease-out forwards;
}

@keyframes loaderRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes loaderScan {
    0% { transform: translateX(-115%); }
    50% { transform: translateX(90%); }
    100% { transform: translateX(230%); }
}

@keyframes loadingScreenFadeOut {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes loadingScreenAutoHide {
    from {
        opacity: 1;
        visibility: visible;
    }
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

@media (max-width: 768px) {
    .loading-minimal {
        width: min(94vw, 360px);
        padding: 20px 16px 16px;
        border-radius: 18px;
    }

    .loading-core {
        width: 132px;
        height: 132px;
        margin-bottom: 14px;
    }

    .loading-logo {
        width: 78px;
        height: 78px;
        border-radius: 14px;
    }

    .loading-logo img {
        max-width: 64px;
        max-height: 64px;
    }

    .loading-text {
        font-size: 0.96rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    #loadingScreen,
    .loading-core-ring,
    .loading-logo,
    .loading-scan span,
    #loadingScreen.hidden {
        animation: none !important;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .hamburger-menu {
        display: flex;
        order: 3;
    }

    .nav-links {
        position: fixed;
        top: calc(100px);
        left: 0;
        right: 0;
        background: linear-gradient(to bottom, var(--primary-color) 0%, #1a4d7a 100%);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        max-height: 400px;
        padding: 1rem 0;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links a {
        padding: 16px 20px;
        text-align: right;
    }

    .hero {
        height: 400px;
        padding: 6rem 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .btn, .btn-lg {
        width: 100%;
    }

    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .features-grid, .services-grid, .branches-grid, .testimonials-grid, .services-grid-expanded, .branches-detail-grid {
        grid-template-columns: 1fr;
    }

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

    .step-connector {
        display: none;
    }

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

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

    .cta-buttons .btn {
        width: 100%;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .why-us, .services, .about, .branches, .contact, .testimonials, .company-info, .statistics, .team, .features, .cta, .faq, .process {
        padding: 60px 0;
    }

    .loading-logo {
        width: 100px;
        height: 100px;
    }

    .loading-logo img {
        max-width: 80px;
    }

    .loading-spinner {
        width: 40px;
        height: 40px;
    }

    .loading-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        flex-wrap: wrap;
        padding: 0 0.8rem;
    }

    .logo {
        height: 50px;
    }

    .hero {
        height: 350px;
        padding: 3rem 0;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.85rem;
    }

    .page-header {
        padding: 50px 0 30px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }

    .features-grid, .services-grid, .branches-grid, .testimonials-grid, .services-grid-expanded, .branches-detail-grid {
        gap: 1.5rem;
    }

    .feature-card, .service-card, .branch-card, .team-member, .stat-card {
        padding: 1rem;
    }

    .why-us, .services, .about, .branches, .contact, .testimonials, .company-info, .statistics, .team, .features, .cta, .faq, .process {
        padding: 40px 0;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .loading-logo {
        width: 80px;
        height: 80px;
    }

    .loading-logo img {
        max-width: 60px;
    }

    .loading-spinner {
        width: 30px;
        height: 30px;
    }

    .loading-text {
        font-size: 0.9rem;
    }

    /* Info boxes */
    .info-row {
        flex-direction: row;
    }

    .info-row i {
        margin-top: 3px;
    }

    .contact-form-box, .contact-info-box {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='18 15 12 9 6 15'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 1.2em;
    padding-right: 40px;
    padding-left: 35px;
}

/* ============= PAGE TEMPLATES STYLES ============= */

.page-hero {
    padding: 60px 0;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: white;
}

.page-hero p {
    font-size: 1.2rem;
    color: white;
}

/* Unified Page Hero Primary Color */
.page-hero-primary {
    background: linear-gradient(135deg, #1a3a52 0%, #2d1b4e 100%);
}

.page-content {
    padding: 40px 80px;
}

.page-content-full {
    padding: 0;
}

/* About Page Styles */
.about-overview {
    margin-bottom: 60px;
}

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

.stat-card {
    background: linear-gradient(135deg, #1a3a52 0%, #2d1b4e 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mission-card,
.vision-card,
.values-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 3rem;
    color: #1a3a52;
    margin-bottom: 15px;
}

.why-choose-us {
    margin-bottom: 60px;
}

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

.why-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.why-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 2.5rem;
    color: #1a3a52;
    margin-bottom: 15px;
}

.about-cta {
    background: linear-gradient(135deg, #1a3a52 0%, #2d1b4e 100%);
    color: white;
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    margin-top: 60px;
}

.about-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Services Page Styles */
.services-detailed {
    margin-bottom: 60px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.service-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

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

.service-features li {
    color: #555;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.service-features li i {
    position: absolute;
    left: 0;
    color: #1a3a52;
    font-size: 1.1rem;
}

.service-process {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a3a52 0%, #2d1b4e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.service-cta {
    background: linear-gradient(135deg, #1a3a52 0%, #2d1b4e 100%);
    color: white;
    padding: 60px;
    border-radius: 15px;
    text-align: center;
}

.service-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Contact Page Styles */
/* Contact Page Intro Section */
.contact-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.contact-intro h2 {
    color: #1a3a52;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-intro p {
    color: #555;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-form-notice {
    margin: 0 auto 26px;
    max-width: 780px;
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 700;
    text-align: center;
}

.contact-form-notice.is-success {
    background: #ecfdf3;
    border: 1px solid #86efac;
    color: #166534;
}

.contact-form-notice.is-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* Contact Methods Grid - Modern Cards */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.contact-method-card {
    background: linear-gradient(135deg, #1a3a52 0%, #2d1b4e 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(26, 58, 82, 0.2);
    border-top: 4px solid #f39c12;
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(26, 58, 82, 0.4);
    border-top-color: #e67e22;
}

.method-card-icon {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(243, 156, 18, 0.15);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.contact-method-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    margin-top: 10px;
    font-weight: 700;
}

.method-value {
    color: #f39c12;
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.method-value a {
    color: #f39c12;
    text-decoration: none;
    transition: all 0.3s ease;
}

.method-value a:hover {
    color: #e67e22;
    text-decoration: underline;
}

.method-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Form Section */
.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.05) 0%, rgba(45, 27, 78, 0.05) 100%);
    padding: 60px 0;
    border: 1px solid rgba(26, 58, 82, 0.1);
    border-radius: 15px;
    margin-bottom: 80px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #1a3a52;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-header p {
    color: #666;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    grid-column: auto;
}

.form-group:nth-child(4),
.form-group:nth-child(5) {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: #333;
    font-weight: 500;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a3a52;
    background: #fafbfc;
    box-shadow: 0 0 0 4px rgba(26, 58, 82, 0.1);
    color: #1a3a52;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-size: 0.95rem;
}

.btn-submit {
    grid-column: 1 / -1;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1a3a52 0%, #2d1b4e 100%);
    color: white;
    border-radius: 8px;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(26, 58, 82, 0.4);
    background: linear-gradient(135deg, #0f2436 0%, #1f1438 100%);
}

/* Branches Page Styles */
.branches-intro {
    text-align: center;
    margin-bottom: 60px;
}

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

.branch-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.branch-header {
    padding: 30px 20px;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, #1a3a52 0%, #2d1b4e 100%);
}

.branch-header i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.branch-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.branch-content {
    padding: 25px 20px;
}

.branch-info {
    margin-bottom: 15px;
}

.branch-info p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.branch-info i {
    color: #1a3a52;
    margin-left: 10px;
    width: 20px;
}

.branch-info strong {
    color: #333;
}

.branch-info a {
    color: #1a3a52;
    text-decoration: none;
}

.branch-info a:hover {
    text-decoration: underline;
}

.branch-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1a3a52 0%, #2d1b4e 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.95rem;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.branch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(26, 58, 82, 0.3);
}

.feature-item i {
    font-size: 2.5rem;
    color: #1a3a52;
    margin-bottom: 15px;
    display: block;
}

.branches-cta {
    background: linear-gradient(135deg, #1a3a52 0%, #2d1b4e 100%);
    color: white;
    padding: 60px;
    border-radius: 15px;
    text-align: center;
}

.branches-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.branches-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

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

    .mission-vision {
        grid-template-columns: 1fr;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .page-content {
        padding: 40px 40px;
    }

    .container {
        padding: 0 40px;
    }

    .google-map-container {
        height: 300px;
    }

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

    .contact-intro h2 {
        font-size: 2rem;
    }

    .contact-methods-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 60px;
    }

    .contact-form-wrapper {
        padding: 40px 0;
    }

    .form-container {
        padding: 0 20px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-group:nth-child(4),
    .form-group:nth-child(5) {
        grid-column: auto;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }

    .btn-submit {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Responsive Design for Mobile - Contact Page */
@media (max-width: 480px) {
    .contact-intro h2 {
        font-size: 1.5rem;
    }

    .contact-intro p {
        font-size: 1rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
    }

    .contact-method-card {
        padding: 30px 20px;
    }

    .method-card-icon {
        width: 60px;
        height: 60px;
        font-size: 2.2rem;
    }

    .contact-method-card h3 {
        font-size: 1.1rem;
    }

    .method-value {
        font-size: 1rem;
    }

    .form-header h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .form-header p {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px;
    }

    .btn-submit {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .form-container {
        padding: 0 15px;
    }

    .quick-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Google Map Section */
.google-map-section {
    padding: 60px 0;
}

.google-map-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.google-map-container {
    width: 100%;
    height: 500px;
    margin-bottom: 80px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.google-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    padding: 0 20px;
}

.location-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.location-info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.location-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.location-info-card .info-icon {
    font-size: 3rem;
    color: #1a3a52;
    margin-bottom: 15px;
    display: block;
}

.location-info-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.location-info-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.location-info-card a {
    color: #1a3a52;
    text-decoration: none;
    font-weight: 600;
}

.location-info-card a:hover {
    text-decoration: underline;
}

/* Service Image Styles */
.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #f0f0f0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f0f0f0;
}

.service-detail-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 2rem;
    background: #f0f0f0;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quick-service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

/* Home Services Section Refresh */
.services-home {
    position: relative;
    background: linear-gradient(180deg, #f7fafc 0%, #eef3f9 100%);
}

.services-home .section-header {
    margin-bottom: 2.25rem;
}

.services-home .section-header p {
    max-width: 720px;
    color: #4b5563;
}

.services-home .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.services-home .service-card {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 18px;
    border: 1px solid #dbe6f2;
    box-shadow: 0 10px 26px rgba(16, 42, 67, 0.08);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: right;
}

.services-home .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #f39c12 0%, #2c5aa0 100%);
    z-index: 2;
}

.services-home .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 34px rgba(16, 42, 67, 0.14);
}

.services-home .service-image {
    position: relative;
    margin: 0;
    height: 220px;
    border-radius: 0;
}

.services-home .service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 52, 86, 0) 40%, rgba(18, 52, 86, 0.28) 100%);
    pointer-events: none;
}

.services-home .service-image img {
    transition: transform 0.45s ease;
}

.services-home .service-card:hover .service-image img {
    transform: scale(1.06);
}

.services-home .service-content {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.2rem 1.2rem 1.4rem;
    flex-grow: 1;
}

.services-home .service-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    background: #edf4ff;
    color: #1d4d8f;
    border: 1px solid #d3e2f8;
    font-size: 0.8rem;
    font-weight: 700;
}

.services-home .service-content h3 {
    margin: 0;
    color: #123456;
    font-size: 1.25rem;
    line-height: 1.45;
}

.services-home .service-content p {
    margin: 0;
    color: #5b6777;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.services-home .service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 0.65rem 0.95rem;
    border: 1px solid #cedbef;
    border-radius: 10px;
    color: #1a3a52;
    font-weight: 700;
    background: #f8fbff;
    transition: all 0.25s ease;
}

.services-home .service-link:hover {
    background: #1a3a52;
    border-color: #1a3a52;
    color: #ffffff;
}

.services-home .services-cta-wrap {
    text-align: center;
    margin-top: 2rem;
}

.services-home .services-empty {
    grid-column: 1 / -1;
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    color: #64748b;
}

@media (max-width: 768px) {
    .services-home .services-grid {
        gap: 1.2rem;
    }

    .services-home .service-image {
        height: 205px;
    }
}

@media (max-width: 480px) {
    .services-home .service-content {
        padding: 1rem;
    }

    .services-home .service-content h3 {
        font-size: 1.1rem;
    }
}

/* Why Us Professional Refresh */
.why-us-pro {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.home-disclaimer-wrap {
    padding: 26px 0 6px;
}

.home-disclaimer {
    background: #efe3c2;
    border: 2px solid #e2b447;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(62, 45, 10, 0.12);
    padding: 1.3rem 1.4rem;
}

.home-disclaimer h2 {
    margin: 0 0 0.65rem;
    color: #b77300;
    font-size: clamp(1.45rem, 3.1vw, 2rem);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.home-disclaimer h2 i {
    color: #dc9300;
    font-size: 0.95em;
}

.home-disclaimer p {
    margin: 0;
    color: #71500f;
    line-height: 1.95;
    font-size: 1.3rem;
    font-weight: 500;
}

.branches-home-spot {
    padding: 50px 0 34px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.branches-coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.95rem;
}

.coverage-card {
    background: #ffffff;
    border: 1px solid #dce8f4;
    border-radius: 14px;
    padding: 1rem 0.9rem;
    box-shadow: 0 8px 22px rgba(18, 42, 69, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.52rem;
    text-align: center;
}

.coverage-card i {
    color: #f39c12;
    font-size: 1rem;
}

.coverage-card h3 {
    margin: 0;
    color: #18406b;
    font-size: 1.03rem;
}

.branches-coverage-actions {
    margin-top: 1.1rem;
    text-align: center;
}

.branches-page-pro .page-content {
    padding-top: 46px;
    padding-bottom: 70px;
}

.branches-page-pro .branches-intro {
    text-align: center;
    margin-bottom: 1.2rem;
}

.branches-page-pro .branches-intro h2 {
    margin-bottom: 0.5rem;
}

.branches-page-pro .branches-intro p {
    color: #5a6677;
}

.branches-page-pro .branches-coverage-grid {
    margin-bottom: 1.35rem;
}

.branches-page-pro .branches-contact-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.branches-page-pro .branches-contact-card {
    background: #ffffff;
    border: 1px solid #dce8f4;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(18, 42, 69, 0.08);
    padding: 1.2rem;
    text-align: center;
}

.branches-page-pro .branches-contact-card i {
    color: #1f4f93;
    font-size: 1.45rem;
    margin-bottom: 0.5rem;
}

.branches-page-pro .branches-contact-card h3 {
    color: #163d69;
    margin-bottom: 0.4rem;
}

.branches-page-pro .branches-contact-card p {
    margin: 0;
    color: #5a6677;
}

.branches-page-pro .branches-contact-card p + p {
    margin-top: 0.35rem;
}

.branches-page-pro .branches-contact-card a {
    color: #1f4f93;
    font-weight: 700;
}

.why-us-pro .section-header {
    margin-bottom: 2.2rem;
}

.why-us-pro .section-header p {
    max-width: 720px;
    color: #5b6676;
}

.why-us-pro .features-grid {
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.why-us-pro .feature-card {
    text-align: right;
    border: 1px solid #dbe4ef;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(21, 45, 73, 0.08);
    padding: 1.4rem;
    position: relative;
    overflow: hidden;
}

.why-us-pro .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2c5aa0, #f39c12);
}

.why-us-pro .feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 30px rgba(21, 45, 73, 0.14);
}

.why-us-pro .feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 0 0.9rem auto;
    border-radius: 14px;
    background: linear-gradient(135deg, #edf3fb 0%, #dfeaf8 100%);
    color: #1f4f93;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.why-us-pro .feature-card h3 {
    margin-bottom: 0.55rem;
    color: #163d69;
    font-size: 1.15rem;
}

.why-us-pro .feature-card p {
    color: #5f6b7a;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .home-disclaimer-wrap {
        padding: 16px 0 4px;
    }

    .home-disclaimer {
        padding: 1rem 0.9rem;
        border-radius: 14px;
    }

    .home-disclaimer h2 {
        font-size: 1.25rem;
        gap: 0.45rem;
    }

    .home-disclaimer p {
        font-size: 1rem;
        line-height: 1.85;
    }

    .branches-home-spot {
        padding: 38px 0 26px;
    }

    .branches-coverage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .coverage-card {
        padding: 0.85rem 0.65rem;
    }

    .coverage-card h3 {
        font-size: 0.96rem;
    }

    .branches-page-pro .page-content {
        padding-top: 34px;
        padding-bottom: 50px;
    }

    .branches-page-pro .branches-cta {
        width: 100vw;
        margin-right: calc(50% - 50vw);
        margin-left: calc(50% - 50vw);
        border-radius: 0;
        padding: 38px 16px;
    }

    .branches-page-pro .branches-cta .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }

    .why-us-pro .feature-card {
        padding: 1.2rem;
    }

    .why-us-pro .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Navbar Professional Refresh + Hero Full Width */
.navbar {
    background: linear-gradient(135deg, rgba(12, 42, 70, 0.95) 0%, rgba(28, 79, 126, 0.94) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(6, 19, 37, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.72rem 0;
    transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.navbar.is-scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 12px 34px rgba(6, 19, 37, 0.28);
    background: linear-gradient(135deg, rgba(10, 33, 56, 0.97) 0%, rgba(22, 64, 104, 0.96) 100%);
}

.navbar .container {
    min-height: 64px;
}

.logo-link {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 6px 20px rgba(5, 13, 28, 0.2);
    padding: 8px 14px;
}

.logo-link:hover {
    background: rgba(255, 255, 255, 0.801);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(5, 13, 28, 0.24);
}

.nav-links {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    padding: 6px;
    gap: 4px;
}

.nav-links a {
    color: #f3f7ff;
    border-radius: 10px;
    font-weight: 700;
    padding: 10px 16px;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.95), rgba(230, 126, 34, 0.95));
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.26);
}

.hamburger-menu {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 10px;
}

.home #primary > .container {
    padding: 0;
}

.home #primary > .container > .content-area {
    width: 100%;
}

.home .hero {
    width: 100%;
    margin: 0;
    border-radius: 0;
}

.home .hero-content {
    padding: 0 24px;
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 20px;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        top: 78px;
        left: 14px;
        right: 14px;
        border-radius: 14px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: linear-gradient(180deg, rgba(10, 32, 54, 0.98), rgba(21, 64, 103, 0.98));
        box-shadow: 0 16px 30px rgba(6, 19, 37, 0.28);
    }

    .nav-links.active {
        max-height: 430px;
        padding: 0.6rem;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links li:last-child {
        border-bottom: 0;
    }

    .nav-links a {
        text-align: right;
        padding: 13px 14px;
        margin: 2px 0;
    }

    .home .hero {
        min-height: 470px;
        height: auto;
        padding: 6.5rem 1.4rem 3rem;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 0 14px;
    }

    .logo {
        height: 52px;
    }

    .nav-links {
        top: 74px;
        left: 10px;
        right: 10px;
    }

    .home .hero {
        min-height: 430px;
        padding: 5.8rem 0.9rem 2.4rem;
    }
}

/* FAQ Professional Refresh */
.faq-pro {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.faq-pro .faq-items {
    max-width: 920px;
}

.faq-pro .faq-item {
    border: 1px solid #d9e4f1;
    border-radius: 14px;
    margin-bottom: 12px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(18, 42, 69, 0.07);
}

.faq-pro .faq-header {
    background: transparent;
    padding: 1rem 1.1rem;
}

.faq-pro .faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #edf4ff, #dce8f8);
    color: #1f4f93;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.faq-pro .faq-header h3 {
    color: #153a61;
    font-size: 1.05rem;
}

.faq-pro .faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f5fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #1d4d8f;
}

.faq-pro .faq-item.active .faq-toggle {
    transform: none;
    background: #1d4d8f;
    color: #ffffff;
}

.faq-pro .faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-pro .faq-content p {
    padding-top: 0.2rem;
    color: #5b6777;
}

/* Location Section */
.branches-pro {
    background: #f8fbff;
}

.branches-pro .location-showcase {
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr;
    gap: 1.4rem;
    align-items: stretch;
}

.branches-pro .location-card,
.branches-pro .location-map-wrap {
    border-radius: 18px;
    border: 1px solid #d9e4f1;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(18, 42, 69, 0.09);
}

.branches-pro .location-card {
    padding: 1.35rem;
    text-align: right;
}

.branches-pro .location-card h3 {
    color: #153a61;
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.branches-pro .location-card p {
    color: #5b6777;
    margin-bottom: 1rem;
}

.branches-pro .location-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.branches-pro .location-card li {
    margin-bottom: 0.6rem;
    color: #4f5c6e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.branches-pro .location-card li i {
    color: #1f4f93;
}

.branches-pro .location-card a {
    color: #1f4f93;
    font-weight: 700;
}

.branches-pro .location-map-wrap {
    overflow: hidden;
    min-height: 350px;
}

.branches-pro .location-map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
}

/* Testimonials Professional Refresh */
.testimonials-pro {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.testimonials-pro .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.35rem;
}

.testimonials-pro .testimonial-card {
    text-align: right;
    border: 1px solid #dce7f3;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(18, 42, 69, 0.08);
    padding: 1.35rem;
    position: relative;
}

.testimonials-pro .quote-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #eaf2fd;
    color: #1f4f93;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.6rem;
}

.testimonials-pro .stars {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.testimonials-pro .review {
    font-style: normal;
    color: #5b6777;
    margin-bottom: 1rem;
}

.testimonials-pro .client-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonials-pro .client-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c5aa0, #1a4d7a);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.testimonials-pro .client-meta strong {
    display: block;
    color: #173f69;
}

.testimonials-pro .client-meta span {
    display: block;
    color: #6b7788;
    font-size: 0.9rem;
}

/* Footer Professional Refresh */
.footer-pro {
    background: linear-gradient(135deg, #0f2942 0%, #153b5f 55%, #1f4f7a 100%);
    padding: 0;
}

.footer-pro .footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.1fr;
    gap: 1.4rem;
    padding: 2.4rem 0 2rem;
}

.footer-pro .footer-brand,
.footer-pro .footer-links-wrap,
.footer-pro .footer-contact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 1.15rem;
}

.footer-pro h4 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-pro p,
.footer-pro li,
.footer-pro a {
    color: rgba(243, 248, 255, 0.9);
}

.footer-pro .footer-links-wrap ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-pro .footer-links-wrap li {
    margin-bottom: 0.45rem;
}

.footer-pro .footer-links-wrap a:hover,
.footer-pro .footer-contact a:hover {
    color: #f7b646;
}

.footer-pro .footer-contact p {
    margin-bottom: 0.55rem;
}

.footer-pro .footer-contact i {
    color: #f7b646;
    margin-left: 0.4rem;
}

.footer-pro .footer-social {
    display: flex;
    gap: 0.55rem;
    margin-top: 0.9rem;
}

.footer-pro .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.footer-pro .footer-social a:hover {
    background: #f7b646;
    color: #102b44;
    transform: translateY(-2px);
}

.footer-pro .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 0 1.2rem;
    text-align: center;
}

.footer-pro .footer-bottom p {
    color: rgba(243, 248, 255, 0.88);
}

.footer-pro .footer-bottom a {
    color: #ffffff;
    font-weight: 700;
}

@media (max-width: 900px) {
    .branches-pro .location-showcase {
        grid-template-columns: 1fr;
    }

    .footer-pro .footer-top {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-top: 2rem;
    }
}

/* Home/About/Pages Final Polishing */
.about-home-pro {
    background: linear-gradient(180deg, #f6f9fd 0%, #ffffff 100%);
}

.about-home-pro .about-content {
    gap: 1.8rem;
    align-items: stretch;
}

.about-home-pro .about-text,
.about-home-pro .about-features {
    background: #ffffff;
    border: 1px solid #dce7f2;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(18, 42, 69, 0.08);
    padding: 1.35rem;
}

.about-home-pro .about-text h2 {
    margin-bottom: 0.8rem;
}

.about-home-pro .about-feature {
    border-right: 0;
    border-radius: 12px;
    border: 1px solid #e1ebf6;
    padding: 1rem;
}

.about-home-pro .about-feature h4 {
    color: #18406b;
}

.about-home-pro .about-feature p {
    color: #5b6777;
}

/* Mobile Hero + Navbar line fix */
@media (max-width: 768px) {
    .home .hero {
        min-height: calc(100svh - 74px);
        height: auto;
        padding: 6.6rem 1rem 2.3rem;
        align-items: flex-start;
    }

    .home .hero-content {
        max-width: 100%;
        padding: 0 2px;
    }

    .home .hero-title {
        font-size: clamp(1.9rem, 7vw, 2.6rem);
        line-height: 1.25;
    }

    .home .hero-subtitle {
        font-size: 1.12rem;
        margin-bottom: 0.7rem;
    }

    .home .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .home .hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.55rem;
        margin-top: 1.1rem;
    }

    .home .hero-stats .stat {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 10px;
        padding: 0.45rem 0.3rem;
    }

    .home .hero-stats .stat-number {
        font-size: 1.15rem;
        margin-bottom: 0.15rem;
    }

    .home .hero-stats .stat-label {
        font-size: 0.78rem;
    }

    .nav-links {
        gap: 0.35rem;
    }

    .nav-links li {
        border-bottom: 0 !important;
    }

    .nav-links a {
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 480px) {
    .home .hero {
        min-height: calc(100svh - 68px);
        padding: 5.6rem 0.8rem 2rem;
    }

    .home .hero-badge {
        font-size: 0.8rem;
        padding: 7px 12px;
    }

    .home .hero-buttons .btn {
        padding: 12px 14px;
        font-size: 0.94rem;
    }

    .about-home-pro .about-text,
    .about-home-pro .about-features {
        padding: 1rem;
    }
}

/* About Page Professional */
.about-page-pro .page-content {
    padding-top: 50px;
    padding-bottom: 70px;
}

/* About Page - v2 Layout */
.about-page-pro .about-v2-intro {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbe7f3;
    border-radius: 18px;
    padding: 1.45rem;
    box-shadow: 0 10px 24px rgba(18, 42, 69, 0.08);
}

.about-page-pro .about-v2-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(270px, 0.9fr);
    gap: 1rem;
}

.about-page-pro .about-v2-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: #edf4ff;
    border: 1px solid #d3e2f8;
    color: #1f4f93;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.about-page-pro .about-v2-story h2 {
    color: #173f69;
    margin-bottom: 0.7rem;
    line-height: 1.45;
}

.about-page-pro .about-v2-story p {
    color: #5b6777;
    margin: 0;
    line-height: 1.9;
}

.about-page-pro .about-v2-story p + p {
    margin-top: 0.65rem;
}

.about-page-pro .about-v2-panel {
    background: #ffffff;
    border: 1px solid #dce8f4;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(18, 42, 69, 0.08);
    padding: 1.1rem;
}

.about-page-pro .about-v2-panel h3 {
    color: #173f69;
    margin-bottom: 0.65rem;
}

.about-page-pro .about-v2-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-page-pro .about-v2-panel li {
    display: flex;
    align-items: flex-start;
    gap: 0.48rem;
    color: #506174;
    padding: 0.45rem 0;
    border-bottom: 1px dashed #dce8f4;
}

.about-page-pro .about-v2-panel li:last-child {
    border-bottom: 0;
}

.about-page-pro .about-v2-panel li i {
    color: #1f4f93;
    margin-top: 0.18rem;
}

.about-page-pro .about-v2-stats {
    margin-top: 1.05rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.about-page-pro .about-v2-stat {
    background: linear-gradient(135deg, #1a3a52 0%, #2d1b4e 100%);
    color: #ffffff;
    border-radius: 14px;
    padding: 1.05rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 24px rgba(18, 42, 69, 0.2);
    text-align: center;
}

.about-page-pro .about-v2-stat i {
    font-size: 1.35rem;
    margin-bottom: 0.45rem;
    color: #f7c158;
}

.about-page-pro .about-v2-stat h3 {
    font-size: 1.65rem;
    margin-bottom: 0.22rem;
}

.about-page-pro .about-v2-stat p {
    margin: 0;
    opacity: 0.95;
}

.about-page-pro .about-v2-pillars {
    margin-top: 1.45rem;
}

.about-page-pro .about-v2-pillars .section-header {
    margin-bottom: 1.2rem;
}

.about-page-pro .about-v2-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.about-page-pro .about-v2-pillar {
    background: #ffffff;
    border: 1px solid #dce7f3;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(18, 42, 69, 0.08);
    padding: 1.1rem;
    text-align: right;
}

.about-page-pro .about-v2-pillar-icon,
.about-page-pro .about-v2-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #edf4ff 0%, #dce8f8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0.72rem auto;
    color: #1f4f93;
    font-size: 1.25rem;
}

.about-page-pro .about-v2-pillar h3,
.about-page-pro .about-v2-why-item h3 {
    color: #173f69;
    margin-bottom: 0.45rem;
}

.about-page-pro .about-v2-pillar p,
.about-page-pro .about-v2-why-item p {
    color: #5b6777;
    line-height: 1.8;
    margin: 0;
}

.about-page-pro .about-v2-why {
    margin-top: 1.4rem;
}

.about-page-pro .about-v2-why .section-header {
    margin-bottom: 1.15rem;
}

.about-page-pro .about-v2-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.about-page-pro .about-v2-why-item {
    background: #ffffff;
    border: 1px solid #dce7f3;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(18, 42, 69, 0.08);
    padding: 1.05rem;
    text-align: right;
}

.about-page-pro .about-v2-cta {
    margin-top: 1.45rem;
    background: linear-gradient(135deg, #1a3a52 0%, #2d1b4e 100%);
    color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(17, 43, 68, 0.2);
    padding: 2rem 1.2rem;
    text-align: center;
}

.about-page-pro .about-v2-cta h2 {
    margin-bottom: 0.55rem;
}

.about-page-pro .about-v2-cta p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.about-page-pro .about-v2-cta-actions {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .about-page-pro .about-v2-intro-grid {
        grid-template-columns: 1fr;
    }

    .about-page-pro .about-v2-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-page-pro .about-v2-pillars-grid {
        grid-template-columns: 1fr;
    }

    .about-page-pro .about-v2-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .about-page-pro .about-v2-intro {
        padding: 1rem;
    }

    .about-page-pro .about-v2-story h2 {
        font-size: 1.5rem;
    }

    .about-page-pro .about-v2-stats {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .about-page-pro .about-v2-pillars,
    .about-page-pro .about-v2-why {
        margin-top: 1.15rem;
    }

    .about-page-pro .about-v2-why-grid {
        grid-template-columns: 1fr;
    }

    .about-page-pro .about-v2-pillar,
    .about-page-pro .about-v2-why-item {
        padding: 0.95rem;
    }

    .about-page-pro .about-v2-cta {
        padding: 1.65rem 1rem;
    }

    .about-page-pro .about-v2-cta-actions .btn {
        width: 100%;
    }
}

.about-page-pro .about-overview {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbe7f3;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(18, 42, 69, 0.08);
}

.about-page-pro .about-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.9fr);
    gap: 1rem;
    align-items: stretch;
}

.about-page-pro .about-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: #edf4ff;
    border: 1px solid #d3e2f8;
    color: #1f4f93;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.about-page-pro .about-text-content {
    max-width: none;
    margin: 0;
    text-align: right;
}

.about-page-pro .about-text-content h2 {
    color: #173f69;
    margin-bottom: 0.8rem;
    line-height: 1.45;
}

.about-page-pro .about-text-content p {
    color: #5b6777;
    margin: 0;
    line-height: 1.9;
}

.about-page-pro .about-text-content p + p {
    margin-top: 0.65rem;
}

.about-page-pro .about-side-card {
    background: #ffffff;
    border: 1px solid #dce8f4;
    border-radius: 16px;
    box-shadow: 0 10px 22px rgba(18, 42, 69, 0.08);
    padding: 1.15rem;
}

.about-page-pro .about-side-card h3 {
    color: #173f69;
    margin-bottom: 0.65rem;
}

.about-page-pro .about-side-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about-page-pro .about-side-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #506174;
    padding: 0.45rem 0;
    border-bottom: 1px dashed #dce8f4;
}

.about-page-pro .about-side-card li:last-child {
    border-bottom: 0;
}

.about-page-pro .about-side-card li i {
    color: #1f4f93;
    margin-top: 0.18rem;
}

.about-page-pro .about-stats {
    margin-top: 1.15rem;
    gap: 0.9rem;
}

.about-page-pro .about-stats .stat-card {
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 24px rgba(18, 42, 69, 0.2);
    padding: 1.15rem 0.8rem;
}

.about-page-pro .about-stats .stat-card i {
    font-size: 1.4rem;
    margin-bottom: 0.45rem;
    color: #f7c158;
}

.about-page-pro .about-stats .stat-card h3 {
    font-size: 1.7rem;
    margin-bottom: 0.25rem;
}

.about-page-pro .about-stats .stat-card p {
    font-size: 0.92rem;
    opacity: 0.95;
}

.about-page-pro .mission-vision-pro .section-header,
.about-page-pro .why-choose-pro .section-header {
    margin-bottom: 1.35rem;
}

.about-page-pro .mission-vision-pro {
    margin-top: 1.55rem;
    gap: 1rem;
}

.about-page-pro .mission-card,
.about-page-pro .vision-card,
.about-page-pro .values-card {
    text-align: right;
    padding: 1.2rem;
}

.about-page-pro .card-icon,
.about-page-pro .why-icon {
    width: 54px;
    height: 54px;
    margin: 0 0 0.75rem auto;
    font-size: 1.3rem;
}

.about-page-pro .mission-card h3,
.about-page-pro .vision-card h3,
.about-page-pro .values-card h3,
.about-page-pro .why-item h3 {
    color: #173f69;
    margin-bottom: 0.45rem;
}

.about-page-pro .mission-card p,
.about-page-pro .vision-card p,
.about-page-pro .values-card p,
.about-page-pro .why-item p {
    color: #5b6777;
    line-height: 1.8;
}

.about-page-pro .mission-card,
.about-page-pro .vision-card,
.about-page-pro .values-card,
.about-page-pro .why-item {
    border: 1px solid #dce7f3;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(18, 42, 69, 0.08);
}

.about-page-pro .card-icon,
.about-page-pro .why-icon {
    border-radius: 14px;
    background: linear-gradient(135deg, #edf4ff 0%, #dce8f8 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-page-pro .why-choose-pro {
    margin-top: 1.4rem;
}

.about-page-pro .why-grid {
    gap: 1rem;
}

.about-page-pro .why-item {
    text-align: right;
    padding: 1.1rem;
}

.about-page-pro .about-cta {
    margin-top: 1.4rem;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(17, 43, 68, 0.2);
    padding: 2.1rem 1.2rem;
}

.about-page-pro .about-cta h2 {
    margin-bottom: 0.55rem;
}

.about-page-pro .about-cta p {
    margin-bottom: 1rem;
}

@media (max-width: 992px) {
    .about-page-pro .about-overview-grid {
        grid-template-columns: 1fr;
    }

    .about-page-pro .about-side-card {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .about-page-pro .about-overview {
        padding: 1rem;
    }

    .about-page-pro .about-text-content h2 {
        font-size: 1.55rem;
    }

    .about-page-pro .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .about-page-pro .about-stats .stat-card {
        padding: 0.95rem 0.6rem;
    }

    .about-page-pro .about-stats .stat-card h3 {
        font-size: 1.35rem;
    }

    .about-page-pro .mission-vision-pro,
    .about-page-pro .why-grid {
        grid-template-columns: 1fr;
    }

    .about-page-pro .mission-card,
    .about-page-pro .vision-card,
    .about-page-pro .values-card,
    .about-page-pro .why-item {
        padding: 1rem;
    }

    .about-page-pro .about-cta {
        padding: 1.75rem 1rem;
    }
}

/* Services Page Professional */
.services-page-pro .page-content {
    padding-top: 50px;
    padding-bottom: 70px;
}

.services-page-pro .services-detailed .section-header {
    margin-bottom: 2rem;
}

.services-page-pro .services-cards-detailed {
    display: grid;
    gap: 1.25rem;
}

.services-page-pro .service-detail-card {
    background: #ffffff;
    border: 1px solid #dbe7f3;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(18, 42, 69, 0.08);
    overflow: hidden;
    padding: 0;
    margin-bottom: 0;
}

.services-page-pro .service-detail-image {
    margin-bottom: 0;
    border-radius: 0;
    height: 290px;
}

.services-page-pro .service-detail-content {
    padding: 1.2rem 1.25rem 1.4rem;
}

.services-page-pro .service-mini-badge {
    display: inline-flex;
    width: fit-content;
    padding: 0.26rem 0.72rem;
    border-radius: 999px;
    border: 1px solid #d4e3f8;
    background: #edf4ff;
    color: #1d4d8f;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.services-page-pro .service-detail-content h3 {
    color: #173f69;
    margin-bottom: 0.5rem;
}

.services-page-pro .service-detail-content p {
    color: #5b6777;
    margin-bottom: 1rem;
}

.services-page-pro .service-process {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid #dbe7f3;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(18, 42, 69, 0.08);
    padding: 2rem 1.4rem;
}

.services-page-pro .service-process h2 {
    text-align: center;
    color: #173f69;
    margin-bottom: 1.25rem;
}

.services-page-pro .service-process .process-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.services-page-pro .service-process .step {
    position: relative;
    background: #ffffff;
    border: 1px solid #dce8f4;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(18, 42, 69, 0.08);
    padding: 1.05rem 0.9rem 1rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services-page-pro .service-process .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 28px rgba(18, 42, 69, 0.14);
}

.services-page-pro .service-process .step-number {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.75rem;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #1f4f93 0%, #173f69 100%);
    box-shadow: 0 8px 18px rgba(18, 61, 105, 0.3);
}

.services-page-pro .service-process .step h3 {
    margin-bottom: 0.45rem;
    color: #173f69;
    font-size: 1.06rem;
}

.services-page-pro .service-process .step p {
    margin: 0;
    color: #5b6777;
    line-height: 1.8;
    font-size: 0.95rem;
}

.services-page-pro .service-cta {
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(17, 43, 68, 0.2);
}

@media (max-width: 768px) {
    .about-page-pro .page-content,
    .services-page-pro .page-content {
        padding-top: 34px;
        padding-bottom: 46px;
    }

    .services-page-pro .service-detail-card {
        grid-template-columns: 1fr;
    }

    .services-page-pro .service-detail-image {
        height: 215px;
    }

    .services-page-pro .service-process {
        padding: 1.3rem 0.95rem;
    }

    .services-page-pro .service-process h2 {
        font-size: 1.45rem;
        margin-bottom: 0.95rem;
    }

    .services-page-pro .service-process .process-steps {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

/* Mobile menu closed-state hard fix */
@media (max-width: 768px) {
    .nav-links {
        opacity: 0;
        top: 98px;
        pointer-events: none;
        border-color: transparent !important;
        box-shadow: none !important;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        border-color: rgba(255, 255, 255, 0.2) !important;
        box-shadow: 0 16px 30px rgba(6, 19, 37, 0.28) !important;
    }
}

/* Hero direct-call card */
.hero-phone-spot {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.3rem;
}

.hero-phone-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.hero-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(243, 156, 18, 0.9);
    background: rgba(243, 156, 18, 0.15);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.02rem;
    box-shadow: 0 8px 22px rgba(243, 156, 18, 0.2);
    transition: all 0.25s ease;
}

.hero-phone-link i {
    color: var(--secondary-color);
}

.hero-phone-link:hover {
    background: rgba(243, 156, 18, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(243, 156, 18, 0.28);
}

/* 24/7 value strip */
.home-value-strip {
    background: linear-gradient(180deg, #f4f8fe 0%, #ffffff 100%);
}

.home-value-strip .section-header {
    margin-bottom: 1.8rem;
}

.value-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
}

.value-strip-card {
    background: #ffffff;
    border: 1px solid #dce8f4;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(18, 42, 69, 0.08);
    padding: 1.2rem;
    text-align: right;
}

.value-strip-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #edf4ff, #dce8f8);
    color: #1f4f93;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
}

.value-strip-card h3 {
    margin-bottom: 0.45rem;
    color: #163d69;
}

.value-strip-card p {
    margin: 0;
    color: #5f6b7a;
}

.value-strip-actions {
    margin-top: 1.2rem;
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    flex-wrap: wrap;
}

.value-strip-actions .btn {
    min-width: 190px;
}

.value-strip-actions .btn-outline {
    color: #1f4f93;
    border-color: #1f4f93;
    background: #ffffff;
}

.value-strip-actions .btn-outline:hover {
    color: #ffffff;
    background: #1f4f93;
    box-shadow: 0 8px 20px rgba(31, 79, 147, 0.3);
}

/* Footer build note */
.footer-build-note {
    background: #0b2238;
    color: #d6e4f3;
    text-align: center;
    padding: 0.9rem 1rem;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-build-note-link {
    color: #f7c65c;
    font-weight: 800;
    text-decoration: none;
    margin-inline-start: 0.35rem;
    border-bottom: 1px solid rgba(247, 198, 92, 0.45);
    transition: color 0.25s ease, border-color 0.25s ease, text-shadow 0.25s ease;
}

.footer-build-note-link:hover {
    color: #ffd983;
    border-color: rgba(255, 217, 131, 0.9);
    text-shadow: 0 0 12px rgba(247, 198, 92, 0.28);
}

/* Floating actions */
.floating-actions-left {
    position: fixed;
    left: 18px;
    bottom: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.floating-whatsapp,
.floating-to-top,
.floating-call {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(8, 24, 42, 0.32);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.floating-whatsapp {
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(145deg, #17c55a 0%, #11a84a 100%);
    animation: whatsappPulse 2.4s ease-in-out infinite;
}

.floating-whatsapp i {
    font-size: 1.55rem;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 30px rgba(10, 82, 38, 0.35);
}

.floating-to-top {
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(145deg, #1b4d7e 0%, #123b63 100%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
}

.floating-to-top i {
    font-size: 1.2rem;
}

.floating-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(7, 31, 56, 0.34);
}

.floating-call {
    position: fixed;
    right: 18px;
    bottom: 20px;
    z-index: 1050;
    width: auto;
    min-width: 170px;
    padding: 0 18px;
    gap: 0.6rem;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(145deg, #1f4f93 0%, #173f69 100%);
    font-weight: 800;
    direction: ltr;
}

.floating-call i {
    font-size: 1.1rem;
    color: #f8c55c;
}

.floating-call span {
    white-space: nowrap;
    font-size: 0.96rem;
    letter-spacing: 0.2px;
}

.floating-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(17, 63, 105, 0.34);
}

@keyframes whatsappPulse {
    0%,
    100% {
        box-shadow: 0 10px 24px rgba(8, 24, 42, 0.32), 0 0 0 0 rgba(23, 197, 90, 0.42);
    }
    60% {
        box-shadow: 0 10px 24px rgba(8, 24, 42, 0.32), 0 0 0 11px rgba(23, 197, 90, 0);
    }
}

@media (max-width: 768px) {
    .hero-phone-spot {
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-phone-link {
        width: 100%;
        justify-content: center;
        font-size: 0.96rem;
        padding: 10px 12px;
    }

    .home-value-strip .section-header {
        margin-bottom: 1.25rem;
    }

    .value-strip-grid {
        grid-template-columns: 1fr;
    }

    .value-strip-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .value-strip-actions .btn {
        min-width: 0;
        width: 100%;
        text-align: center;
    }

    .floating-actions-left {
        left: 12px;
        bottom: 16px;
        gap: 10px;
    }

    .floating-whatsapp,
    .floating-to-top {
        width: 48px;
        height: 48px;
    }

    .floating-call {
        right: 12px;
        bottom: 16px;
        min-width: 0;
        max-width: calc(100vw - 92px);
        height: 48px;
        padding: 0 14px;
        gap: 0.45rem;
    }

    .floating-call span {
        font-size: 0.84rem;
    }

    .footer-build-note {
        font-size: 0.92rem;
        line-height: 1.8;
    }
}

/* Contact Page Premium Polish */
.contact-page-pro .page-content {
    padding-top: 50px;
    padding-bottom: 70px;
}

.contact-page-pro .contact-intro-pro {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid #dce8f4;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(18, 42, 69, 0.08);
}

.contact-page-pro .contact-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: #edf4ff;
    border: 1px solid #d3e2f8;
    color: #1f4f93;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-page-pro .contact-methods-pro .contact-method-card {
    border-radius: 14px;
    border-top-width: 3px;
    box-shadow: 0 10px 26px rgba(18, 42, 69, 0.22);
}

.contact-page-pro .contact-form-wrapper-pro {
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(18, 42, 69, 0.08);
}

.contact-page-pro .form-container {
    max-width: 920px;
}

.contact-page-pro .contact-form {
    gap: 16px;
}

.contact-page-pro .services-quick-pro {
    margin-top: 14px;
}

.contact-page-pro .services-quick-pro .section-header {
    margin-bottom: 1.4rem;
}

.contact-page-pro .quick-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.1rem;
}

.contact-page-pro .quick-service-card {
    border: 1px solid #dce8f4;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(18, 42, 69, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-page-pro .quick-service-media {
    height: 150px;
    overflow: hidden;
}

.contact-page-pro .quick-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.contact-page-pro .quick-service-card:hover .quick-service-media img {
    transform: scale(1.05);
}

.contact-page-pro .quick-service-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    height: 100%;
}

.contact-page-pro .quick-service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #edf4ff;
    color: #1f4f93;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 auto;
    font-size: 1.1rem;
}

.contact-page-pro .quick-service-content h3 {
    margin: 0;
    color: #173f69;
    font-size: 1.05rem;
}

.contact-page-pro .quick-service-content p {
    margin: 0;
    color: #5b6777;
    line-height: 1.75;
}

.contact-page-pro .quick-service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d3e2f8;
    background: #f8fbff;
    color: #1f4f93;
    font-weight: 700;
    padding: 0.55rem 0.7rem;
    transition: all 0.25s ease;
}

.contact-page-pro .quick-service-link:hover {
    background: #1f4f93;
    border-color: #1f4f93;
    color: #ffffff;
}

@media (max-width: 768px) {
    .contact-page-pro .page-content {
        padding-top: 34px;
        padding-bottom: 46px;
    }

    .contact-page-pro .contact-intro-pro {
        padding: 1rem;
    }

    .contact-page-pro .contact-intro h2 {
        font-size: 1.7rem;
    }

    .contact-page-pro .contact-intro p {
        font-size: 0.98rem;
    }

    .contact-page-pro .contact-methods-pro {
        margin-bottom: 50px;
    }

    .contact-page-pro .contact-form-wrapper-pro {
        padding: 36px 0;
    }

    .contact-page-pro .form-container {
        padding: 0 16px;
    }

    .contact-page-pro .quick-services-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-pro .quick-service-media {
        height: 170px;
    }
}

/* Brand landing pages and SEO brand hub */
.brand-hub-section {
    padding: 72px 0;
    background: linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
}

.brand-hub-inline {
    margin-top: 56px;
    border-top: 1px solid #dce8f6;
    padding-top: 56px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.brand-grid-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.brand-link-card,
.brand-card,
.brand-panel,
.brand-faq-card {
    background: #ffffff;
    border: 1px solid rgba(44, 90, 160, 0.12);
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(21, 52, 85, 0.08);
}

.brand-link-card {
    display: block;
    padding: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-link-card:hover {
    transform: translateY(-6px);
    border-color: rgba(243, 156, 18, 0.5);
    box-shadow: 0 20px 45px rgba(21, 52, 85, 0.14);
}

.brand-link-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(243, 156, 18, 0.12);
    color: #9d5e00;
    font-size: 0.84rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.brand-card-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.brand-card-keywords span {
    display: inline-flex;
    align-items: center;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(44, 90, 160, 0.08);
    color: #30506d;
    font-size: 0.78rem;
    font-weight: 700;
}

.brand-link-card h3,
.brand-card h3,
.brand-panel h2,
.brand-faq-card h3 {
    color: #153455;
    margin-bottom: 10px;
}

.brand-link-card p,
.brand-card p,
.brand-panel p,
.brand-faq-card p,
.brand-story p {
    color: #476173;
}

.brand-page-shell {
    background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.brand-hero {
    position: relative;
    overflow: hidden;
}

.brand-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(243, 156, 18, 0.24) 0%, transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.12) 0%, transparent 28%);
    pointer-events: none;
}

.brand-hero .container {
    position: relative;
    z-index: 1;
}

.brand-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff1c8;
    font-weight: 800;
    margin-bottom: 18px;
}

.brand-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.brand-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.brand-hero-tags span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-weight: 700;
}

.brand-page-content {
    padding-top: 58px;
    padding-bottom: 70px;
}

.brand-section {
    margin-bottom: 52px;
}

.brand-section-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.brand-card,
.brand-panel,
.brand-faq-card {
    padding: 24px;
}

.brand-card-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #1f5d50 0%, #0c2f3b 100%);
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.brand-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.brand-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #23455e;
    line-height: 1.9;
}

.brand-list i {
    color: #f39c12;
    margin-top: 7px;
}

.brand-story {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.brand-story p + p {
    margin-top: 14px;
}

.brand-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.brand-section-alt {
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(31, 93, 80, 0.05) 0%, rgba(12, 47, 59, 0.03) 100%);
    border: 1px solid rgba(31, 93, 80, 0.12);
}

@media (max-width: 1024px) {
    .brand-grid,
    .brand-faq-grid,
    .brand-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .brand-hub-section {
        padding: 52px 0;
    }

    .brand-page-content {
        padding-top: 42px;
        padding-bottom: 52px;
    }

    .brand-hero-actions {
        flex-direction: column;
    }

    .brand-section-split,
    .brand-grid,
    .brand-faq-grid,
    .brand-grid-compact {
        grid-template-columns: 1fr;
    }

    .brand-section-alt {
        padding: 22px;
    }
}

/* Navbar brand shortcuts */
.navbar .container {
    gap: 16px;
}

.logo-link {
    flex-shrink: 0;
}

.nav-links {
    flex: 1 1 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
    padding: 8px;
}

.nav-links li {
    flex: 0 0 auto;
}

.nav-links a.nav-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 0.9rem;
}

.nav-brand-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #ffffff;
    color: #0c2f3b;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: inset 0 0 0 1px rgba(12, 47, 59, 0.12);
}

.nav-brand-label {
    white-space: nowrap;
}

.nav-brand-badge.is-lg {
    background: linear-gradient(135deg, #fff2f8 0%, #ffe4f0 100%);
    color: #a50034;
}

.nav-brand-badge.is-toshiba {
    background: linear-gradient(135deg, #fff4f4 0%, #ffe3e3 100%);
    color: #d91f26;
}

.nav-brand-badge.is-white-point {
    background: linear-gradient(135deg, #eef5ff 0%, #dce9ff 100%);
    color: #2c5aa0;
}

.nav-brand-badge.is-kiriazi {
    background: linear-gradient(135deg, #ecf7ff 0%, #d7ecff 100%);
    color: #1369b3;
}

.nav-brand-badge.is-white-whale {
    background: linear-gradient(135deg, #eefaf8 0%, #daf3ef 100%);
    color: #1f5d50;
}

@media (max-width: 1024px) {
    .nav-links a {
        padding: 9px 12px;
    }

    .nav-links a.nav-brand-link {
        gap: 7px;
        padding: 8px 10px;
        font-size: 0.86rem;
    }

    .nav-brand-badge {
        font-size: 0.58rem;
        padding: 0 9px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 0;
        padding: 0;
    }

    .nav-links.active {
        max-height: 560px;
    }

    .nav-links a.nav-brand-link {
        justify-content: flex-start;
        gap: 10px;
        padding: 13px 14px;
        font-size: 0.95rem;
    }

    .nav-brand-badge {
        min-width: 78px;
        font-size: 0.64rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .nav-brand-badge {
        min-width: 72px;
        font-size: 0.6rem;
    }
}

/* Brand page themes */
.brand-page-shell {
    --brand-primary: #1f5d50;
    --brand-secondary: #0c2f3b;
    --brand-accent: #f4b942;
    --brand-accent-soft: #fce7b4;
    --brand-surface: #ffffff;
    --brand-surface-alt: #f4f8fc;
    --brand-badge: #fff3da;
    --brand-badge-text: #9d5e00;
    background:
        radial-gradient(circle at top right, var(--brand-accent-soft) 0%, transparent 24%),
        linear-gradient(180deg, var(--brand-surface) 0%, var(--brand-surface-alt) 100%);
}

.brand-page-shell .brand-hero {
    background: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-primary) 58%, var(--brand-accent) 180%);
}

.brand-page-shell .brand-hero::before {
    background:
        radial-gradient(circle at top left, var(--brand-accent-soft) 0%, transparent 34%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.15) 0%, transparent 30%);
}

.brand-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
    align-items: center;
    gap: 32px;
}

.brand-logo-panel {
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 20px 42px rgba(6, 19, 37, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.brand-logo-chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--brand-badge);
    color: var(--brand-badge-text);
    font-size: 0.86rem;
    font-weight: 800;
}

.brand-logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 188px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.brand-logo-image {
    width: min(100%, 340px);
    height: auto;
    display: block;
}

.brand-page-shell .section-header h2,
.brand-page-shell .brand-link-card h3,
.brand-page-shell .brand-card h3,
.brand-page-shell .brand-panel h2,
.brand-page-shell .brand-faq-card h3 {
    color: var(--brand-secondary);
}

.brand-page-shell .brand-link-card,
.brand-page-shell .brand-card,
.brand-page-shell .brand-panel,
.brand-page-shell .brand-faq-card,
.brand-page-shell .brand-story {
    background: linear-gradient(180deg, #ffffff 0%, var(--brand-surface) 100%);
    border: 1px solid var(--brand-accent-soft);
    box-shadow: 0 18px 42px rgba(21, 52, 85, 0.08);
}

.brand-page-shell .brand-link-card:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 22px 48px rgba(21, 52, 85, 0.14);
}

.brand-page-shell .brand-link-label {
    background: var(--brand-badge);
    color: var(--brand-badge-text);
}

.brand-link-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    margin: 8px 0 18px;
    padding: 14px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, var(--brand-surface-alt) 100%);
    border: 1px solid var(--brand-accent-soft);
}

.brand-link-logo img {
    width: min(100%, 220px);
    height: auto;
    display: block;
}

.brand-logo-frame--lg,
.brand-link-logo--lg {
    background: linear-gradient(180deg, #312d2f 0%, #1f1b1d 100%);
    border-color: rgba(255, 255, 255, 0.12);
}

.brand-logo-frame--lg {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-logo-frame--lg .brand-logo-image,
.brand-link-logo--lg img {
    width: min(100%, 300px);
}

.brand-page-shell .brand-card-icon {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
}

.brand-page-shell .brand-list i {
    color: var(--brand-primary);
}

.brand-page-shell .brand-section-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, var(--brand-surface-alt) 100%);
    border: 1px solid var(--brand-accent-soft);
}

.brand-section-search-intent {
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, var(--brand-surface-alt) 100%);
    border: 1px solid var(--brand-accent-soft);
}

.brand-query-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.brand-query-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--brand-badge);
    color: var(--brand-badge-text);
    border: 1px solid var(--brand-accent-soft);
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
}

.brand-page-shell .btn-primary {
    background: linear-gradient(135deg, var(--brand-accent) 0%, var(--brand-primary) 100%);
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(21, 52, 85, 0.18);
}

.brand-page-shell .btn-primary:hover {
    filter: brightness(1.02);
}

.brand-page-shell .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
}

.brand-page-shell .btn-outline:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.54);
}

@media (max-width: 1024px) {
    .brand-hero-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .brand-logo-panel {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .brand-page-shell {
        background:
            radial-gradient(circle at top center, var(--brand-accent-soft) 0%, transparent 28%),
            linear-gradient(180deg, var(--brand-surface) 0%, var(--brand-surface-alt) 100%);
    }

    .brand-logo-panel {
        padding: 20px;
        border-radius: 24px;
    }

    .brand-logo-frame {
        min-height: 156px;
        padding: 16px;
    }

    .brand-link-logo {
        min-height: 82px;
        padding: 12px;
    }

    .brand-section-search-intent {
        padding: 22px;
    }
}

@media (max-width: 480px) {
    .brand-logo-chip {
        font-size: 0.8rem;
    }

    .brand-logo-frame {
        min-height: 138px;
    }

    .brand-link-logo img {
        width: 100%;
    }
}

/* Mobile navbar stabilization */
body.nav-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.55rem 0;
    }

    .navbar .container {
        min-height: 62px;
        padding: 0 14px !important;
        gap: 12px !important;
        align-items: center;
    }

    .logo-link {
        order: 1;
        max-width: calc(100% - 64px);
        padding: 6px 10px;
        border-radius: 12px;
    }

    .logo {
        height: 46px;
        max-width: 100%;
    }

    .hamburger-menu {
        display: inline-flex !important;
        order: 2;
        flex: 0 0 46px;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        margin-inline-start: auto;
        padding: 0;
        gap: 5px;
    }

    .hamburger-menu span {
        width: 21px;
        height: 2.5px;
    }

    .nav-links {
        position: fixed !important;
        top: 82px !important;
        right: 12px !important;
        left: 12px !important;
        bottom: auto;
        width: auto !important;
        max-height: 0 !important;
        overflow: hidden !important;
        overflow-y: auto !important;
        opacity: 0;
        pointer-events: none;
        display: flex;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 8px !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 18px !important;
        background: linear-gradient(180deg, rgba(9, 30, 50, 0.98), rgba(19, 62, 100, 0.98)) !important;
        border: 1px solid rgba(255, 255, 255, 0.16) !important;
        box-shadow: 0 22px 60px rgba(4, 14, 26, 0.34) !important;
        transform: translateY(-8px);
        transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.2s ease, padding 0.2s ease;
        z-index: 1200;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        max-height: calc(100dvh - 102px) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        padding: 10px !important;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        flex: 0 0 auto;
        border: 0 !important;
    }

    .nav-links a,
    .nav-links a.nav-brand-link {
        width: 100%;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        padding: 12px 14px !important;
        text-align: right;
        border-radius: 14px;
        margin: 0 !important;
        font-size: 0.95rem !important;
    }

    .nav-links a {
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
    }

    .nav-brand-badge {
        min-width: 78px;
        min-height: 30px;
        padding: 0 10px;
        font-size: 0.62rem;
        flex: 0 0 auto;
    }

    .nav-brand-label {
        flex: 1 1 auto;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 0 10px !important;
    }

    .logo-link {
        max-width: calc(100% - 58px);
        padding: 6px 8px;
    }

    .logo {
        height: 40px;
    }

    .hamburger-menu {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .nav-links {
        top: 76px !important;
        right: 10px !important;
        left: 10px !important;
    }

    .nav-links a,
    .nav-links a.nav-brand-link {
        min-height: 48px;
        padding: 11px 12px !important;
        font-size: 0.92rem !important;
    }

    .nav-brand-badge {
        min-width: 72px;
        font-size: 0.58rem;
    }
}
