/*
Theme Name: SK Construction
Theme URI: https://skconstructionhmt.com
Author: SK Construction
Author URI: https://skconstructionhmt.com
Description: Professional construction company website theme for SK Construction, Himatnagar, Gujarat. Features government projects, commercial buildings, luxury bungalows, industrial construction, infrastructure works, and machinery rental services.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sk-construction
Tags: construction, business, corporate, responsive, seo-friendly
*/

/* ============================================
   SK CONSTRUCTION - MAIN STYLESHEET
   Colors: Blue (#1a56db) & Orange (#f97316) & White
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    background: #fff;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}
a { text-decoration: none; color: #1a56db; transition: all 0.3s ease; }
a:hover { color: #f97316; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }

/* === SECTION STYLES === */
.section { padding: 80px 0; }
.section-label { margin-bottom: 12px; }
.section-label span {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f97316;
    background: rgba(249,115,22,0.1);
    padding: 6px 16px;
    border-radius: 30px;
}
.section-title {
    font-size: 36px;
    margin-bottom: 16px;
}
.section-title span { color: #1a56db; }
.section-desc { font-size: 17px; color: #6b7280; max-width: 700px; margin: 0 auto 40px; }
.section-header { margin-bottom: 50px; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.btn-primary { background: #F97316; color: #fff; border-color: #F97316; }
.btn-primary:hover { background: #1544b8; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(26,86,219,0.3); }
.btn-outline { background: transparent; color: #1a56db; border-color: #1a56db; }
.btn-outline:hover { background: #1a56db; color: #fff; transform: translateY(-2px); }
.btn-white { background: #fff; color: #1a56db; border-color: #fff; }
.btn-white:hover { background: #f97316; color: #fff; border-color: #f97316; transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 8px 20px; font-size: 13px; }
.btn-block { display: block; width: 100%; margin-bottom: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* === TOP BAR === */
.top-bar {
    background: #0f172a;
    color: #cbd5e1;
    font-size: 13px;
    padding: 8px 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: #cbd5e1; margin-right: 20px; }
.top-bar a:hover { color: #f97316; }
.top-bar i { margin-right: 6px; color: #f97316; }
.top-bar-right span { margin-left: 16px; }
.top-bar-right i { margin-right: 4px; }

/* === HEADER === */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.header-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.site-branding img { max-height: 60px; width: auto; }
.main-navigation { display: flex; align-items: center; }
.primary-menu { display: flex; gap: 4px; }
.primary-menu > li { position: relative; }
.primary-menu > li > a {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}
.primary-menu > li > a:hover,
.primary-menu > li.current-menu-item > a { color: #1a56db; background: rgba(26,86,219,0.06); }
.primary-menu > li.menu-item-has-children > a::after { content: ' \f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-left: 6px; font-size: 12px; }

/* Dropdown */
.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}
.primary-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #374151;
    transition: all 0.2s ease;
}
.sub-menu li a:hover { background: #f0f5ff; color: #1a56db; padding-left: 26px; }

.header-cta .btn { white-space: nowrap; }

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #1f2937;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; }
.mobile-nav-content {
    position: absolute;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: #fff;
    padding: 80px 24px 24px;
    overflow-y: auto;
    transition: right 0.4s ease;
}
.mobile-nav-overlay.active .mobile-nav-content { right: 0; }
.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
}
.mobile-menu { padding: 0; }
.mobile-menu li { border-bottom: 1px solid #f3f4f6; }
.mobile-menu li a {
    display: block;
    padding: 14px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
}
.mobile-menu .sub-menu { padding-left: 20px; }
.mobile-menu .sub-menu li a { font-size: 14px; color: #6b7280; }
.mobile-nav-contact { margin-top: 30px; padding-top: 20px; border-top: 2px solid #f3f4f6; }
.mobile-nav-contact a { display: block; padding: 10px 0; color: #374151; font-size: 15px; }
.mobile-nav-contact i { margin-right: 10px; color: #f97316; }

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.88) 0%, rgba(26,86,219,0.65) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249,115,22,0.2);
    color: #fbbf24;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    border: 1px solid rgba(249,115,22,0.3);
}
.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}
.hero-title span { color: #f97316; }
.hero-subtitle {
    font-size: 18px;
    color: #d1d5db;
    max-width: 700px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat { text-align: center; }
.stat-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #f97316;
}
.stat-label {
    display: block;
    font-size: 14px;
    color: #d1d5db;
    margin-top: 4px;
}

/* === ABOUT SECTION === */
.about-section { background: #f8fafc; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #1a56db;
    color: #fff;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(26,86,219,0.4);
}
.badge-number { display: block; font-family: 'Poppins', sans-serif; font-size: 40px; font-weight: 800; }
.badge-text { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.about-text { font-size: 16px; color: #4b5563; margin-bottom: 16px; }
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 32px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 15px;
}
.about-feature i { color: #10b981; font-size: 18px; }

/* === SERVICES SECTION === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a56db, #f97316);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1a56db, #3b82f6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 26px;
    color: #fff;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: linear-gradient(135deg, #f97316, #fb923c); transform: scale(1.1); }
.service-card h3 { font-size: 18px; margin-bottom: 12px; }
.service-card h3 a { color: #111827; }
.service-card h3 a:hover { color: #1a56db; }
.service-card p { font-size: 14px; color: #6b7280; margin-bottom: 16px; }
.service-link { font-size: 14px; font-weight: 600; color: #1a56db; }
.service-link:hover { color: #f97316; }
.service-link i { transition: transform 0.3s ease; }
.service-link:hover i { transform: translateX(4px); }

/* === WHY CHOOSE SECTION === */
.why-choose-section { background: #f8fafc; }
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.why-card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #1a56db;
    transition: all 0.3s ease;
}
.why-card:hover .why-card-icon { background: linear-gradient(135deg, #1a56db, #3b82f6); color: #fff; }
.why-card h3 { font-size: 17px; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: #6b7280; }

/* === GALLERY SECTION === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-large { grid-column: span 2; }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,23,42,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-category {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #f97316;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.gallery-overlay h4 { color: #fff; font-size: 16px; margin: 0; }

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%);
    padding: 80px 0;
    text-align: center;
}
.cta-content h2 { font-size: 36px; color: #fff; margin-bottom: 16px; }
.cta-content p { font-size: 18px; color: #bfdbfe; max-width: 600px; margin: 0 auto 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === PAGE BANNER === */
.page-banner {
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    position: relative;
    text-align: center;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(26,86,219,0.7) 100%);
}
.page-banner .container { position: relative; z-index: 1; }
.page-title { font-size: 42px; color: #fff; margin-bottom: 12px; }
.breadcrumbs { color: #94a3b8; font-size: 14px; }
.breadcrumbs a { color: #93c5fd; }
.breadcrumbs a:hover { color: #f97316; }
.breadcrumbs .fas { font-size: 10px; margin: 0 8px; }

/* === ABOUT PAGE === */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-intro-image { position: relative; }
.about-intro-image img { border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.mission-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.mission-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a56db, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #fff;
}
.mission-card h3 { margin-bottom: 16px; font-size: 22px; }
.mission-card p { font-size: 15px; color: #6b7280; }

/* Government Section */
.government-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gov-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
}
.gov-card:hover { transform: translateY(-6px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.gov-card i { font-size: 40px; color: #1a56db; margin-bottom: 16px; }
.gov-card h4 { font-size: 17px; margin-bottom: 10px; }
.gov-card p { font-size: 14px; color: #6b7280; }

/* Team Section */
.team-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.team-stat {
    text-align: center;
    padding: 32px 20px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}
.team-stat:hover { background: #eff6ff; transform: translateY(-4px); }
.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a56db, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: #fff;
}
.team-stat h4 { font-size: 16px; margin-bottom: 8px; }
.team-stat p { font-size: 14px; color: #6b7280; }

/* Service Areas */
.service-area-section { background: #f8fafc; }
.service-areas-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}
.area-item:hover { border-color: #1a56db; color: #1a56db; transform: translateY(-2px); }
.area-item i { color: #f97316; }

/* Methodology */
.methodology-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.method-step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}
.step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: rgba(26,86,219,0.12);
    margin-bottom: 12px;
}
.method-step h4 { font-size: 17px; margin-bottom: 10px; }
.method-step p { font-size: 14px; color: #6b7280; }

/* === SERVICES LISTING PAGE === */
.services-detail-grid { display: flex; flex-direction: column; gap: 24px; }
.service-detail-card {
    display: flex;
    gap: 30px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s ease;
    align-items: flex-start;
}
.service-detail-card:hover { box-shadow: 0 15px 40px rgba(0,0,0,0.08); transform: translateY(-3px); }
.service-detail-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: linear-gradient(135deg, #1a56db, #3b82f6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}
.service-detail-content h3 { font-size: 20px; margin-bottom: 10px; }
.service-detail-content h3 a { color: #111827; }
.service-detail-content h3 a:hover { color: #1a56db; }
.service-detail-content p { font-size: 15px; color: #6b7280; margin-bottom: 16px; }

/* === SERVICE DETAIL PAGES === */
.service-detail-section { background: #f8fafc; }
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}
.service-detail-main {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.service-detail-main h2 { font-size: 28px; margin-bottom: 20px; }
.service-detail-main h3 { font-size: 20px; margin: 28px 0 12px; color: #1a56db; }
.service-detail-main p { font-size: 15px; color: #4b5563; margin-bottom: 16px; }
.service-features { margin: 12px 0 20px 0; padding: 0; }
.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}
.service-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 16px;
}
.service-cta-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 12px;
    padding: 32px;
    margin-top: 36px;
    text-align: center;
}
.service-cta-box h3 { color: #1a56db; margin-bottom: 10px; }
.service-cta-box p { margin-bottom: 20px; }

/* Service Sidebar */
.service-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.sidebar-widget h4 { font-size: 18px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid #f3f4f6; }
.services-list-widget ul { padding: 0; }
.services-list-widget li { border-bottom: 1px solid #f3f4f6; }
.services-list-widget li:last-child { border: none; }
.services-list-widget li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 8px;
    font-size: 14px;
    color: #4b5563;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.services-list-widget li a:hover { background: #f0f5ff; color: #1a56db; }
.services-list-widget li.active a { background: #1a56db; color: #fff; }
.services-list-widget li i { width: 20px; text-align: center; }
.contact-widget { text-align: center; }
.contact-widget p { font-size: 14px; color: #6b7280; margin-bottom: 16px; }

/* === GALLERY FULL PAGE === */
.gallery-full-section { background: #f8fafc; }
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn {
    background: #fff;
    border: 2px solid #e5e7eb;
    padding: 10px 24px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #4b5563;
}
.filter-btn:hover, .filter-btn.active { background: #1a56db; color: #fff; border-color: #1a56db; }
.gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-masonry-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-masonry-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(15,23,42,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-masonry-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-cat-tag {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #f97316;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.gallery-item-overlay h4 { color: #fff; font-size: 16px; margin: 0; }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-items { margin: 30px 0; }
.contact-info-item { display: flex; gap: 20px; margin-bottom: 24px; }
.contact-info-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1a56db;
}
.contact-info-text h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info-text p { font-size: 14px; color: #6b7280; margin: 0; }
.contact-info-text a { color: #1a56db; }
.contact-social h4 { font-size: 16px; margin-bottom: 12px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
    width: 42px;
    height: 42px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a56db;
    font-size: 18px;
    transition: all 0.3s ease;
}
.social-links a:hover { background: #1a56db; color: #fff; transform: translateY(-3px); }

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.contact-form-wrapper h3 { font-size: 24px; margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; color: #374151; }
.form-group label span { color: #ef4444; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
    background: #f9fafb;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: #1a56db; background: #fff; }
.form-success { color: #10b981; background: #ecfdf5; padding: 12px; border-radius: 8px; margin-top: 12px; font-weight: 500; }
.form-error { color: #ef4444; background: #fef2f2; padding: 12px; border-radius: 8px; margin-top: 12px; font-weight: 500; }

/* Map */
.map-section { padding: 0 0 80px; }
.map-wrapper { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

/* === FOOTER === */
.site-footer { background: #0f172a; color: #94a3b8; }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { max-height: 50px; margin-bottom: 16px; }
.footer-about { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
}
.footer-social a:hover { background: #1a56db; color: #fff; }
.footer-title { color: #fff; font-size: 18px; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: #f97316; border-radius: 2px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #94a3b8; font-size: 14px; transition: all 0.2s ease; }
.footer-links a:hover { color: #f97316; padding-left: 6px; }
.footer-contact p { font-size: 14px; margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: #f97316; min-width: 16px; margin-top: 3px; }
.footer-contact a { color: #94a3b8; }
.footer-contact a:hover { color: #f97316; }
.footer-bottom {
    background: #020617;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}
.footer-bottom .fa-heart { font-size: 12px; }

/* === WHATSAPP FLOAT === */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: #1a56db;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26,86,219,0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: #f97316; transform: translateY(-3px); }

/* === BLOG STYLES === */
.content-area { padding: 60px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}
.blog-card-image img { width: 100%; height: 250px; object-fit: cover; }
.blog-card-content { padding: 28px; }
.blog-card-meta { display: flex; gap: 20px; margin-bottom: 12px; font-size: 13px; color: #6b7280; }
.blog-card-meta i { margin-right: 6px; color: #f97316; }
.blog-card-title { font-size: 22px; margin-bottom: 12px; }
.blog-card-title a { color: #111827; }
.blog-card-title a:hover { color: #1a56db; }
.blog-card-excerpt { font-size: 15px; color: #6b7280; margin-bottom: 16px; }
.blog-read-more { font-weight: 600; color: #1a56db; font-size: 14px; }
.blog-read-more:hover { color: #f97316; }

.content-sidebar .sidebar-widget { margin-bottom: 24px; }
.sidebar-links { padding: 0; }
.sidebar-links li { border-bottom: 1px solid #f3f4f6; }
.sidebar-links li a { display: flex; align-items: center; gap: 10px; padding: 10px 0; font-size: 14px; color: #4b5563; }
.sidebar-links li a:hover { color: #1a56db; }

/* === REVEAL ANIMATIONS === */
.service-card, .why-card, .gallery-item, .mission-card, .gov-card, .method-step, .team-stat, .service-detail-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.revealed { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
    .methodology-steps { grid-template-columns: repeat(2, 1fr); }
    .team-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .main-navigation, .header-cta { display: none; }
    .mobile-toggle { display: flex; }
    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 28px; }
    .section { padding: 50px 0; }
    .section-title { font-size: 28px; }
    .about-grid, .about-intro-grid, .contact-grid, .service-detail-grid, .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-experience-badge { position: relative; bottom: 0; right: 0; display: inline-block; margin-top: 16px; }
    .about-features { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .why-choose-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item-large { grid-column: span 1; }
    .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
    .mission-grid, .government-grid { grid-template-columns: 1fr; }
    .service-detail-main { padding: 28px; }
    .contact-form-wrapper { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .cta-content h2 { font-size: 28px; }
    .page-title { font-size: 32px; }
    .page-banner { padding: 70px 0 40px; }
    .methodology-steps { grid-template-columns: 1fr 1fr; }
    .team-stats { grid-template-columns: 1fr 1fr; }
    .service-detail-card { flex-direction: column; }
    .service-sidebar { position: static; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 26px; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .gallery-grid, .gallery-masonry { grid-template-columns: 1fr; }
    .filter-btn { padding: 8px 16px; font-size: 12px; }
    .methodology-steps { grid-template-columns: 1fr; }
    .team-stats { grid-template-columns: 1fr; }
}
