/* ==========================================================================
   CSS Variables & Resets
   ========================================================================== */
:root {
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --text-main: #0f172a;
    --text-muted: #475569;
    --accent-primary: #eab308; /* Electric Yellow */
    --accent-secondary: #3b82f6; /* Electric Blue */
    --accent-whatsapp: #25D366; 
    --accent-glow: rgba(234, 179, 8, 0.4);
    --accent-glow-blue: rgba(59, 130, 246, 0.3);
    --border-color: rgba(0, 0, 0, 0.1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

span {
    color: var(--accent-primary);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: none;
    z-index: 1001; /* Above mobile menu */
}

.logo i {
    color: var(--accent-primary);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: var(--transition);
    box-shadow: 0 0 8px var(--accent-glow);
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    color: var(--text-main);
}

/* Uiverse Button (Navbar) */
.uiverse-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: var(--accent-primary);
    color: #000;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 0 15px var(--accent-glow);
}

.uiverse-btn .btn-text {
    z-index: 2;
    transition: 0.3s;
}

.uiverse-btn .btn-icon {
    position: absolute;
    right: -30px;
    opacity: 0;
    z-index: 2;
    transition: 0.3s;
}

.uiverse-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #fff;
    z-index: 1;
    transition: 0.3s;
}

.uiverse-btn:hover {
    box-shadow: 0 0 25px var(--accent-glow);
}

.uiverse-btn:hover .btn-text {
    transform: translateX(-15px);
}

.uiverse-btn:hover .btn-icon {
    right: 15px;
    opacity: 1;
}

.uiverse-btn:hover::before {
    width: 100%;
}

/* ==========================================================================
   Mobile Menu Overlay
   ========================================================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
}

.close-menu-btn:hover {
    color: var(--accent-primary);
    transform: rotate(90deg);
}

.mobile-nav-links {
    text-align: center;
    margin-bottom: 40px;
}

.mobile-nav-links li {
    margin: 20px 0;
}

.mobile-nav-links a {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.mobile-modal-btn {
    font-size: 1.1rem;
    padding: 15px 35px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(248, 250, 252, 0.8), rgba(248, 250, 252, 0.95)), 
                url('electrician_bg.png') center/cover no-repeat;
    z-index: -1;
}


.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin: 20px 0;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 18px;
    height: 18px;
    background: rgba(34, 197, 94, 0.5);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

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

.btn-glow {
    position: relative;
    padding: 16px 32px;
    background: var(--accent-primary);
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.btn-glow:hover {
    box-shadow: 0 0 20px var(--accent-primary), 0 0 40px rgba(234, 179, 8, 0.4);
    transform: translateY(-2px);
}

.btn-glow:hover::before {
    transform: translateX(100%);
}

.btn-outline {
    padding: 16px 32px;
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--text-main);
}

.hero-image-wrapper {
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

.card-uiverse-3d {
    width: 350px;
    height: 450px;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {
    0% { transform: translateY(0) rotateX(10deg) rotateY(-10deg); }
    50% { transform: translateY(-20px) rotateX(15deg) rotateY(-5deg); }
    100% { transform: translateY(0) rotateX(10deg) rotateY(-10deg); }
}

.card-inner {
    position: absolute;
    inset: 15px;
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.05), transparent 70%),
                rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    backdrop-filter: blur(5px);
}

.hero-big-icon {
    font-size: 5rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px var(--accent-glow));
}

.card-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.card-inner p {
    color: var(--text-muted);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-inline: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.service-card-uiverse {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
    z-index: 1;
}

.service-card-uiverse::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(234, 179, 8, 0.06), transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card-uiverse:hover {
    transform: translateY(-5px);
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-card-uiverse:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(234, 179, 8, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent-primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card-uiverse:hover .card-icon {
    background: var(--accent-primary);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.service-card-uiverse h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card-uiverse p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    transition: var(--transition);
}

.service-card-uiverse:hover .card-link {
    color: var(--accent-primary);
    gap: 12px;
}

/* ==========================================================================
   Why Us Section
   ========================================================================== */
.why-us {
    padding: 100px 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.03), transparent);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
}

.glass-panel::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 25px;
    background: linear-gradient(120deg, transparent, var(--accent-secondary), transparent);
    z-index: -1;
    opacity: 0.5;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 3.5rem;
    color: var(--accent-secondary);
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--accent-glow-blue);
}

.stat-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
}

.text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-list i {
    font-size: 1.5rem;
    color: var(--accent-primary);
    margin-top: 5px;
}

.feature-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.feature-list span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.reviews-section {
    padding: 100px 0;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.05);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,0,0,0.1);
}

.google-rating i {
    color: #4285F4;
    font-size: 1.2rem;
}

.reviews-grid {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 5px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-primary) transparent;
}

.reviews-grid::-webkit-scrollbar {
    height: 6px;
}

.reviews-grid::-webkit-scrollbar-track {
    background: transparent;
}

.reviews-grid::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 10px;
}

.review-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.review-time {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 10px;
    font-weight: 400;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ea4335;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.avatar.bg-blue { background: #4285F4; }
.avatar.bg-yellow { background: #fbbc05; color: #000; }

.user-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.stars i {
    color: #fbbc05;
    font-size: 0.9rem;
}

.google-icon-small {
    position: absolute;
    right: 0;
    top: 10px;
    color: rgba(0,0,0,0.1);
    font-size: 1.5rem;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid var(--border-color);
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item-uiverse {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.info-item-uiverse:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.info-item-uiverse .icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-secondary);
    font-size: 1.2rem;
}

.info-item-uiverse h4 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.info-item-uiverse p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Uiverse Input Form */
.modern-form {
    background: var(--bg-dark);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: var(--text-main);
    border: none;
    border-bottom: 1px solid var(--border-color);
    outline: none;
    background: transparent;
    resize: none;
}

.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition);
}

.input-group input:focus ~ label,
.input-group input:valid ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:valid ~ label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--accent-primary);
}

.input-group .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.input-group input:focus ~ .line,
.input-group textarea:focus ~ .line {
    transform: scaleX(1);
}

/* Modern Submit Button */
.submit-btn-uiverse {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 13px 40px;
    outline: 0;
    border: 1px solid black;
    cursor: pointer;
    position: relative;
    background-color: rgba(0, 0, 0, 0);
    user-select: none;
    border-radius: 12px;
    color: var(--bg-dark);
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
}

.submit-btn-uiverse .text {
    position: relative;
    z-index: 10;
    color: #000;
}

.submit-btn-uiverse span[class^="circle"] {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-primary);
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 0;
}

.circle1 { width: 30px; height: 30px; top: 10%; left: 10%; }
.circle2 { width: 20px; height: 20px; top: 80%; left: 30%; }
.circle3 { width: 40px; height: 40px; top: 50%; left: 50%; }
.circle4 { width: 25px; height: 25px; top: 20%; left: 80%; }
.circle5 { width: 35px; height: 35px; top: 90%; left: 90%; }

.submit-btn-uiverse:hover span[class^="circle"] {
    width: 150%;
    height: 150%;
    top: 50%;
    left: 50%;
}

.submit-btn-uiverse::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-primary);
    z-index: -1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background: var(--bg-main); /* Inherit light background */
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 20px 0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05); /* Darker for light mode */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-primary);
    color: #000;
    transform: translateY(-3px);
}

.footer-links h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1); /* Darker border */
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Contact Modal
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--bg-card);
    width: 90%;
    max-width: 500px;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transform: translateY(50px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.close-modal-btn:hover {
    color: var(--text-main);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-icon {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.modal-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-muted);
}

.modal-body.uiverse-buttons-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.uiverse-contact-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.wp-btn {
  background-color: #00d757;
}

.phone-btn {
  background-color: #3b82f6; 
}

.uiverse-contact-btn .sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uiverse-contact-btn .sign svg {
  width: 25px;
}

.uiverse-contact-btn .sign svg path {
  fill: white;
}

.uiverse-contact-btn .text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.1em;
  font-weight: 600;
  transition-duration: 0.3s;
  white-space: nowrap;
}

.uiverse-contact-btn:hover {
  width: 180px;
  border-radius: 40px;
  transition-duration: 0.3s;
}

.uiverse-contact-btn:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 10px;
}

.uiverse-contact-btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 15px;
}

.uiverse-contact-btn:active {
  transform: translate(2px, 2px);
}

.btn-text-content strong {
    font-size: 1.1rem;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.btn-text-content span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent-whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: var(--transition);
    animation: float-btn 3s ease-in-out infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes float-btn {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* ==========================================================================
   Trust Badges
   ========================================================================== */
.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--accent-primary);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(to top, transparent, rgba(234, 179, 8, 0.05), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-img-container {
    position: relative;
    aspect-ratio: 16/9;
}

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

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

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
    font-weight: 600;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    padding: 100px 0;
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent-primary);
}

.faq-item.active .faq-question {
    background: rgba(234, 179, 8, 0.1);
    color: var(--accent-primary);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px 25px;
    max-height: 200px;
}

/* ==========================================================================
   Service Areas Section
   ========================================================================== */
.areas-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.area-pill {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.area-pill:hover {
    border-color: var(--accent-primary);
    background: rgba(234, 179, 8, 0.1);
    color: var(--accent-primary);
    transform: translateY(-3px);
}

/* ==========================================================================
   Responsive Updates
   ========================================================================== */
@media (max-width: 992px) {
    .nav-links, .nav-contact {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-container, 
    .why-us-content, 
    .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .feature-list li {
        justify-content: center;
        text-align: left;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }
    
    .modal-body.uiverse-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .image-stack {
        margin-bottom: 30px;
    }
}
