/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.nav-logo h2 {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    min-height: 44px; /* Better tap target */
}

.nav-link:hover {
    color: #1e3a8a;
    background: rgba(30, 58, 138, 0.1);
}

.nav-link i {
    font-size: 0.9rem;
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1e3a8a;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(30, 58, 138, 0.1);
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1e3a8a;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section - Professional Update */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e40af 75%, #3b82f6 100%);
    color: white;
    padding: 120px 20px 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 138, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
    animation: heroBackground 20s ease-in-out infinite;
}

@keyframes heroBackground {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Floating Elements - More Subtle */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero .floating-element-1 {
    position: absolute;
    top: 30%;
    left: 5%;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(30, 58, 138, 0.2));
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero .floating-element-2 {
    position: absolute;
    bottom: 20%;
    right: 20%;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.15), rgba(59, 130, 246, 0.15));
    border-radius: 20px;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 240px);
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: fit-content;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-badge i {
    color: #fbbf24;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 25%, #e2e8f0 50%, #cbd5e1 75%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.25rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    color: #e2e8f0;
    font-weight: 400;
}

.service-preview {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.service-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 90px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.service-icon:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    transform: translateY(-4px) scale(1.05);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.service-icon i {
    font-size: 1.6rem;
    color: #fbbf24;
}

.service-icon span {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.service-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 191, 36, 0.08));
    border-radius: 16px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(251, 191, 36, 0.25);
    min-width: 90px;
    box-shadow: 0 8px 32px rgba(251, 191, 36, 0.12);
}

.service-badge i {
    font-size: 1.6rem;
    color: #fbbf24;
}

.service-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    color: #fbbf24;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 52px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.trust-item i {
    color: #fbbf24;
    font-size: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.5s both;
    position: relative;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-visual {
    width: 100%;
    max-width: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.installation-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    opacity: 0.7;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

.showcase-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.showcase-item.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.showcase-item i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.showcase-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.showcase-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.8;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator span {
    font-size: 0.8rem;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Services Overview Section */
.services-overview {
    padding: 100px 0;
    background: #f8fafc;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card .service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-card .service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.service-card .service-features li i {
    color: #10b981;
    font-size: 0.8rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.service-card .btn {
    width: 100%;
    justify-content: center;
}

/* Service Sections */
.service-section {
    padding: 100px 0;
    position: relative;
}

.service-section.alt-bg {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.service-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.3), transparent);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

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

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.service-features {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature i {
    font-size: 2rem;
    color: #1e3a8a;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.feature p {
    color: #64748b;
    line-height: 1.6;
}

.service-benefits {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-benefits h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-benefits ul {
    list-style: none;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
}

.service-benefits li i {
    color: #10b981;
    font-size: 0.9rem;
}

.service-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-placeholder {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-placeholder p {
    font-weight: 500;
    font-size: 1.1rem;
}

.service-cta {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: #1e293b;
    color: white;
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials .section-header p {
    color: #94a3b8;
}

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

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #94a3b8;
    font-size: 0.9rem;
}

.rating {
    color: #fbbf24;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.trust-signals {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.trust-item i {
    font-size: 2rem;
    color: #1e3a8a;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.trust-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.trust-item p {
    color: #64748b;
    font-size: 0.9rem;
}

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.contact-item p {
    color: #64748b;
    line-height: 1.6;
}

.contact-item a {
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1e40af;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

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


/* Breadcrumb Navigation */
.breadcrumb {
    margin-bottom: 1rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #ffffff;
    text-decoration: none;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.5rem;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 500;
}

/* Service Navigation Section */
.service-navigation {
    background: #f8fafc;
    padding: 80px 0;
    border-top: 1px solid #e2e8f0;
}

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

.service-navigation .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-navigation .section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.service-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-btn {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

.dstv-btn:hover {
    border-color: #1e3a8a;
}

.cctv-btn:hover {
    border-color: #059669;
}

.service-btn-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.dstv-btn .service-btn-icon {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.cctv-btn .service-btn-icon {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
}

.service-btn-icon i {
    font-size: 2rem;
}

.service-btn-content {
    flex: 1;
}

.service-btn-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service-btn-content p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.service-btn-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-btn:hover .service-btn-arrow {
    background: #1e3a8a;
    color: white;
}

.service-btn-arrow i {
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1e3a8a;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #1e3a8a;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

.footer-code {
    font-size: 0.6rem;
    color: #475569;
    opacity: 0.3;
    margin-top: 0.3rem;
    font-family: monospace;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 999;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-link {
        justify-content: center;
        padding: 1rem;
        min-height: 56px;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 140px 20px 120px;
        min-height: 100vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .service-preview {
        justify-content: center;
        gap: 1rem;
    }

    .service-icon {
        min-width: 70px;
        padding: 0.8rem;
    }

    .hero-buttons {
        justify-content: center;
        margin: 2rem 0;
        gap: 1rem;
    }

    .trust-indicators {
        justify-content: center;
        gap: 1rem;
    }

    .installation-showcase {
        margin-top: 2rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-gallery {
        grid-template-columns: 1fr;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .service-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-btn {
        padding: 1.5rem;
    }
    
    .service-btn-icon {
        width: 60px;
        height: 60px;
        margin-right: 1rem;
    }
    
    .service-btn-icon i {
        font-size: 1.5rem;
    }
    
    .service-btn-content h3 {
        font-size: 1.3rem;
    }
    
    .service-btn-content p {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 120px 20px 80px;
    }
}

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

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

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 2rem 0;
    }

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

    .service-section,
    .testimonials,
    .about-section,
    .contact-section {
        padding: 60px 0;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .hero-placeholder {
        padding: 2rem;
    }

    .gallery-placeholder {
        padding: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Individual Service Pages */
.service-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    position: relative;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb span {
    opacity: 0.7;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.feature-item i {
    color: #fbbf24;
    font-size: 1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* DSTV Hero Background Image */
.dstv-hero {
    position: relative;
    min-height: 100vh;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
}

.dstv-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dstv-hero .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.dstv-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.dstv-hero .container {
    position: relative;
    z-index: 3;
}

/* DSTV Hero Content Layout */
.dstv-hero-content {
    padding: 2rem 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.dstv-hero-content .hero-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.dstv-hero-content .hero-text {
    flex: 1;
}

.dstv-hero-content .hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.dstv-hero-content .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.dstv-hero-content .hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.dstv-hero-content .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.dstv-hero-content .feature-item i {
    color: #10b981;
    font-size: 1rem;
}

.dstv-hero-content .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.dstv-hero-content .hero-visual {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dstv-hero-content .hero-visual i {
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    display: block;
}

.dstv-hero-content .hero-visual h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.dstv-hero-content .hero-visual p {
    font-size: 1rem;
    opacity: 0.8;
    color: #ffffff;
    margin: 0;
}

.dstv-hero-content .hero-visual-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

/* DSTV Services Grid Layout */
.dstv-services-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.dstv-services-grid .service-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dstv-services-grid .pricing-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.hero-visual {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-visual i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #fbbf24;
}

.hero-visual h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-visual p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* Service Details */
.service-details {
    padding: 100px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.service-info p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-features {
    display: grid;
    gap: 1.5rem;
}

.service-features .feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.service-features .feature i {
    font-size: 2rem;
    color: #1e3a8a;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.service-features .feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.service-features .feature p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Pricing Card */
.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.service-name {
    color: #64748b;
    font-weight: 500;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a8a;
}

.price-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: #f1f5f9;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #64748b;
}

.price-note i {
    color: #1e3a8a;
}

/* Service Process */
.service-process {
    padding: 100px 0;
    background: #f8fafc;
}

.service-process h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

/* Service Benefits */
.service-benefits {
    padding: 100px 0;
}

.service-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

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

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

.benefit i {
    font-size: 3rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.benefit h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.benefit p {
    color: #64748b;
    line-height: 1.6;
}

/* Service Gallery */
.service-gallery {
    padding: 100px 0;
    background: #f8fafc;
}

.service-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-placeholder {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.gallery-placeholder p {
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0;
}

/* Service FAQ */
.service-faq {
    padding: 100px 0;
}

.service-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Service CTA */
.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Navigation Active State */
.nav-link.active {
    color: #1e3a8a;
    background: rgba(30, 58, 138, 0.1);
}

.nav-link.active::after {
    width: 80%;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #1e3a8a;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        color: #fff;
        border: 2px solid #000;
    }
    
    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

/* CCTV Subtle Dark Theme */
.cctv-dark-theme {
    background: #f8fafc;
    color: #1e293b;
}

.cctv-dark-theme .navbar {
    background: rgba(248, 250, 252, 0.95);
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

.cctv-dark-theme .navbar.scrolled {
    background: rgba(248, 250, 252, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.cctv-dark-theme .nav-logo h2 {
    color: #1e3a8a;
}

.cctv-dark-theme .nav-link {
    color: #64748b;
}

.cctv-dark-theme .nav-link:hover {
    color: #1e3a8a;
    background: rgba(30, 58, 138, 0.1);
}

.cctv-dark-theme .nav-link.active {
    color: #1e3a8a;
    background: rgba(30, 58, 138, 0.1);
}

.cctv-dark-theme .bar {
    background-color: #1e3a8a;
}

.cctv-dark-theme .service-hero {
    position: relative;
    min-height: 100vh;
    color: white;
    overflow: hidden;
}

.cctv-dark-theme .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cctv-dark-theme .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cctv-dark-theme .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.cctv-dark-theme .cctv-hero-content {
    position: relative;
    z-index: 3;
}

.cctv-dark-theme .service-details {
    background: #f8fafc;
    color: #1e293b;
    padding: 60px 0;
}

.cctv-dark-theme .service-info h2 {
    color: #1e293b;
}

.cctv-dark-theme .service-info p {
    color: #64748b;
}

.cctv-dark-theme .service-features .feature h3 {
    color: #1e293b;
}

.cctv-dark-theme .service-features .feature p {
    color: #64748b;
}

.cctv-dark-theme .service-features .feature i {
    color: #1e3a8a;
}

.cctv-dark-theme .pricing-card {
    background: white;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cctv-dark-theme .pricing-card h3 {
    color: #1e293b;
}

.cctv-dark-theme .service-name {
    color: #64748b;
}

.cctv-dark-theme .price {
    color: #1e3a8a;
}

.cctv-dark-theme .price-note {
    background: #f1f5f9;
    color: #64748b;
}

.cctv-dark-theme .service-process {
    background: #f1f5f9;
    color: #1e293b;
    padding: 60px 0;
}

.cctv-dark-theme .service-process h2 {
    color: #1e293b;
}

.cctv-dark-theme .step {
    background: white;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cctv-dark-theme .step h3 {
    color: #1e293b;
}

.cctv-dark-theme .step p {
    color: #64748b;
}

.cctv-dark-theme .step-number {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.cctv-dark-theme .service-benefits {
    background: #f8fafc;
    color: #1e293b;
    padding: 60px 0;
}

.cctv-dark-theme .service-benefits h2 {
    color: #1e293b;
}

.cctv-dark-theme .benefit {
    background: white;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cctv-dark-theme .benefit h3 {
    color: #1e293b;
}

.cctv-dark-theme .benefit p {
    color: #64748b;
}

.cctv-dark-theme .benefit i {
    color: #1e3a8a;
}

.cctv-dark-theme .service-gallery {
    background: #f1f5f9;
    color: #1e293b;
    padding: 60px 0;
}

.cctv-dark-theme .service-gallery h2 {
    color: #1e293b;
}

.cctv-dark-theme .gallery-item {
    background: white;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cctv-dark-theme .gallery-placeholder {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
}

.cctv-dark-theme .service-faq {
    background: #f8fafc;
    color: #1e293b;
    padding: 60px 0;
}

.cctv-dark-theme .service-faq h2 {
    color: #1e293b;
}

.cctv-dark-theme .faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cctv-dark-theme .faq-item h3 {
    color: #1e293b;
}

.cctv-dark-theme .faq-item p {
    color: #64748b;
}

.cctv-dark-theme .service-cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 60px 0;
}

.cctv-dark-theme .cta-content h2 {
    color: #ffffff;
}

.cctv-dark-theme .cta-content p {
    color: #e2e8f0;
}

.cctv-dark-theme .footer {
    background: #1e293b;
    color: #ffffff;
    border-top: 1px solid #334155;
}

.cctv-dark-theme .footer-section h3,
.cctv-dark-theme .footer-section h4 {
    color: #ffffff;
}

.cctv-dark-theme .footer-section h3 {
    color: #60a5fa;
}

.cctv-dark-theme .footer-section p {
    color: #cbd5e1;
}

.cctv-dark-theme .footer-section ul li a {
    color: #cbd5e1;
}

.cctv-dark-theme .footer-section ul li a:hover {
    color: #60a5fa;
}

.cctv-dark-theme .footer-section ul li i {
    color: #60a5fa;
}

.cctv-dark-theme .footer-bottom {
    border-top: 1px solid #334155;
    color: #94a3b8;
}

.cctv-dark-theme .footer-code {
    color: #64748b;
    opacity: 0.2;
}

.cctv-dark-theme .social-link {
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}

.cctv-dark-theme .social-link:hover {
    background: #60a5fa;
    color: #ffffff;
}

.cctv-dark-theme .btn-primary {
    background: #1e3a8a;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.cctv-dark-theme .btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.cctv-dark-theme .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cctv-dark-theme .btn-secondary:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-2px);
}

.cctv-dark-theme .breadcrumb a {
    color: #e2e8f0;
}

.cctv-dark-theme .breadcrumb span {
    color: #94a3b8;
}

.cctv-dark-theme .hero-features .feature-item {
    color: #e2e8f0;
}

.cctv-dark-theme .hero-features .feature-item i {
    color: #fbbf24;
}

.cctv-dark-theme .hero-visual {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cctv-dark-theme .hero-visual i {
    color: #fbbf24;
}

.cctv-dark-theme .hero-visual h3 {
    color: #ffffff;
}

.cctv-dark-theme .hero-visual p {
    color: #e2e8f0;
}

/* CCTV Reorganized Layout */
.cctv-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cctv-hero-content .hero-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.cctv-hero-content .hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cctv-hero-content .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.cctv-hero-content .hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cctv-hero-content .hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.cctv-hero-content .hero-features .feature-item i {
    color: #60a5fa;
    font-size: 1rem;
}

.cctv-hero-content .hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cctv-hero-content .hero-visual {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
}

.cctv-hero-content .hero-visual i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #60a5fa;
}

.cctv-hero-content .hero-visual h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.cctv-hero-content .hero-visual p {
    font-size: 1rem;
    color: #cbd5e1;
    margin: 0;
}

.cctv-hero-content .hero-visual-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
}

/* CCTV Services Grid */
.cctv-services-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: start;
}

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

.cctv-services-grid .pricing-card {
    position: sticky;
    top: 100px;
}

/* Responsive Design for CCTV */
@media (max-width: 1024px) {
    .cctv-hero-content .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cctv-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cctv-services-grid .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cctv-hero-content .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .cctv-hero-content .hero-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .cctv-hero-content .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .cctv-hero-content .hero-visual {
        padding: 2rem;
    }
    
    .cctv-hero-content .hero-visual i {
        font-size: 3rem;
    }
    
    .cctv-hero-content .hero-visual-image {
        height: 150px;
    }
    
    .dstv-hero-content .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .dstv-hero-content .hero-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .dstv-hero-content .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .dstv-hero-content .hero-visual {
        padding: 2rem;
    }
    
    .dstv-hero-content .hero-visual i {
        font-size: 3rem;
    }
    
    .dstv-hero-content .hero-visual-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .cctv-hero-content .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .cctv-hero-content .hero-text p {
        font-size: 1rem;
    }
    
    .cctv-hero-content .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .cctv-hero-content .hero-visual {
        padding: 1.5rem;
    }
    
    .cctv-hero-content .hero-visual i {
        font-size: 2.5rem;
    }
    
    .cctv-dark-theme .service-hero {
        min-height: 80vh;
    }
    
    .cctv-dark-theme .hero-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .dstv-hero {
        min-height: 80vh;
    }
    
    .dstv-hero .hero-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .dstv-hero-content .hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .dstv-hero-content .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .dstv-hero-content .hero-text p {
        font-size: 1.1rem;
    }
    
    .dstv-hero-content .hero-features {
        justify-content: center;
        gap: 1rem;
    }
    
    .dstv-hero-content .hero-visual {
        padding: 2rem;
    }
    
    .dstv-hero-content .hero-visual i {
        font-size: 3rem;
    }
    
    .dstv-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dstv-hero-content .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .dstv-hero-content .hero-text p {
        font-size: 1rem;
    }
    
    .dstv-hero-content .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .dstv-hero-content .hero-visual {
        padding: 1.5rem;
    }
    
    .dstv-hero-content .hero-visual i {
        font-size: 2.5rem;
    }
    
    .dstv-hero-content .hero-visual-image {
        height: 120px;
    }
    
    .cctv-hero-content .hero-visual-image {
        height: 120px;
    }
}

/* DSTV Image Showcase */
.dstv-image-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dstv-showcase-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dstv-showcase-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.image-caption {
    text-align: center;
    margin-top: 1.5rem;
    max-width: 400px;
}

.image-caption h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.image-caption p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for DSTV image showcase */
@media (max-width: 768px) {
    .dstv-image-showcase {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .dstv-showcase-image {
        height: 250px;
    }
    
    .image-caption h3 {
        font-size: 1.3rem;
    }
    
    .image-caption p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .dstv-image-showcase {
        padding: 1rem;
    }
    
    .dstv-showcase-image {
        height: 200px;
    }
}

/* Gate Motors 2x2 Gallery Grid */
.gate-motors-gallery {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.gate-motors-gallery h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.gate-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gate-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
}

.gate-gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.gate-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gate-gallery-item:hover .gate-gallery-image {
    transform: scale(1.1);
}

.gate-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    color: white;
    padding: 2.5rem 2rem 2rem;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.gate-gallery-item:hover .gate-gallery-overlay {
    background: linear-gradient(to top, rgba(30, 58, 138, 0.95) 0%, rgba(30, 58, 138, 0.7) 50%, transparent 100%);
    padding: 3rem 2rem 2rem;
}

.gate-gallery-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gate-gallery-overlay p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gate-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gate-motors-gallery h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .gate-gallery-item {
        aspect-ratio: 16/10;
    }
    
    .gate-gallery-overlay h4 {
        font-size: 1.3rem;
    }
    
    .gate-gallery-overlay p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .gate-motors-gallery {
        padding: 3rem 0;
    }
    
    .gate-motors-gallery h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .gate-gallery-grid {
        gap: 1rem;
    }
    
    .gate-gallery-item {
        border-radius: 15px;
    }
    
    .gate-gallery-overlay {
        padding: 1.5rem 1.5rem 1.5rem;
    }
    
    .gate-gallery-overlay h4 {
        font-size: 1.1rem;
    }
    
    .gate-gallery-overlay p {
        font-size: 0.85rem;
    }
}
