/* ====== MODERN PROFESSIONAL VIJAY ENTERPRISES STYLESHEET ====== */

/* ====== CSS VARIABLES ====== */
:root {
    /* Modern Color Palette */
    --primary-blue: #1e40af;
    --primary-dark: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-gold: #f59e0b;
    --accent-gold-light: #fbbf24;
    
    /* Neutral Colors */
    --dark-slate: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --white: #ffffff;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
}

/* ====== RESET & BASE ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--slate-700);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ====== TOP BAR ====== */
.top-bar {
    background: var(--slate-800);
    color: var(--white);
    padding: 14px 0;
    font-size: 14px;
    font-weight: 400;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 35px;
    align-items: center;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.top-bar span:hover {
    opacity: 1;
}

.top-bar i {
    color: var(--accent-gold-light);
    font-size: 14px;
}

/* ====== NAVIGATION ====== */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo {
    padding: 22px 0;
}

.logo h1 {
    font-size: 34px;
    font-weight: 800;
    color: var(--dark-slate);
    margin: 0;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo .brand {
    color: var(--primary-blue);
    font-weight: 900;
    letter-spacing: 0.5px;
}

.logo .tagline {
    font-size: 13px;
    color: var(--slate-500);
    margin: 6px 0 0 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    color: var(--slate-600);
    font-weight: 500;
    font-size: 15px;
    padding: 32px 26px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-blue);
    background: rgba(30, 64, 175, 0.03);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-cta {
    padding: 22px 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ====== HERO SECTION ====== */
.hero {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    background: var(--slate-100);
    overflow: hidden;
}

.hero-slider {
    width: 100%;
}

.hero-slide {
    position: relative;
    min-height: 750px;
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-slide img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.90) 0%, rgba(30, 58, 138, 0.85) 50%, rgba(30, 64, 175, 0.80) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    color: var(--white);
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.12);
    color: var(--accent-gold-light);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(251, 191, 36, 0.25);
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.hero-content h2 {
    font-size: 62px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hero-content h3 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
    color: rgba(255,255,255,0.95);
    letter-spacing: -0.5px;
}

.hero-content > p {
    font-size: 20px;
    margin-bottom: 0;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    max-width: 750px;
}

.brand-name {
    color: var(--accent-gold-light);
    font-weight: 900;
}

.hero-stats {
    display: flex;
    gap: 70px;
    margin: 45px 0;
    padding: 35px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.hero-stats .stat h4 {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-gold-light);
    margin-bottom: 10px;
    line-height: 1;
}

.hero-stats .stat p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 45px;
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    display: flex;
}

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

.btn-white:hover {
    background: var(--slate-100);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ====== SECTIONS ====== */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(30, 64, 175, 0.08);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: var(--slate-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ====== QUICK SERVICES ====== */
.quick-services {
    padding: 80px 0;
    background: var(--white);
}

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

.quick-service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    text-align: center;
}

.quick-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.quick-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.quick-icon i {
    font-size: 36px;
    color: var(--white);
}

.quick-service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-slate);
    margin-bottom: 12px;
}

.quick-service-card p {
    color: var(--slate-600);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    gap: 12px;
    color: var(--secondary-blue);
}

.btn-link i {
    font-size: 14px;
}

/* ====== WHY CHOOSE US HOME ====== */
.why-choose-home {
    padding: 100px 0;
    background: var(--slate-100);
}

.why-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.why-home-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
}

.why-home-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.why-home-card i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.why-home-card:hover i {
    color: var(--accent-gold-light);
}

.why-home-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-slate);
    transition: color 0.3s ease;
}

.why-home-card:hover h4 {
    color: var(--white);
}

.why-home-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--slate-600);
    margin: 0;
    transition: color 0.3s ease;
}

.why-home-card:hover p {
    color: rgba(255,255,255,0.9);
}

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

/* ====== PAGE HERO ====== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .hero-content h2 {
        font-size: 48px;
    }
    
    .hero-content h3 {
        font-size: 24px;
    }
    
    .hero-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-left,
    .top-bar-right {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-content {
        flex-wrap: wrap;
    }
    
    .logo h1 {
        font-size: 28px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li a {
        padding: 15px 30px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-slide {
        min-height: 600px;
    }
    
    .hero-slide img {
        height: 600px;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .hero-content h3 {
        font-size: 20px;
    }
    
    .hero-content > p {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .hero-stats .stat h4 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .page-hero p {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .services-quick-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content h3 {
        font-size: 18px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
}

/* ====== FOOTER ====== */
.footer {
    background: var(--dark-slate);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-column h2,
.footer-column h3 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
}

.footer-logo h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.footer-logo .brand {
    color: var(--secondary-blue);
}

.footer-tagline {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-cert {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-cert p {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.footer-cert i {
    color: var(--accent-gold-light);
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--accent-gold-light);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--accent-gold-light);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact span {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
}

.footer-bottom p {
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
    margin: 0 0 15px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-links a {
    font-size: 13px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-gold-light);
}

/* ====== FORMS ====== */
.contact-section {
    padding: var(--section-padding);
    background: var(--slate-100);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
}

.contact-info-box h3,
.contact-form-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 15px;
}

.contact-info-box > p,
.contact-form-box > p {
    font-size: 16px;
    color: var(--slate-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.contact-info-item p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-info-item small {
    font-size: 13px;
    color: var(--slate-500);
}

.contact-info-item a {
    color: var(--primary-blue);
    font-weight: 600;
}

.business-hours-box {
    background: var(--primary-blue);
    color: var(--white);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.business-hours-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.business-hours-box ul {
    list-style: none;
}

.business-hours-box li {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.95;
}

.contact-form-box {
    background: var(--white);
    padding: 45px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    /* Form is inside this box */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--slate-200);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    color: var(--slate-700);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

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

.consent-group {
    margin: 30px 0;
    padding: 25px;
    background: var(--slate-100);
    border-radius: 8px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border: 2px solid var(--slate-300);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.checkbox-text {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.5;
}

.checkbox-text i {
    color: var(--primary-blue);
    margin-right: 5px;
}

/* ====== PRODUCT CARDS ====== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-content {
    padding: 30px;
}

.product-content h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-slate);
    margin-bottom: 15px;
}

.product-content p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--slate-600);
    margin-bottom: 10px;
}

.product-features i {
    color: var(--primary-blue);
    font-size: 14px;
}

/* ====== CTA SECTION ====== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 18px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* ====== ADDITIONAL INFO SECTION ====== */
.additional-contact-info {
    padding: 80px 0;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--slate-100);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-box:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.info-box i {
    font-size: 42px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.info-box:hover i {
    color: var(--accent-gold-light);
}

.info-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-box p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ====== BACK TO TOP ====== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ====== FOOTER SOCIAL ====== */
.footer-social {
    margin-top: 25px;
}

.footer-social h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-social a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

/* ====== ABOUT PAGE SECTIONS ====== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 18px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-md);
}

.about-badge i {
    font-size: 24px;
    color: var(--accent-gold-light);
}

.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-600);
    margin-bottom: 20px;
}

.about-highlights {
    margin-top: 35px;
    display: grid;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: var(--slate-100);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(10px);
}

.highlight-item i {
    font-size: 28px;
    color: var(--primary-blue);
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.highlight-item:hover i {
    color: var(--accent-gold-light);
}

.highlight-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-slate);
    transition: color 0.3s ease;
}

.highlight-item:hover h4 {
    color: var(--white);
}

.highlight-item p {
    font-size: 14px;
    margin: 0;
    color: var(--slate-600);
    transition: color 0.3s ease;
}

.highlight-item:hover p {
    color: rgba(255,255,255,0.9);
}

/* Company Details Section */
.company-details-section {
    padding: 100px 0;
    background: var(--slate-100);
}

.company-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.detail-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.detail-card i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 18px;
}

.detail-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-700);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-card p {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-slate);
    margin: 0;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: var(--slate-100);
    padding: 50px 40px;
    border-radius: 16px;
    border-left: 5px solid var(--primary-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    transition: left 0.5s ease;
    z-index: 0;
}

.mission-card:hover::before,
.vision-card:hover::before {
    left: 0;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.mission-card > *,
.vision-card > * {
    position: relative;
    z-index: 1;
}

.mission-card i,
.vision-card i {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.mission-card:hover i,
.vision-card:hover i {
    color: var(--accent-gold-light);
}

.mission-card h3,
.vision-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark-slate);
    transition: color 0.3s ease;
}

.mission-card:hover h3,
.vision-card:hover h3 {
    color: var(--white);
}

.mission-card p,
.vision-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate-600);
    margin: 0;
    transition: color 0.3s ease;
}

.mission-card:hover p,
.vision-card:hover p {
    color: rgba(255,255,255,0.95);
}

/* Why Us Section on About Page */
.why-us-section {
    padding: 100px 0;
    background: var(--slate-100);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.why-icon {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-card:hover .why-icon img {
    transform: scale(1.1);
}

.why-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate-600);
    margin: 0;
}

/* ====== SERVICES PAGE SECTIONS ====== */
.services-section {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--slate-200);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--white);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 48px;
    color: var(--white);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon i {
    color: var(--primary-blue);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

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

.service-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--slate-600);
    margin-bottom: 25px;
    text-align: left;
    transition: color 0.3s ease;
}

.service-card:hover > p {
    color: rgba(255,255,255,0.95);
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--slate-700);
    margin-bottom: 12px;
    padding: 10px;
    background: var(--slate-100);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover .service-features li {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.service-features i {
    color: var(--primary-blue);
    font-size: 14px;
    transition: color 0.3s ease;
}

.service-card:hover .service-features i {
    color: var(--accent-gold-light);
}

/* ====== SERVICE PROCESS SECTION ====== */
.process-section {
    padding: 100px 0;
    background: var(--slate-100);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--slate-200);
    z-index: 1;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.step-number {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.4);
}

.process-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-slate);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.process-step:hover h4 {
    color: var(--primary-blue);
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--slate-600);
    margin: 0;
}

/* ====== PRODUCTS PAGE SECTIONS ====== */
.products-section {
    padding: 100px 0;
}

.products-section:nth-child(even) {
    background: var(--slate-100);
}

.products-section:nth-child(odd) {
    background: var(--white);
}

/* ====== RESPONSIVE FOOTER & FORMS ====== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .why-home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .company-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-box {
        padding: 30px 20px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .why-home-grid {
        grid-template-columns: 1fr;
    }
    
    .company-details-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}
