/* Utility for dark card backgrounds */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg:#070b14;
    --panel:#0f172a;
    --card:#111c33;
    --text:#eef3ff;
    --muted:#b7c2e1;
    --brand:#d4af37; /* gold */
    --brand2:#2aa8ff;
    --radius:18px;
    --max:1180px;
    --shadow: 0 14px 34px rgba(0,0,0,.35);
    --line: rgba(255,255,255,.10);
}

body {
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width:var(--max);
    margin:0 auto;
    padding:0 18px;
}

/* ===== HEADER ===== */
.header {
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(7,11,20,.70);
    backdrop-filter: blur(10px);
    border-bottom:1px solid var(--line);
}

.header-content {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:14px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    height:44px;
    width:auto;
    border-radius:10px;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.company-name {
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.company-tagline {
    color: var(--brand);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

/* NAVIGATION */
.navbar ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.navbar a {
    color:var(--muted);
    text-decoration:none;
    font-weight:800;
    font-size:14px;
    padding:8px 10px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.08);
}

.navbar a:hover {
    color:var(--text);
    border-color:rgba(212,175,55,.45);
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
    flex-shrink: 0;
}

.phone-label {
    color: var(--brand);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.phone-number {
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

.phone-number:hover {
    color: var(--brand);
}

/* ===== HERO SECTION ===== */
.hero {
    position:relative;
    overflow:hidden;
    border-bottom:1px solid var(--line);
}

.hero-overlay {
    position:absolute;
    inset:0;
    background:url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=2000&q=60') center/cover no-repeat;
    filter:saturate(1.1) contrast(1.05);
    transform:scale(1.02);
}

.hero::before {
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(900px 320px at 15% 10%, rgba(42,168,255,.22), transparent 60%),
        radial-gradient(800px 280px at 85% 20%, rgba(212,175,55,.20), transparent 55%),
        linear-gradient(180deg, rgba(0,0,0,.40), rgba(0,0,0,.78));
    z-index:1;
}

.hero-content {
    position:relative;
    z-index:2;
    padding:64px 0 56px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size:46px;
    line-height:1.05;
    margin:14px 0 12px;
    font-weight:950;
}

.hero p {
    max-width:780px;
    color:var(--muted);
    font-size:18px;
    line-height:1.65;
    margin:0 0 18px;
}

.hero-subtext {
    display:inline-flex;
    gap:10px;
    align-items:center;
    color:var(--muted);
    font-weight:800;
    font-size:13px;
    padding:8px 12px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:999px;
    background:rgba(7,11,20,.55);
}

.hero-subtext b {
    color:var(--brand);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    font-weight:950;
    padding:12px 16px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:var(--shadow);
}

.btn-primary {
    background:linear-gradient(135deg,var(--brand) 0%, #ffe08a 100%);
    color:#1a1406;
    border-color:rgba(212,175,55,.65);
}

.btn-secondary {
    background:rgba(15,23,42,.74);
    color:var(--text);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 50px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--light-bg);
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--light-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding:46px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size:26px;
    margin:0 0 8px;
    font-weight:950;
}

.section-header p {
    color:var(--muted);
    margin:0;
    line-height:1.75;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background:rgba(17,28,51,.78);
    border:1px solid rgba(255,255,255,.10);
    border-radius:var(--radius);
    padding:18px;
    box-shadow:var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.service-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), #2c5282);
    color: var(--white);
    border-color: var(--secondary-color);
}

.service-card.highlight .service-list li {
    color: rgba(255, 255, 255, 0.9);
}

.service-header {
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.service-icon {
    width:42px;
    height:42px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background: radial-gradient(circle at 30% 30%, rgba(42,168,255,.35), rgba(42,168,255,.06));
    border:1px solid rgba(42,168,255,.25);
}

.service-card.highlight .service-icon {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
}

.service-img {
    width:42px;
    height:42px;
    object-fit:cover;
    border-radius:14px;
}

.service-header h3 {
    margin:0;
    font-size:18px;
    font-weight:950;
}

.service-list {
    margin:12px 0 0;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
}

.service-list li {
    display:flex;
    gap:10px;
    align-items:flex-start;
    color:var(--muted);
}

.service-list li::before {
    content: '→';
    color: var(--brand2);
    font-weight: bold;
}

.service-card.highlight .service-list li::before {
    color: var(--accent-color);
}

/* ===== PROJECTS SECTION ===== */
.projects {
    padding:46px 0;
}

.projects-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.project-card {
    border-radius:16px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.12);
    background:#0b1220;
}

.project-card img {
    width:100%;
    height:190px;
    object-fit:cover;
    display:block;
}

.project-info {
    padding: 25px;
}

.project-info h4 {
    font-size:18px;
}

/* ===== WHY US SECTION ===== */
.why-us {
    padding:46px 0;
}

.why-us-grid {
    display:grid;
    gap:16px;
}

.why-us-grid {
    grid-template-columns:repeat(3,1fr);
}

.why-us-item {
    background:rgba(17,28,51,.78);
    border:1px solid rgba(255,255,255,.10);
    border-radius:var(--radius);
    padding:18px;
    box-shadow:var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.why-us-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.why-us-icon {
    letter-spacing:2px;
    color:var(--brand);
    font-weight:950;
}

.why-us-item h4 {
    font-size:18px;
    margin:10px 0 0;
    font-weight:950;
}

.why-us-item p {
    margin:6px 0 0;
    color:var(--muted);
    line-height:1.6;
    font-size:14px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.rating {
    color: var(--accent-color);
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--dark-text);
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 13px;
    color: var(--light-text);
    font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #2c5282);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding:46px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--light-bg);
    color: var(--dark-text);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 100, 31, 0.1);
}

.contact-info-item {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-link {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--accent-color);
}

.contact-info-item p {
    font-size: 14px;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.info-note {
    color: var(--light-text);
    font-size: 12px;
    margin-top: 8px;
}

/* ===== FOOTER ===== */
.footer {
    padding:26px 0;
    border-top:1px solid var(--line);
    color:var(--muted);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 18px;
    font-size: 16px;
    color: var(--text);
    font-weight: 700;
}

.footer-section p {
    color: var(--muted);
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--brand2);
    text-decoration: none;
    font-weight: 900;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-text {
    text-align: center;
    flex: 1;
}

.footer-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .navbar ul {
        gap: 20px;
    }

    .navbar a {
        font-size: 13px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        padding: 11px 25px;
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .section-header p {
        font-size: 14px;
    }

    .services-grid,
    .projects-grid,
    .why-us-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header-phone {
        display: none;
    }

    .navbar ul {
        gap: 12px;
        flex-wrap: wrap;
    }

    .navbar a {
        font-size: 12px;
    }

    .company-name {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 13px;
    }

    .service-header {
        flex-direction: column;
        align-items: self-start;
    }

    .service-card {
        padding: 25px;
    }

    .contact-form-section h2,
    .contact-info-section h2 {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 28px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px;
}

.company-name {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* NAVIGATION */
.navbar ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.navbar a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.navbar a:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(255, 230, 109, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 230, 109, 0.6);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--light-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.services-grid {
    display:grid;
    gap:16px;
}

.services-grid {
    grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
}

.service-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
}

.service-card:nth-child(2) {
    border-top-color: var(--secondary-color);
}

.service-card:nth-child(3) {
    border-top-color: var(--accent-color);
}

.service-card:nth-child(4) {
    border-top-color: #FF6B9D;
}

.service-card:nth-child(5) {
    border-top-color: #4F7C8E;
}

.service-card:nth-child(6) {
    border-top-color: #C44569;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    border-radius: 15px;
}

.service-card:nth-child(2) .service-icon {
    color: var(--secondary-color);
}

.service-card:nth-child(3) .service-icon {
    color: var(--accent-color);
}

.service-card:nth-child(4) .service-icon {
    color: #FF6B9D;
}

.service-card:nth-child(5) .service-icon {
    color: #4F7C8E;
}

.service-card:nth-child(6) .service-icon {
    color: #C44569;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 80px 0;
    background: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s ease;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--accent-color);
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.prev, .next {
    background: rgba(255, 107, 107, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 20px;
    transition: var(--transition);
}

.prev:hover, .next:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-text p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 16px;
}

.about-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-list li {
    padding: 10px;
    font-weight: 500;
    color: var(--dark-color);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 0;
    background: #f9f9f9;
}

.contact-form {
    max-width:600px;
    margin:0 auto;
    background:rgba(17,28,51,.78);
    border:1px solid rgba(255,255,255,.10);
    border-radius:var(--radius);
    padding:50px;
    box-shadow:var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--accent-color);
}

.footer-section p {
    color: #bbb;
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .gallery-item {
        height: 200px;
    }

    .about-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    .lightbox-content {
        width: 95%;
    }

    .close {
        font-size: 30px;
        top: 15px;
        right: 20px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 18px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .service-card {
        padding: 25px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 150px;
    }
}
@media (max-width:980px){ .services-grid, .why-us-grid, .projects-grid{grid-template-columns:1fr} .hero h1{font-size:36px} .project-card img{height:220px} }

/* ===== USER REQUESTED VISUAL FIXES ===== */
:root {
    --primary-color:#0b1f3f;
    --secondary-color:#1672d6;
    --accent-color:#f2a311;
    --dark-color:#0a1222;
    --dark-text:#0f172a;
    --light-text:#475569;
    --light-bg:#e9f2ff;
    --border-color:#b7c8e6;
    --transition:all 0.28s ease;
}

/* Header logo: full view in header */
.header .logo-img {
    width:auto !important;
    height:58px;
    max-width:180px;
    object-fit:contain !important;
    object-position:center;
    background:transparent !important;
    padding:0 !important;
    border-radius:8px;
}

/* Hero content + buttons matching reference */
.hero.hgc-hero {
    min-height:620px;
    height:auto;
}

.hero.hgc-hero .hero-overlay {
    background:
        linear-gradient(110deg, rgba(32,38,48,.72), rgba(165,95,44,.72)),
        url('assets/images/construction.jpeg') center/cover no-repeat;
    filter:none;
    transform:none;
}

.hero.hgc-hero::before,
.hero.hgc-hero::after {
    display:none;
}

.hero.hgc-hero .hero-content {
    max-width:1060px;
    padding:82px 0 68px;
    text-align:center;
}

.hero.hgc-hero h1 {
    max-width:980px;
    margin:0 auto 16px;
    color:#fff;
    font-size:clamp(44px, 6.2vw, 78px);
    line-height:1.05;
    font-weight:900;
}

.hero.hgc-hero p {
    max-width:980px;
    margin:0 auto 20px;
    color:#f5f7fb;
    font-size:clamp(20px, 3vw, 52px);
    line-height:1.25;
    text-align:center;
}

.hero.hgc-hero .hero-subtext {
    display:block;
    background:transparent;
    border:none;
    border-radius:0;
    color:#f2a311;
    font-size:clamp(20px, 3vw, 42px);
    font-weight:900;
    letter-spacing:2px;
    padding:0;
    margin:0 auto;
    text-align:center;
    line-height:1.2;
}

.hero.hgc-hero .hero-buttons {
    margin-top:34px;
    gap:16px;
    justify-content:center;
}

.hero.hgc-hero .btn {
    min-width:300px;
    min-height:56px;
    border-radius:999px;
    font-size:clamp(16px, 1.45vw, 28px);
    font-weight:900;
    letter-spacing:.6px;
    text-transform:uppercase;
}

.hero.hgc-hero .btn-primary {
    background:#f2a311;
    color:#fff;
    border:2px solid #f2a311;
    box-shadow:0 8px 24px rgba(242,163,17,.42);
}

.hero.hgc-hero .btn-secondary {
    background:#161c24;
    color:#0f4476;
    border:2px solid #0f4476;
    box-shadow:0 8px 24px rgba(15,68,118,.26);
}

/* Projects grid: keep 4 cards aligned on wide screens */
#projects .projects-grid {
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    align-items:stretch;
}

#projects .project-card {
    height:100%;
    display:flex;
    flex-direction:column;
}

#projects .project-info {
    flex:1;
}

#projects .projects-ticker {
    position:relative;
    overflow:hidden;
    border-radius:999px;
    border:1px solid rgba(137,168,223,.45);
    background:linear-gradient(90deg, rgba(12,29,58,.96), rgba(23,58,110,.96));
    margin:0 auto 18px;
}

#projects .projects-ticker-track {
    display:flex;
    align-items:center;
    gap:26px;
    width:max-content;
    padding:10px 18px;
    animation:projectsTicker 22s linear infinite;
}

#projects .projects-ticker-item {
    color:#edf3ff;
    font-size:12px;
    font-weight:800;
    letter-spacing:.5px;
    text-transform:uppercase;
    white-space:nowrap;
}

#projects .projects-ticker-item.live {
    color:#f2a311;
}

@keyframes projectsTicker {
    from { transform:translateX(0); }
    to { transform:translateX(-50%); }
}

#projects .projects-ticker:hover .projects-ticker-track {
    animation-play-state:paused;
}

@media (prefers-reduced-motion: reduce) {
    #projects .projects-ticker-track {
        animation:none;
    }
}

/* About overview section */
.about-overview {
    padding:56px 0 26px;
    background:linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%);
    border-top:1px solid #d7e4fb;
    border-bottom:1px solid #d7e4fb;
}

.about-overview .section-header {
    margin-bottom:26px;
}

.about-overview .section-header h2,
.about-overview .section-header p {
    color:#0f172a !important;
}

.overview-grid {
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:18px;
}

.overview-card {
    background:#f2f7ff;
    border:1px solid #b6cff8;
    border-radius:18px;
    padding:22px;
    box-shadow:0 12px 24px rgba(12,34,74,.08);
}

.overview-card h3 {
    margin:0 0 12px;
    font-size:30px;
    line-height:1.12;
    color:#0d2347;
    font-weight:900;
}

.overview-card p {
    margin:0 0 14px;
    color:#1f2937;
    line-height:1.75;
    font-size:16px;
}

.overview-list {
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    gap:10px;
}

.overview-list li {
    display:flex;
    align-items:flex-start;
    gap:9px;
    color:#0f172a;
    line-height:1.45;
    font-weight:700;
}

.overview-list .hgc-dot {
    flex:0 0 auto;
    margin-top:9px;
}

.overview-highlight {
    background:linear-gradient(140deg, #edf5ff 0%, #dbeafe 100%);
    border-color:#8eb6f8;
}

.overview-highlight .btn {
    margin-top:16px;
    width:fit-content;
    min-width:0;
    padding:10px 18px;
    font-size:14px;
}

/* Services section: blue cards + black heading/subheading */
#services .section-header h2,
#services .section-header p {
    color:#000 !important;
}

#services .service-card {
    background:#dbeafe !important;
    border:1px solid #93c5fd !important;
    border-top:4px solid #2563eb !important;
    box-shadow:0 10px 24px rgba(37,99,235,.16);
}

#services .service-card h3,
#services .service-card p,
#services .service-card li {
    color:#0f172a !important;
}

#services .service-icon {
    background:#bfdbfe;
    color:#1d4ed8 !important;
}

/* Contact section readability fixes */
#contact,
.contact {
    background:#f5f7fb;
    color:#111827;
}

.contact-form {
    background:#fff;
    border:1px solid #cddbf2;
    box-shadow:0 12px 30px rgba(11,31,63,.10);
}

.contact-form-section h2,
.contact-info-section h2 {
    color:#0f172a !important;
}

.about-grid {
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:14px;
    margin-bottom:22px;
}

.about-box {
    background:#e9f2ff;
    border:1px solid #c7dbff;
    border-radius:12px;
    padding:16px;
    min-width:0;
    overflow:hidden;
}

.about-box h2 {
    color:#0f172a;
    font-size:18px;
    margin-bottom:8px;
}

.about-box .hgc-quote,
.about-box li {
    color:#1f2937 !important;
}

.about-box .hgc-quote {
    overflow-wrap:anywhere;
}

.about-box .about-list {
    display:grid;
    grid-template-columns:1fr !important;
    gap:10px;
    margin-top:10px;
}

.about-box .about-list li {
    display:flex;
    align-items:flex-start;
    gap:8px;
    min-width:0;
    overflow-wrap:anywhere;
}

.about-box .about-list .hgc-dot {
    flex:0 0 auto;
    margin-top:8px;
}

.contact-form label {
    color:#111827 !important;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    background:#fff !important;
    color:#0f172a !important;
    border:1px solid #94a3b8 !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color:#64748b;
}

.contact-info-item h4,
.contact-info-item p,
.contact-info-section .hgc-quote {
    color:#0f172a !important;
}

.contact-link {
    color:#0b63ce !important;
}

.info-note {
    color:#4b5563 !important;
}

/* Footer logo moved above divider */
.footer-logo-top {
    display:flex;
    align-items:center;
    justify-content:flex-start;
    margin:10px 0 18px;
}

.footer-logo-top .footer-logo-img {
    height:66px;
    width:auto;
    object-fit:contain;
}

.footer-bottom {
    border-top:none !important;
    padding-top:8px;
    justify-content:center;
}

.footer-bottom .footer-text {
    width:100%;
    text-align:center;
}

/* Scroll to top button */
.back-to-top {
    position:fixed;
    right:20px;
    bottom:20px;
    width:46px;
    height:46px;
    border:none;
    border-radius:999px;
    background:#1672d6;
    color:#fff;
    font-size:24px;
    font-weight:900;
    line-height:1;
    cursor:pointer;
    display:grid;
    place-items:center;
    box-shadow:0 10px 20px rgba(0,0,0,.28);
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:all .22s ease;
    z-index:1500;
}

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

.back-to-top:hover {
    background:#0b63ce;
}

@media (max-width:980px) {
    .overview-grid {
        grid-template-columns:1fr;
    }

    #projects .projects-grid {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .header .header-content {
        flex-wrap:wrap;
        justify-content:center;
        gap:12px;
        padding:10px 0;
    }

    .header .navbar ul {
        display:flex;
        flex-direction:row;
        justify-content:center;
        flex-wrap:wrap;
        gap:10px;
    }

    .hero.hgc-hero .btn {
        min-width:240px;
        min-height:54px;
        font-size:clamp(15px, 2.3vw, 22px);
    }
}

@media (max-width:768px) {
    .hero.hgc-hero {
        min-height:460px;
    }

    .hero.hgc-hero .hero-content {
        padding:56px 0 48px;
    }

    #projects .projects-grid {
        grid-template-columns:1fr;
    }

    #projects .projects-ticker-track {
        gap:18px;
        padding:9px 14px;
    }

    #projects .projects-ticker-item {
        font-size:11px;
        letter-spacing:.35px;
    }

    .hero.hgc-hero h1 {
        font-size:clamp(34px, 10.2vw, 52px);
        line-height:1.08;
    }

    .hero.hgc-hero p {
        font-size:clamp(16px, 6vw, 28px);
        line-height:1.3;
    }

    .hero.hgc-hero .hero-subtext {
        letter-spacing:1px;
        font-size:clamp(15px, 5.2vw, 24px);
    }

    .about-overview {
        padding:42px 0 18px;
    }

    .overview-card h3 {
        font-size:24px;
    }

    .overview-card p,
    .overview-list li {
        font-size:15px;
    }

    .hero.hgc-hero .btn {
        width:min(100%, 420px);
        min-width:0;
    }

    .header .logo {
        width:100%;
        justify-content:center;
        gap:10px;
    }

    .header .company-info {
        text-align:center;
        align-items:center;
    }

    .header .header-phone {
        width:100%;
        align-items:center;
    }

    .header .navbar ul {
        display:flex;
        flex-direction:row;
        justify-content:center;
        flex-wrap:wrap;
        gap:8px;
    }

    .header .navbar a {
        padding:8px 12px;
        font-size:14px;
    }

    .header .company-tagline {
        display:none;
    }

    .back-to-top {
        width:42px;
        height:42px;
        right:14px;
        bottom:14px;
    }
}
