@charset "utf-8";
/* CSS Document */

/* ==========================================================================
   1. CSS Variables - Unified Design System
   ========================================================================== */

:root {
    /* Brand Colors */
    --primary-blue: #007bff;
    --primary-blue-dark: #0056b3;
    --secondary-gray: #6c757d;
    --accent-gold: #ffd700;
    --accent-green: #28a745;
    --accent-purple: #667eea;
    --accent-orange: #ff6b35;
    --accent-teal: #20c997;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-dark: #232323;
    --text-muted: #666666;
    --text-light-gray: #cccccc;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-dark: #333333;
    --bg-light: #f8f9fa;
    --bg-overlay: rgba(0, 0, 0, 0.6);
    
    /* Typography */
    --font-family: 'Arial', sans-serif;
    --font-size-xl: 3.5rem;
    --font-size-lg: 2.5rem;
    --font-size-md: 1.5rem;
    --font-size-base: 1rem;
    
    /* Layout */
    --container-width: 1200px;
    --border-radius: 15px;
    --border-radius-sm: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: 0.3s ease;
}

/* ==========================================================================
   2. Reset and Base Styles
   ========================================================================== */

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

body {
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   3. Navigation - Unified Across All Pages
   ========================================================================== */

.navbar {
    background: var(--bg-dark);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all var(--transition);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: var(--font-size-md);
    font-weight: bold;
    color: var(--text-white);
    text-decoration: none;
    transition: color var(--transition);
}

.navbar-brand:hover {
    color: var(--accent-gold);
}

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

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 400;
    padding: 0.5rem 1rem;
    transition: all var(--transition);
    border-radius: var(--border-radius-sm);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Mobile Navigation */
.navbar-toggler {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    margin: 3px 0;
    transition: var(--transition);
}

/* ==========================================================================
   4. Hero/Header Sections - Industry-Specific Backgrounds
   ========================================================================== */

.page-hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    padding: 120px 20px 60px;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-overlay);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Industry-Specific Backgrounds */
.hero-home {
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), 
                url('https://images.unsplash.com/photo-1518709268805-4e9042af2176?ixlib=rb-4.0.3&auto=format&fit=crop&w=2025&q=80');
}

.hero-web {
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), 
                url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
}

.hero-it {
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), 
                url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.hero-graphic {
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), 
                url('https://images.unsplash.com/photo-1561070791-2526d30994b5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
}

.hero-electrical {
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), 
                url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
}

.hero-clocks {
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), 
                url('https://images.unsplash.com/photo-1501139083538-0139583c060f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.page-hero h1 {
    font-size: var(--font-size-xl);
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.hero-sub-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-light-gray);
}

.hero-highlight {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--accent-gold);
    font-weight: 500;
}

/* ==========================================================================
   5. Buttons - Unified Button System
   ========================================================================== */

.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition);
    text-align: center;
    min-width: 160px;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

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

.btn-secondary:hover {
    background: var(--text-white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--text-dark);
    border-color: var(--accent-gold);
}

.btn-gold:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* ==========================================================================
   6. Content Sections
   ========================================================================== */

.content-section {
    padding: 80px 0;
}

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

.section-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

.section-title {
    text-align: center;
    font-size: var(--font-size-lg);
    margin-bottom: 50px;
    font-weight: 700;
}

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

/* ==========================================================================
   7. Service Cards - Unified Card System
   ========================================================================== */

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

.service-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all var(--transition);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    transition: left var(--transition);
}

.service-card:hover::before {
    left: 0;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
    display: block;
}

.service-card h3 {
    font-size: var(--font-size-md);
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-card p {
    font-size: var(--font-size-base);
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-link {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all var(--transition);
}

.service-link:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

/* Glassmorphism Cards for Dark Backgrounds */
.service-card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    color: var(--text-white);
}

.service-card-glass:hover {
    background: rgba(255, 255, 255, 0.15);
}

.service-card-glass h3 {
    color: var(--accent-gold);
    font-size: 1.4rem;
}

.service-card-glass p,
.service-card-glass ul li {
    color: var(--text-white);
}

.service-card-glass ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.service-card-glass ul li {
    padding: 5px 0 5px 20px;
    position: relative;
}

.service-card-glass ul li:before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* Highlight Cards */
.service-card-highlight {
    background: linear-gradient(135deg, var(--accent-purple) 0%, #764ba2 100%);
    color: var(--text-white);
}

.service-card-highlight h3 {
    color: var(--text-white);
}

.service-card-highlight p {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   8. Gallery Section
   ========================================================================== */

.gallery-section {
    padding: 80px 0;
    background: linear-gradient(rgba(53, 53, 53, 0.7), rgba(53, 53, 53, 0.7)), 
                url('https://images.unsplash.com/photo-1561070791-2526d30994b5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-item-img {
    overflow: hidden;
    position: relative;
    flex: 1;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform var(--transition);
    max-height: 400px;
    object-fit: cover;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-item-content {
    padding: 20px;
    background: var(--bg-white);
    border-top: 1px solid #f0f0f0;
}

.gallery-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

/* Lightbox */
.lightbox {
    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: 2000;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all var(--transition);
}

.lightbox.show {
    visibility: visible;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: none;
    max-height: none;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox img {
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 80px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: var(--text-white);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   9. Coverage/Info Sections
   ========================================================================== */

.coverage-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

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

.coverage-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.coverage-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: var(--font-size-base);
    color: var(--text-muted);
}

.coverage-list li:before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 10px;
}

.info-note {
    background: #e8f4fd;
    padding: 20px;
    border-radius: 10px;
    border-left-style: solid;
    border-left-width: 4px;
    font-style: italic;
    margin-top: 30px;
	color: var(--text-dark)
}

.coverage-cta {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.coverage-cta h3 {
    color: var(--text-white);
    font-size: var(--font-size-md);
    margin-bottom: 15px;
}

.coverage-cta p {
    color: var(--text-light-gray);
    font-size: var(--font-size-base);
    margin-bottom: 25px;
}

/* ==========================================================================
   10. Contact Section
   ========================================================================== */

.contact-section {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 2px solid var(--accent-gold);
    backdrop-filter: blur(10px);
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.phone-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* ==========================================================================
   11. Web Links Section
   ========================================================================== */

.web-links {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.web-links a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition);
    display: inline-block;
    margin: 5px 0;
}

.web-links a:hover {
    color: var(--text-white);
    text-shadow: 0 0 10px var(--accent-gold);
    transform: translateX(5px);
}

/* ==========================================================================
   12. Responsive Design
   ========================================================================== */

/* Tablet Styles */
@media (max-width: 768px) {
    .navbar-toggler {
        display: flex;
    }
    
    .navbar-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .navbar-nav.show {
        display: flex;
    }
    
    .page-hero {
        padding: 100px 15px 40px;
        background-attachment: scroll;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-section {
        padding: 30px 20px;
    }
    
    .contact-section h2 {
        font-size: 1.5rem;
    }
    
    .phone-number {
        font-size: 2rem;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-sub-text,
    .hero-highlight {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 140px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .gallery-item img {
        max-height: 300px;
    }
    
    .lightbox {
        padding: 10px;
    }
    
    .lightbox img {
        max-width: calc(100vw - 20px);
        max-height: calc(100vh - 60px);
    }
    
    .lightbox-close {
        top: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
    
    .coverage-text h3 {
        font-size: 1.5rem;
    }
    
    .coverage-text p {
        font-size: 1rem;
    }
    
    .coverage-cta {
        padding: 30px 20px;
    }
    
    .info-note {
        padding: 15px;
        font-size: 0.9rem;
	}
    
    .contact-section h2 {
        font-size: 1.3rem;
    }
    
    .phone-number {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .web-links {
        padding: 20px;
    }
}

/* ==========================================================================
   13. Utility Classes
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.text-gold { color: var(--accent-gold); }
.text-primary { color: var(--primary-blue); }
.text-white { color: var(--text-white); }

.font-bold { font-weight: bold; }
.font-light { font-weight: 300; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

/* ==========================================================================
   14. Animation Keyframes
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.pulse-hover:hover {
    animation: pulse 0.3s ease-in-out;
}
