/*
Theme Name: CLT Electrical
Theme URI: https://cltelectric.co.za
Author: DijiSol Solutions
Author URI: https://dijisol.co.za
Description: Professional theme for CLT Electrical — residential electrical and solar installation services in Roodepoort.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cltelectric
*/

/* ========== CSS Variables ========== */
:root {
    --blue: #1a3f6f;
    --blue-dark: #0f2a4d;
    --blue-light: #2a5a9a;
    --yellow: #f5b731;
    --yellow-dark: #d99e1a;
    --yellow-light: #ffd76a;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    padding-top: 38px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--yellow);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

/* ========== Utility ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    background: var(--yellow);
    color: var(--blue-dark);
    padding: 8px 16px;
    font-weight: 600;
}

.skip-link:focus {
    left: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--blue);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.section-header .accent-line {
    width: 60px;
    height: 4px;
    background: var(--yellow);
    margin: 15px auto 0;
    border-radius: 2px;
}

section {
    padding: 80px 0;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background: var(--yellow);
    color: var(--blue-dark);
    border-color: var(--yellow);
}

.btn-primary:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    color: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--blue);
    transform: translateY(-2px);
}

.btn-submit {
    background: var(--yellow);
    color: var(--blue-dark);
    border: none;
    padding: 16px 40px;
    font-size: 1.05rem;
    width: 100%;
}

.btn-submit:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ========== Top Bar ========== */
.top-bar {
    background: var(--blue-dark);
    color: var(--white);
    font-size: 20px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a {
    color: var(--yellow-light);
    font-weight: 500;
}

.top-bar a:hover {
    color: var(--yellow);
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ========== Navbar ========== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    min-height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--blue);
}

.nav-logo:hover {
    color: var(--blue);
}

.nav-logo img {
    max-height: 75px;
    width: auto;
}

.nav-logo-text span {
    color: var(--yellow);
}

/* ---------- Logo Image ---------- */
.nav-logo-img {
  height: 75px;
  width: auto;
  display: block;
}

/* ---------- Footer Logo Image ---------- */
.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    display: block;
    padding: 10px 16px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
    background: var(--gray-50);
}

.nav-cta {
    margin-left: 10px;
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--blue);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== Hero — Split Screen ========== */
.hero {
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    padding: 0;
}

.hero-left {
    width: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 80px;
    position: relative;
}

.hero-content {
    max-width: 520px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 24px;
}

.hero-headline {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-headline span {
    color: var(--yellow);
}

.hero-accent {
    font-style: italic;
    color: var(--yellow);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    display: block;
    line-height: 1.1;
}

.hero-subtitle {
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-right {
    width: 50%;
    position: relative;
    overflow: hidden;
    background: var(--blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.hero-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ========== Services ========== */
.services {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
    border-top: 4px solid #f5b731;
}

.service-card:nth-child(odd) { border-top-color: #1a3f6f; }
.service-card:nth-child(even) { border-top-color: #f5b731; }

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--yellow);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--blue);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========== Why Choose Us ========== */
.why-us {
    background: #f0f4f8;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    background: #fff;
    border-top: 4px solid #f5b731;
    box-shadow: 0 2px 12px rgba(26, 63, 111, 0.08);
    transition: box-shadow 0.3s, transform 0.3s;
}

.why-card:nth-child(odd) { border-top-color: #1a3f6f; }
.why-card:nth-child(even) { border-top-color: #f5b731; }

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon svg {
    width: 28px;
    height: 28px;
    color: var(--blue-dark);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--blue);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* ========== About / Trusted Experts ========== */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.about-stats {
    display: flex;
    gap: 20px;
    margin-top: -40px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.about-stat {
    background: var(--white);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
}

.about-stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--yellow);
    font-weight: 700;
}

.about-stat span {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.about-content .section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    margin: 24px 0 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text);
}

.about-feature svg {
    color: var(--yellow);
    flex-shrink: 0;
}

/* ========== Gallery ========== */
.gallery {
    background: var(--gray-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    border: 1px solid var(--gray-300);
    cursor: pointer;
}

.gallery-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 63, 111, 0.85));
    padding: 30px 16px 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ========== Recent Projects ========== */
.recent-projects {
    background: var(--gray-50);
}

.section-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 1.15rem;
    color: var(--blue);
    margin-bottom: 5px;
}

.project-info p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ========== Service Areas ========== */
.areas-section {
    padding: 80px 0;
    background: #f0f4f8;
    text-align: center;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
}

.area-pill {
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
    background: var(--blue);
    transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    cursor: default;
    box-shadow: 0 4px 12px rgba(26,63,111,0.35);
}

.area-pill:hover {
    background: var(--yellow);
    color: var(--blue);
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(245,183,49,0.4);
}

.areas-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 24px;
    font-size: 1rem;
}

/* ========== Contact ========== */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.contact-form {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font);
    font-size: 0.95rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--gray-800);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26, 63, 111, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    height: 100%;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

.contact-info-card:hover {
    border-color: var(--yellow);
    box-shadow: var(--shadow-sm);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--yellow);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-card h4 {
    font-size: 1rem;
    color: var(--blue);
    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.contact-info-card a:hover {
    color: var(--yellow);
}

/* ========== Other Services Page ========== */
.other-services-page {
    background: var(--gray-50);
}

.other-services-intro {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.other-services-intro p {
    font-size: 1.05rem;
    color: var(--gray-600);
}

.other-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.other-service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--yellow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.other-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.other-service-image {
    height: 320px;
    overflow: hidden;
}

.other-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-service-content {
    padding: 24px;
}

.other-service-content h3 {
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: 10px;
}

.other-service-content p {
    color: var(--gray-600);
    margin-bottom: 10px;
}

.other-service-content .service-note {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--yellow-dark);
    margin-bottom: 0;
}

/* ========== Footer ========== */
.footer {
    background: var(--blue-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo:hover {
    color: var(--white);
}

.footer-logo span {
    color: var(--yellow);
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-icon {
    min-width: 20px;
    text-align: center;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ========== Fade-in Animations ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== WhatsApp Float ========== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* ========== Lightbox ========== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    cursor: pointer;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    z-index: 10001;
}
.lightbox-close:hover {
    color: #f5b731;
}

.gallery-item img,
.project-image img {
    cursor: pointer;
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-headline {
        font-size: 2.4rem;
    }

    .about-grid {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 1.05rem;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 15px;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Top Bar */
    .top-bar .container {
        justify-content: center;
        font-size: 0.8rem;
    }

    .top-bar-right {
        display: none;
    }

    /* Hero */
    .hero {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        width: 100%;
        padding: 100px 30px 60px;
    }

    .hero-right {
        width: 100%;
        height: 300px;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-accent {
        font-size: 2.6rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Sections */
    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    /* Grids */
    .services-grid,
    .why-us-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .other-services-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 25px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.7rem;
    }

    .hero-accent {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 25px 20px;
    }

    .container {
        padding: 0 15px;
    }
}
