:root {
    /* Maharaj Solar - Premium Palette */
    --sr-orange: #FF8C00;
    --sr-orange-glow: rgba(255, 140, 0, 0.4);
    --sr-green: #10B981;
    --sr-green-glow: rgba(16, 185, 129, 0.4);
    --sr-dark: #0F172A;
    --sr-dark-glass: rgba(15, 23, 42, 0.8);
    --sr-white: #FFFFFF;
    --sr-white-glass: rgba(255, 255, 255, 0.8);
    --sr-slate: #64748B;
    --sr-light-bg: #F8FAFC;
    
    /* Typography */
    --sr-font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --sr-font-head: 'Outfit', sans-serif;
    
    /* Shadows & Effects */
    --sr-shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --sr-shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --sr-shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --sr-shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    --sr-border-radius: 16px;
    --sr-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--sr-font-main);
    background-color: var(--sr-white);
    color: var(--sr-black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--sr-font-head);
    font-weight: 700;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 var(--sr-orange-glow); }
    70% { box-shadow: 0 0 0 15px rgba(255, 140, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--sr-transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.75);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}



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

/* Visibility Utilities */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

@media (max-width: 992px) {
    .mobile-only {
        display: flex !important;
    }
    .desktop-only {
        display: none !important;
    }
}


.top-bar {
    background: #0F172A;
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.top-bar-links {
    display: flex;
    gap: 25px;
}

.top-bar-links a {
    color: #CBD5E1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--sr-transition);
}

.top-bar-links a:hover {
    color: var(--sr-orange);
}

.top-bar-links i {
    color: var(--sr-orange);
}

.sr-header-new {
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 12px 0;

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.sr-logo-new {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--sr-dark);
    font-weight: 800;
    font-size: 1.4rem;
    font-family: var(--sr-font-head);
    letter-spacing: -0.5px;
}

.sr-logo-img {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--sr-orange), #FF6B00);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px var(--sr-orange-glow);
}

.sr-logo-text span {
    color: var(--sr-orange);
}



.nav-links-new {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links-new a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--sr-transition);
    padding: 8px 0;
    position: relative;
}

.nav-links-new a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sr-orange);
    transition: var(--sr-transition);
    border-radius: 2px;
}

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

.nav-links-new a:hover, .nav-links-new a.active {
    color: var(--sr-dark);
}

.btn-orange {
    background: linear-gradient(135deg, var(--sr-orange), #FF6B00);
    color: white !important;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--sr-transition);
    font-size: 0.95rem;
    box-shadow: 0 4px 15px var(--sr-orange-glow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--sr-orange-glow);
    filter: brightness(1.1);
}

.hero-badge {
    background: rgba(255, 140, 0, 0.1);
    color: var(--sr-orange);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    display: inline-block;
    margin-bottom: 20px;
}

.section-badge {
    color: var(--sr-orange);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2001;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2.5px;
    background-color: var(--sr-dark);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 992px) {
    .nav-links-new {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        padding: 50px;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        z-index: 2000;
    }

    .nav-links-new.mobile-active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .desktop-only {
        display: none;
    }
}

.hero-new {
    padding: 120px 0;
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);

    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin-bottom: 25px;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text h1 span {
    color: var(--sr-orange);
    text-shadow: 0 0 20px var(--sr-orange-glow);
}

.hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
}

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

.btn-outline-white {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--sr-transition);
}

.btn-outline-white:hover {
    background: white;
    color: var(--sr-dark);
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
}

.hero-stat-item h3 {
    font-size: 2.5rem;
    color: var(--sr-orange);
    margin-bottom: 5px;
}

.hero-stat-item p {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-box {
    padding: 40px;
    border-radius: 24px;
    border-left: 6px solid var(--sr-orange);
}

.why-box h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--sr-white);
}

.why-list {
    list-style: none;
}

.why-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.why-list i {
    color: var(--sr-orange);
    background: rgba(255, 140, 0, 0.1);
    padding: 12px;
    border-radius: 12px;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.why-list h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.why-list p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-orange-wide {
    background: var(--sr-orange);
    color: white;
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    transition: var(--sr-transition);
    font-size: 1rem;
}

.btn-orange-wide:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--sr-orange-glow);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-yellow));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn:hover::before {
    opacity: 1;
}

.section-padding {
    padding: 100px 0;
}

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

.section-header-new span {
    color: var(--sr-orange);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.section-header-new h2 {
    font-size: 3.5rem;
    margin-top: 10px;
    font-family: var(--sr-font-head);
    color: var(--sr-dark);
}

.section-header-new h2 span {
    color: var(--sr-green);
}

.section-header-new p {
    color: var(--sr-slate);
    max-width: 600px;
    margin: 20px auto 0;
    font-size: 1.1rem;
}

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

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.service-card-new {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: var(--sr-shadow-md);
    border-top: 5px solid transparent;
    transition: var(--sr-transition);
    text-align: left;
}

.service-card-new:hover {
    border-top-color: var(--sr-orange);
    transform: translateY(-12px);
    box-shadow: var(--sr-shadow-xl);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sr-green);
    font-size: 2rem;
    margin-bottom: 30px;
    transition: var(--sr-transition);
}

.service-card-new:hover .service-icon-box {
    background: var(--sr-green);
    color: white;
    transform: rotateY(180deg);
}

.service-card-new h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--sr-dark);
}

.service-card-new p {
    color: var(--sr-slate);
    font-size: 0.95rem;
    line-height: 1.7;
}

.highlight-bar {
    background: linear-gradient(90deg, var(--sr-orange), #FF6B00);
    padding: 30px 0;
    color: white;
    box-shadow: 0 10px 30px var(--sr-orange-glow);
    position: relative;
    z-index: 10;
}

.highlight-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.highlight-item i {
    font-size: 1.2rem;
}

.savings-section {
    background: var(--sr-dark);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.savings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.savings-text h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.savings-text h2 span {
    color: var(--sr-orange);
}

.savings-boxes {
    display: flex;
    gap: 25px;
}

.saving-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);

    transition: var(--sr-transition);
}

.saving-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--sr-orange);
}

.saving-box h3 {
    font-size: 3rem;
    color: var(--sr-orange);
    margin-bottom: 10px;
    font-family: var(--sr-font-head);
}

.saving-box p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.4;
}

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

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

.about-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-img-box img {
    width: 100%;
    border-radius: 30px;
    box-shadow: var(--sr-shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--sr-orange);
    color: white;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--sr-orange-glow);
    text-align: center;
}

.experience-badge h2 {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge p {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-list-new {
    list-style: none;
    margin-top: 40px;
}

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

.feature-list-new i {
    color: white;
    background: var(--sr-green);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.feature-list-new h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--sr-dark);
}

.feature-list-new p {
    font-size: 1rem;
    color: var(--sr-slate);
}

.process-steps-new {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    position: relative;
    gap: 30px;
}

.process-steps-new::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--sr-green), transparent);
    z-index: 1;
}

.step-new {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: center;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid var(--sr-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--sr-green);
    margin: 0 auto 30px;
    box-shadow: var(--sr-shadow-md);
    transition: var(--sr-transition);
}

.step-new:hover .step-circle {
    background: var(--sr-green);
    color: white;
    transform: scale(1.1);
}

.step-new h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--sr-dark);
}

.step-new p {
    font-size: 0.95rem;
    color: var(--sr-slate);
    padding: 0 10px;
}

.testimonial-card-new {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--sr-shadow-md);
    text-align: left;
    transition: var(--sr-transition);
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
    box-shadow: var(--sr-shadow-lg);
}

.testimonial-stars {
    color: var(--sr-orange);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.testimonial-card-new p {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    font-style: italic;
    color: var(--sr-dark);
    margin-bottom: 35px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-initial {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--sr-green), #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.user-info h4 {
    font-size: 1.1rem;
    color: var(--sr-dark);
}

.user-info p {
    font-size: 0.9rem;
    color: var(--sr-slate);
    font-style: normal;
}

.cta-banner {
    padding: 100px 0;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 30px;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.cta-content h2 span {
    color: var(--sr-orange);
}

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

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

footer {
    background: var(--sr-dark);
    color: white;
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 35px;
    color: var(--sr-orange);
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--sr-orange);
}

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

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--sr-transition);
}

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

.footer-contact-new div {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1rem;
    color: #94A3B8;
}

.footer-contact-new i {
    color: var(--sr-orange);
    margin-top: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--sr-transition);
}

.social-links a:hover {
    background: var(--sr-orange);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 80px;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #64748B;
}

.section-badge {
    color: var(--sr-orange);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--sr-transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: var(--sr-dark);
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--sr-transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

@media (max-width: 992px) {
    .hero-text h1 { font-size: 3rem; }
    .hero-stats { gap: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid-new { gap: 40px; }
    .experience-badge { left: 0; bottom: 0; padding: 20px; }
    .section-header-new h2 { font-size: 2.5rem; }
    .process-steps-new::before { display: none; }
    .process-steps-new { flex-direction: column; }
    .cta-content h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .services-grid-6 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; }
}

/* Floating Elements */
.floating-panel {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.p-1 { top: 30%; left: 10%; }
.p-2 { bottom: 25%; right: 12%; }

.float-anim {
    animation: floatPanel 6s ease-in-out infinite;
}
.float-anim-delayed {
    animation: floatPanel 7s ease-in-out infinite alternate-reverse;
}

.mini-stat {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 16px;
}

.green-dot, .blue-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}
.green-dot {
    background: #10B981;
    box-shadow: 0 0 10px #10B981;
}
.blue-dot {
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan-glow);
}

.mini-stat > div {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -50px;
    z-index: 10;
    position: relative;
}

.stat-card {
    padding: 60px 40px;
    text-align: center;
    background: var(--sr-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 30px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}


.stat-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
}

.sun-icon { background: radial-gradient(circle, var(--accent-yellow-glow), transparent); }
.globe-icon { background: radial-gradient(circle, var(--accent-cyan-glow), transparent); }
.leaf-icon { background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent); }

.stat-card h2 {
    font-size: 4rem;
    color: var(--sr-black);
    margin-bottom: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
}

.stat-card p {
    color: var(--sr-gray);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-border-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 24px;
    opacity: 0;
    box-shadow: inset 0 0 20px var(--accent-yellow-glow);
    transition: opacity 0.4s;
    pointer-events: none;
}
.stat-card:hover .card-border-glow { opacity: 1; }

/* Solutions Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.solution-card {
    padding: 40px;
    position: relative;
    transform-style: preserve-3d;

}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.solution-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.learn-more {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
}

.learn-more:hover {
    color: var(--accent-yellow);
    transform: translateX(5px);
}

.card-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent-cyan-glow);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 0.4s, top 0.1s, left 0.1s;
    pointer-events: none;
    z-index: 0;
}
.solution-card:hover .card-glow { opacity: 1; }
.card-content { position: relative; z-index: 1; }

/* Contact Section */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, var(--accent-cyan-glow), transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px;
    background: var(--contact-bg);
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-main);
}
.detail-item .icon {
    font-size: 1.5rem;
    color: var(--accent-yellow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group {
    position: relative;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 15px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
    cursor: pointer;
}

.input-group select {
    appearance: none;
}

.input-group input:focus, .input-group select:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px var(--accent-cyan-glow);
    background: var(--glass-bg);
}

.input-group label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group select:focus ~ label,
.input-group select:valid ~ label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    color: var(--accent-cyan);
    background: var(--contact-bg);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);

    padding: 0 8px;
    border-radius: 4px;
    z-index: 1;
}

.input-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2322D3EE' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}

.btn-block {
    width: 100%;
    margin-top: 10px;
}

/* --- Unified Section Header --- */
.sr-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.sr-section-header .sr-badge {
    color: var(--sr-accent-orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 12px;
}

.sr-section-header h2 {
    font-size: 3.2rem;
    letter-spacing: -1.5px;
    color: var(--sr-black);
    line-height: 1.1;
}

.sr-section-header h2 span {
    color: var(--sr-accent-green);
}

.sr-section-header p {
    color: var(--sr-gray);
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.1rem;
}

/* --- Global Footer (Unified Apple Aesthetic) --- */
.sr-footer {
    background: var(--sr-ghost-white);
    padding: 100px 0 50px;
    color: var(--sr-black);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.sr-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h3 {
    font-size: 0.85rem;
    color: var(--sr-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

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

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

.footer-links a {
    text-decoration: none;
    color: var(--sr-black);
    font-size: 0.9rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-contact-info .contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item i {
    color: var(--sr-accent-orange);
    margin-top: 5px;
}

.contact-info-item span {
    font-size: 0.9rem;
    color: var(--sr-black);
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--sr-gray);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sr-black);
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* --- Clean Modern Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sr-reveal {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@media (max-width: 992px) {
    .sr-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sr-hero-clean h1 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .sr-footer-grid {
        grid-template-columns: 1fr;
    }
    .sr-nav-links {
        display: none;
    }
}

/* Scroll Reveal Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Power Switch & Sunrise Animation */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.power-switch {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.power-switch:hover {
    background: rgba(250, 204, 21, 0.1);
    box-shadow: 0 0 15px var(--accent-yellow-glow);
}
.light-mode .power-switch {
    background: var(--accent-yellow);
    color: #fff;
    border-color: var(--accent-yellow);
}
.light-mode .power-switch .power-text::before {
    content: "Powered ";
}
.light-mode .power-switch .power-text {
    font-size: 0;
}
.light-mode .power-switch .power-text::before {
    font-size: 1rem;
}

.sunrise-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center 20%, rgba(250, 204, 21, 0.8) 0%, transparent 60%);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
    transition: opacity 2.5s ease-in-out;
}
.light-mode .sunrise-overlay {
    opacity: 0.2;
}

/* Calculator Section */
.calculator-wrapper {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.calc-input {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.calc-input label {
    font-size: 1.2rem;
    font-weight: 600;
}
input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: var(--accent-yellow);
    cursor: pointer;
    margin-top: -10px;
    box-shadow: 0 0 10px var(--accent-yellow-glow);
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: var(--glass-border);
    border-radius: 2px;
}
.range-val {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--accent-yellow);
    text-align: center;
}
.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
}
.result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.result-label {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.result-value {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
}
.text-accent-yellow { color: var(--accent-yellow); }
.text-accent-cyan { color: var(--accent-cyan); }

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}
.author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-cyan);
}
.author h4 {
    margin: 0;
    font-size: 1.1rem;
}
.author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}
.hamburger span {
    width: 30px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s;
}

.nav-links.mobile-active {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--bg-darker);
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    z-index: 99;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .solutions-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 0; }
    .contact-wrapper { grid-template-columns: 1fr; padding: 40px 30px; }
    .floating-panel { display: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .desktop-only { display: none; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .calc-results { grid-template-columns: 1fr; }
    .cursor-glow { display: none; }
    body { cursor: auto; }
    a, button, input, select { cursor: pointer; }
}

/* Admin Panel Styles - Premium Upgrade */
.admin-body {
    background-color: #f1f5f9;
    font-family: var(--sr-font-main);
    color: #1e293b;
    cursor: auto !important;
}

.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    background: white;
    border-right: 1px solid rgba(0,0,0,0.05);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.admin-sidebar .logo {
    font-family: var(--sr-font-head);
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 50px;
    padding: 0 15px;
    color: var(--sr-dark);
}

.admin-nav {
    list-style: none;
    flex-grow: 1;
}

.admin-nav li {
    padding: 14px 18px;
    margin-bottom: 8px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-nav li:hover {
    background: #f8fafc;
    color: var(--sr-dark);
}

.admin-nav li.active {
    background: #f1f5f9;
    color: var(--sr-orange);
}
.back-link {
    padding: 15px;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
    margin-top: auto;
}

.back-link:hover {
    color: var(--sr-orange);
}

.admin-main {
    flex-grow: 1;
    margin-left: 280px;
    padding: 60px;
}

.admin-tab {
    display: none;
    animation: adminFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-tab.active {
    display: block;
}

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

.admin-tab h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: var(--sr-font-head);
    color: #0f172a;
}

.admin-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    margin-bottom: 40px;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-input-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
}

.admin-form input, .admin-form textarea, .admin-form select {
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
    width: 100%;
}

.admin-form input:focus, .admin-form textarea:focus {
    border-color: var(--sr-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 112, 0, 0.1);
}

.table-container {
    background: white !important;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    padding: 20px;
    border-bottom: 2px solid #f1f5f9;
    color: var(--sr-green);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-table td {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #475569;
}

.admin-table tr:hover {
    background: #f8fafc;
}

.status-select {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid #e2e8f0;
    background: white;
    cursor: pointer;
}

.delete-btn {
    background: #fee2e2;
    color: #ef4444;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
}

.delete-btn:hover {
    background: #ef4444;
    color: white;
}
.admin-form-card { padding: 30px; margin-bottom: 40px; }
.admin-form { display: flex; flex-direction: column; gap: 20px; }
.admin-form input, .admin-form textarea {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
}
.admin-form input:focus, .admin-form textarea:focus { border-color: var(--accent-yellow); outline: none; }
.admin-input-group { display: flex; flex-direction: column; gap: 10px; }
.admin-input-group label { color: var(--text-muted); }
.testimonials-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.t-item { padding: 20px; display: flex; justify-content: space-between; align-items: center; }
.t-info { display: flex; gap: 15px; align-items: center; }
.t-info img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }


/* --- Consolidated Utilities --- */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* Form Elements */
.sr-input {
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    background: var(--sr-ghost-white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.sr-input:focus {
    outline: none;
    border-color: var(--sr-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.validation-msg {
    font-size: 0.75rem;
    margin-top: 6px;
    font-weight: 500;
    display: none;
}

.validation-msg.error { color: #EF4444; display: block; }
.validation-msg.success { color: #10B981; display: block; }

/* --- Premium Apple-Style Footer --- */
.sr-footer {
    background-color: var(--sr-ghost-white);
    color: var(--sr-black);
    padding: 80px 0 40px;
    font-family: var(--sr-font-main);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.sr-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--sr-black);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.footer-about .sr-logo {
    margin-bottom: 25px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--sr-gray);
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--sr-black);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.social-link:hover {
    background: var(--sr-black);
    color: white;
    transform: translateY(-2px);
}

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

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

.footer-links a {
    color: var(--sr-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--sr-black);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--sr-gray);
    line-height: 1.5;
}

.contact-info-item i {
    color: var(--sr-black);
    margin-top: 4px;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--sr-gray);
}

@media (max-width: 992px) {
    .sr-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .sr-footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* --- About Us Page Specifics --- */
.why-choose-bar {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: -30px;
    position: relative;
    z-index: 5;
    flex-wrap: wrap;
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--sr-blue);
}

.why-item i {
    color: var(--sr-green);
    font-size: 1.2rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.stat-card-white {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.stat-card-white:hover {
    transform: translateY(-10px);
}

.stat-card-white h2 {
    font-size: 3rem;
    color: #166534; /* Dark green */
    margin-bottom: 10px;
}

.stat-card-white p {
    color: #6b7280;
    font-weight: 600;
}

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

.team-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--sr-green);
}

.team-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--sr-green);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 25px;
}

.team-card h3 {
    color: var(--sr-blue);
    margin-bottom: 15px;
}

.team-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.about-cta-banner {
    background: #1e3a8a; /* Deep blue */
    padding: 60px 0;
    color: white;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-text-side h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.cta-text-side span {
    color: var(--sr-orange);
}

.cta-btns {
    display: flex;
    gap: 20px;
}

.btn-white-outline {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-white-outline:hover {
    background: white;
    color: var(--sr-blue);
}

@media (max-width: 992px) {
    .about-stats-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-stats-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    .cta-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* --- Services Page Specifics --- */
.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1;
}

.service-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-text {
    flex: 1;
}

.service-num {
    color: var(--sr-orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: block;
}

.service-text h2 {
    font-size: 2.2rem;
    color: var(--sr-blue);
    margin-bottom: 20px;
}

.service-text p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #374151;
    font-weight: 500;
}

.service-list li::before {
    content: '✓';
    color: var(--sr-green);
    font-weight: 900;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px;
    position: relative;
    padding: 0 40px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #e5e7eb;
    z-index: 1;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--sr-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 20px;
    border: 5px solid white;
    box-shadow: 0 0 0 3px var(--sr-green);
}

.process-step h3 {
    color: var(--sr-blue);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.process-step p {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.5;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .service-row, .service-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .process-timeline {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }
    .process-timeline::before {
        display: none;
    }
}

/* --- Products Page Specifics --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.badge-best { background: #dcfce7; color: #166534; }
.badge-budget { background: #fef9c3; color: #854d0e; }
.badge-essential { background: #e0f2fe; color: #075985; }
.badge-storage { background: #fef2f2; color: #991b1b; }
.badge-infra { background: #f3f4f6; color: #374151; }
.badge-smart { background: #fdf2f8; color: #9d174d; }

.product-img {
    height: 220px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.4rem;
    color: var(--sr-blue);
    margin-bottom: 15px;
}

.product-info p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.product-features li {
    font-size: 0.85rem;
    color: #4b5563;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features li::before {
    content: '✓';
    color: var(--sr-green);
    font-weight: bold;
}

.product-btn {
    background: var(--sr-green);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s;
}

.product-btn:hover {
    background: var(--sr-blue);
}

.sizing-section {
    background: #166534; /* Dark green */
    padding: 80px 0;
    color: white;
}

.sizing-flex {
    text-align: left;
}

.sizing-flex h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.sizing-flex h2 span {
    color: var(--sr-orange);
}

.sizing-flex p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.benefit-boxes {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.benefit-box {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
}

.benefit-box h4 {
    font-size: 1.5rem;
    color: var(--sr-orange);
    margin-bottom: 10px;
}

.benefit-box p {
    font-size: 0.8rem;
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .benefit-boxes {
        flex-direction: column;
    }
}

/* --- Projects/Gallery Page Specifics --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 6px;
    border: 2px solid var(--sr-green);
    background: transparent;
    color: var(--sr-green);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--sr-green);
    color: white;
}

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

.gallery-card {
    background: #f9fafb; /* Light gray from screenshot */
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.gallery-img {
    height: 200px;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-info {
    padding: 20px;
}

.gallery-info h3 {
    font-size: 1rem;
    color: var(--sr-blue);
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Admin Panel Redesign --- */
.admin-body {
    background-color: var(--sr-light-bg) !important;
    margin: 0;
    font-family: var(--sr-font-main);
    color: #1e293b;
}

.admin-container {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    background: white;
    padding: 40px 20px;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 100;
}

.admin-sidebar .logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 50px;
    padding-left: 10px;
}

.admin-sidebar .logo-highlight {
    color: var(--sr-orange);
}

.admin-nav {
    list-style: none;
    flex: 1;
}

.admin-nav li {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #64748b;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-nav li:hover {
    background: #f8fafc;
    color: #0f172a;
}

.admin-nav li.active {
    background: #fff7ed;
    color: var(--sr-orange);
    border-left: 4px solid var(--sr-orange);
}

.back-link {
    margin-top: auto;
    text-decoration: none;
    color: var(--sr-green);
    font-weight: 700;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-main {
    flex: 1;
    margin-left: 280px;
    padding: 60px;
    background: #f1f5f9;
    min-height: 100vh;
}

.admin-tab {
    display: none;
}

.admin-tab.active {
    display: block;
    animation: adminFadeIn 0.5s ease;
}

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

.admin-tab h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: var(--sr-font-head);
    color: #0f172a;
}

.admin-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    margin-bottom: 40px;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-input-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
}

.admin-form input, .admin-form textarea, .admin-form select {
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
    width: 100%;
}

.admin-form input:focus, .admin-form textarea:focus {
    border-color: var(--sr-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 112, 0, 0.1);
}

.table-container {
    background: white !important;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    padding: 20px;
    border-bottom: 2px solid #f1f5f9;
    color: var(--sr-green);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-table td {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #475569;
}

.admin-table tr:hover {
    background: #f8fafc;
}

.delete-btn {
    background: #fee2e2;
    color: #ef4444;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    transition: 0.3s;
}

.delete-btn:hover {
    background: #ef4444;
    color: white;
}

.testimonials-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.t-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.t-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.t-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.t-info i {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    display: block;
    margin-top: 10px;
    color: #64748b;
    font-size: 0.9rem;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    font-family: var(--sr-font-main);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* --- Comprehensive Mobile UI Optimization --- */
@media (max-width: 768px) {
    /* Global Typography Scale */
    h1, .sr-hero-clean h1, .hero-title {
        font-size: 2.6rem !important;
        letter-spacing: -1.5px !important;
        line-height: 1.1 !important;
    }
    
    h2, .sr-section-header h2, .about-story-section h2, .service-text h2 {
        font-size: 2rem !important;
        letter-spacing: -0.5px !important;
    }

    p, .sr-hero-clean p, .service-text p, .info-desc {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    /* Section Spacing */
    .section, .sr-hero-clean, .contact-section, .about-story-section, .track-record-section, .team-section, .products-main-section, .gallery-main-section {
        padding: 60px 0 !important;
    }

    .container {
        padding: 0 20px !important;
    }

    /* Hero Refinement */
    .sr-hero-clean {
        padding-top: 120px !important;
        text-align: left !important;
    }

    .sr-hero-clean p {
        margin: 0 !important;
    }

    /* Grid & Flex Stacking */
    .stats-grid, .solutions-grid, .products-grid, .gallery-grid, .sr-footer-grid, .about-stats-grid, .team-grid, .contact-grid, .story-grid, .cta-flex {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Component Adjustments */
    .stat-card, .stat-card-white, .product-card, .team-card, .gallery-card, .glass-card {
        padding: 30px 20px !important;
    }

    .stat-card h2, .stat-card-white h2 {
        font-size: 2.8rem !important;
    }

    /* Form & Button UX */
    .sr-input, .admin-form input, .admin-form textarea {
        font-size: 16px !important; /* Stops iOS zoom-in on focus */
        padding: 12px 16px !important;
        border-radius: 10px !important;
    }

    .btn-orange, .sr-cta-btn, .product-btn, .btn-primary, .btn-block {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        margin-bottom: 10px;
    }

    /* Navigation Tweak */
    .sr-header-new {
        padding: 8px 0 !important;
    }

    .sr-logo-new {
        font-size: 1.15rem !important;
    }

    .sr-logo-img {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
    }

    /* Visibility Swap */
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: flex !important;
    }

    .top-bar {
        display: none !important;
    }


    /* Process Timeline stacking */
    .process-timeline {
        flex-direction: column !important;
        gap: 40px !important;
        padding: 0 !important;
    }
    
    .process-timeline::before {
        display: none !important;
    }

    /* Feature Cards */
    .mv-card {
        padding: 20px !important;
    }
}

/* --- Scroll Reveal Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}
/* --- Helper Classes to reduce inline styles --- */
.hero-standard-padding { padding: 120px 0; }
.text-center { text-align: center; }
.bg-light { background: #f8fafc; }
.bg-dark-blue { background: #1e3a8a; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.mb-50 { margin-bottom: 50px; }
.mb-80 { margin-bottom: 80px; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

.sr-orange-text { color: var(--sr-orange) !important; }
.sr-green-text { color: var(--sr-green) !important; }
.sr-dark-text { color: var(--sr-dark) !important; }
.white-text { color: white !important; }
.text-gray { color: #6b7280 !important; }
.logo-img-small { width: 36px !important; height: 36px !important; font-size: 0.9rem !important; }
.footer-logo-link { color: white !important; margin-bottom: 25px !important; display: flex !important; }
.map-container-premium { margin-top: 40px; height: 350px; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.bg-gray-light { background: #f9fafb !important; }
.bg-white { background: white !important; }


.hero-index { background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('images/hero-premium.png'); background-size: cover; background-position: center; }
.btn-orange-white { background: white; color: var(--sr-green); border: 2px solid white; padding: 12px 30px; border-radius: 10px; font-weight: 700; transition: var(--sr-transition); cursor: pointer; }
.btn-orange-white:hover { background: transparent; color: white; }
.opacity-9 { opacity: 0.9; }
.mb-30 { margin-bottom: 30px; }
.mb-10 { margin-bottom: 10px; }

/* About & Story Helper Classes */
.section-padding-100 { padding: 100px 0; }
.bg-white { background: white; }
.story-grid-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: flex-start; }
.story-img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.story-badge { color: var(--sr-orange); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
.story-h2 { font-size: 2.8rem; margin: 15px 0 25px; color: var(--sr-dark); line-height: 1.2; }
.story-p { color: #4b5563; line-height: 1.8; margin-bottom: 20px; font-size: 1.05rem; }
.max-w-600 { max-width: 600px; margin-left: auto; margin-right: auto; }
.max-w-700 { max-width: 700px; margin-left: auto; margin-right: auto; }

.fs-p-small { font-size: 0.9rem; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.mv-card-standard { padding: 25px; border-radius: 12px; }
.mv-card-mission { background: #fdfcf6; border-left: 4px solid var(--sr-orange); }
.mv-card-vision { background: #f6fdf9; border-left: 4px solid var(--sr-green); }
.mv-card-innovation { background: #f6fafd; border-left: 4px solid #3b82f6; }
.mv-card-integrity { background: #fdf6f6; border-left: 4px solid #ef4444; }
.blue-text { color: #3b82f6 !important; }
.red-text { color: #ef4444 !important; }




.fs-large { font-size: 3.5rem; }
.fs-medium { font-size: 2.5rem; }
.fs-p { font-size: 1.2rem; }
.btn-large { padding: 15px 40px !important; font-size: 1rem !important; }


.saving-box {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.contact-wrapper {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.reveal-init {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.border-none { border: none !important; }


.mb-60 { margin-bottom: 60px; }

/* New utility classes */
.max-w-800 { max-width: 800px; }
.bg-dark-blue { background: #1e3a8a; }
.text-center { text-align: center; }
.uppercase-bold { font-weight: 800; text-transform: uppercase; letter-spacing: 2px; }
.sr-orange-text { color: var(--sr-orange); }
.sr-blue-text { color: var(--sr-blue); }
.sr-green-text { color: var(--sr-green); }
.btn-large { padding: 15px 40px; }
.bg-white { background: white; }
.process-section { padding: 100px 0; background: #f9fafb; }
.fs-large { font-size: 2.8rem; }
.mt-10 { margin-top: 10px; }

/* Logo Underline Fix */
.sr-logo-new, .footer-logo-link,
.sr-logo-new *, .footer-logo-link * { text-decoration: none !important; border: none !important; outline: none !important; }

/* Colorful Social Icons */
.social-links a.social-icon-fb { background-color: #1877F2 !important; color: white !important; border-color: #1877F2 !important; }
.social-links a.social-icon-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important; color: white !important; border-color: transparent !important; }
.social-links a.social-icon-li { background-color: #0A66C2 !important; color: white !important; border-color: #0A66C2 !important; }

.social-links a.social-icon-fb:hover,
.social-links a.social-icon-ig:hover,
.social-links a.social-icon-li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Fix CTA Button base styles */
.sr-cta-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}
.sr-cta-btn:not(.bg-white) {
    background: var(--sr-orange);
    color: #fff !important;
}
.sr-cta-btn:not(.bg-white):hover {
    background: #e66a00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 112, 0, 0.4);
}
.sr-cta-btn.bg-white {
    background: #ffffff;
}
.sr-cta-btn.bg-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
/* Fix top bar clock alignment */
.top-bar .desktop-only {
    display: flex !important;
    align-items: center !important;
}
@media (max-width: 900px) {
    .desktop-only {
        display: none !important;
    }
}

/* Additional Mobile UI Fixes */
@media (max-width: 768px) {
    /* Hero Buttons Stacking */
    .hero-btns {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        display: flex !important;
    }
    .hero-btns a {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        display: flex !important;
    }

    /* Hero Stats Wrapping */
    .hero-stats {
        flex-wrap: wrap !important;
        gap: 20px !important;
        justify-content: flex-start !important;
    }

    /* WhatsApp Float Shrink */
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
    }

    /* Highlight Grid Stacking */
    .highlight-grid {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: flex-start !important;
    }

    /* Experience Badge Overlap Fix */
    .experience-badge {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        box-shadow: none !important;
        padding: 20px !important;
        border-radius: 10px !important;
    }
}

/* Fix Hamburger Visibility on Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
        flex-direction: column !important;
        gap: 5px !important;
        cursor: pointer !important;
        z-index: 2001 !important;
        padding: 10px !important;
    }
    .hamburger span {
        display: block !important;
        width: 25px !important;
        height: 3px !important;
        background-color: #0F172A !important; /* Dark Blue */
        border-radius: 2px !important;
    }
}

/* Mobile View Fixes for Grids and Typography */
@media (max-width: 768px) {
    /* Fix About Grid */
    .about-grid-new {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Fix Savings Grid */
    .savings-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Fix Savings Typography */
    .savings-text h2 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    /* Fix Savings Boxes */
    .savings-boxes {
        flex-direction: column !important;
        gap: 20px !important;
    }

    /* Ensure text doesn't overflow */
    .about-content-new p, .savings-text p {
        word-break: break-word !important;
    }
}

/* Fix List Alignment for Mobile and Desktop */
.service-list li, .product-features li {
    display: flex !important;
    align-items: flex-start !important;
    text-align: left !important;
    gap: 10px !important;
}
.service-list li::before, .product-features li::before {
    margin-top: 3px !important; /* Align checkmark with first line of text */
}

/* Fix Text Cut-off in Gallery Header on Mobile */
@media (max-width: 768px) {
    .hero-sub-header p, .fs-p, .max-w-800 {
        white-space: normal !important;
        word-break: break-word !important;
        max-width: 100% !important;
    }
}

/* Optimize Mobile Menu UI */
@media (max-width: 992px) {
    .nav-links-new {
        background: #0F172A !important; /* Dark Premium Background */
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 30px !important;
    }

    .nav-links-new a {
        color: #FFFFFF !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
    }

    .nav-links-new a:hover, 
    .nav-links-new a.active {
        color: var(--sr-orange) !important;
    }

    /* Make Hamburger X white on dark background */
    .hamburger.active span {
        background-color: #FFFFFF !important;
    }

    /* Style Contact Us button in menu */
    .nav-links-new .sr-cta-btn,
    .nav-links-new .btn-orange,
    .nav-links-new a[href="contact.html"] {
        background: linear-gradient(135deg, var(--sr-orange), #FF6A00) !important;
        color: white !important;
        padding: 12px 30px !important;
        border-radius: 50px !important;
        box-shadow: 0 5px 15px var(--sr-orange-glow) !important;
        text-decoration: none !important;
        display: inline-block !important;
        width: auto !important;
        min-width: 150px !important;
        text-align: center !important;
    }
}

/* Revert Mobile Menu to White and Smaller */
@media (max-width: 992px) {
    .nav-links-new {
        background: #FFFFFF !important; /* White Background */
        width: 65% !important; /* Smaller width (was 80%) */
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1) !important;
        gap: 20px !important; /* Reduced spacing */
        padding: 40px 30px !important;
    }

    .nav-links-new a {
        color: #0F172A !important; /* Dark Text */
        font-size: 1rem !important; /* Smaller font */
    }

    .nav-links-new a:hover, 
    .nav-links-new a.active {
        color: var(--sr-orange) !important;
    }

    /* Make Hamburger X dark on white background */
    .hamburger.active span {
        background-color: #0F172A !important;
    }

    /* Adjust button in menu */
    .nav-links-new .sr-cta-btn,
    .nav-links-new .btn-orange,
    .nav-links-new a[href="contact.html"] {
        padding: 10px 25px !important;
        font-size: 0.95rem !important;
        width: 100% !important;
        max-width: 200px !important;
    }
}

/* Make Mobile Menu Links Look Like Buttons */
@media (max-width: 992px) {
    .nav-links-new {
        padding: 60px 20px 40px 20px !important; /* Adjust padding */
    }

    .nav-links-new li {
        width: 100% !important;
        text-align: center !important;
    }

    .nav-links-new a {
        display: block !important;
        width: 100% !important;
        padding: 12px 20px !important;
        background: #F8FAFC !important; /* Light Gray Button Style */
        border: 1px solid #E2E8F0 !important;
        border-radius: 12px !important;
        color: #0F172A !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
    }

    .nav-links-new a:hover, 
    .nav-links-new a.active {
        background: #FFF7ED !important; /* Light Orange on active/hover */
        border-color: var(--sr-orange) !important;
        color: var(--sr-orange) !important;
        box-shadow: 0 4px 6px rgba(255, 140, 0, 0.1) !important;
    }

    /* Remove underline from active link since it's now a box */
    .nav-links-new a::after {
        display: none !important;
    }
}

/* Admin Login Styles */
.login-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0F172A; /* Dark Blue Theme */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #0F172A;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-logo i {
    color: var(--sr-orange);
}

.login-card h2 {
    font-family: 'Outfit', sans-serif;
    color: #0F172A;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #475569;
    font-size: 0.9rem;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #F8FAFC;
}

.input-group input:focus {
    border-color: var(--sr-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
    background: white;
}

.login-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--sr-orange), #FF6A00);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px var(--sr-orange-glow);
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--sr-orange-glow);
}

.error-msg {
    color: #EF4444;
    font-size: 0.85rem;
    margin-top: 15px;
    min-height: 20px;
}

/* Fix Login Label Overlap */
.login-card .input-group {
    position: relative !important;
}

.login-card .input-group label {
    display: block !important;
    position: static !important; /* Reset absolute positioning */
    margin-bottom: 8px !important;
    color: #475569 !important;
    font-weight: 600 !important;
}

.login-card .input-group input {
    position: static !important;
}

/* Fix Admin Input Text and Placeholder Visibility */
.admin-tab input, 
.admin-tab textarea, 
.admin-tab select {
    color: #0F172A !important; /* Dark Text */
    background: #FFFFFF !important; /* White Background */
    border: 1px solid #E2E8F0 !important;
}

.admin-tab input::placeholder, 
.admin-tab textarea::placeholder {
    color: #94A3B8 !important; /* Muted Gray Placeholder */
    opacity: 1 !important; /* Ensure visibility */
}

/* Ensure labels are visible too */
.admin-tab label {
    color: #475569 !important;
    font-weight: 600 !important;
}

/* ==========================================
   Admin UI Optimizations (Testimonials List)
   ========================================== */
.testimonials-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.t-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.t-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.t-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.t-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.t-info .user-initial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #10B981; /* Green */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.t-info div {
    flex: 1;
}

.t-info strong {
    color: #0F172A;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 2px;
}

.t-info small {
    color: #64748B;
    font-size: 0.85rem;
}

.t-info i {
    display: block;
    margin-top: 10px;
    color: #334155;
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.5;
}

.t-item .actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    border-top: 1px solid #E2E8F0;
    padding-top: 15px;
    margin-top: auto;
}

.t-item .actions button {
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.t-item .actions .edit-btn {
    background: #EFF6FF;
    color: #2563EB;
    border: 1px solid #DBEAFE;
}

.t-item .actions .edit-btn:hover {
    background: #2563EB;
    color: white;
}

.t-item .actions .delete-btn {
    background: #FEF2F2;
    color: #DC2626;
    border: 1px solid #FEE2E2;
}

.t-item .actions .delete-btn:hover {
    background: #DC2626;
    color: white;
}

/* ==========================================
   Admin Mobile Responsiveness
   ========================================== */
@media (max-width: 768px) {
    .admin-container {
        flex-direction: column !important;
        height: auto !important;
    }
    
    aside {
        width: 100% !important;
        padding: 15px !important;
        border-right: none !important;
        border-bottom: 1px solid #E2E8F0 !important;
    }
    
    .admin-nav {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        margin: 15px 0 !important;
    }
    
    .admin-nav li {
        flex: 1 1 calc(50% - 10px) !important;
        justify-content: center !important;
        padding: 12px !important;
        background: #F8FAFC !important;
        border-radius: 8px !important;
        border: 1px solid #E2E8F0 !important;
    }
    
    .admin-nav li.active {
        background: #FFF7ED !important;
        border-color: #F97316 !important;
    }
    
    .admin-nav li i {
        margin-right: 8px !important;
    }
    
    .admin-main {
        padding: 15px !important;
    }
    
    .admin-form {
        grid-template-columns: 1fr !important; /* Stack inputs */
    }
    
    .testimonials-list {
        grid-template-columns: 1fr !important; /* Stack testimonials */
    }
    
    .projects-list {
        grid-template-columns: 1fr !important; /* Stack projects */
    }
    
    /* Login Card optimization on mobile */
    .login-card {
        width: 90% !important;
        padding: 20px !important;
    }
}

/* ==========================================
   Horizontal Scroll for Testimonials
   ========================================== */
.services-grid-6 {
    display: flex !important;
    overflow-x: auto !important;
    gap: 25px !important;
    padding: 20px 5px !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: #CBD5E1 #F8FAFC; /* Firefox */
}

.services-grid-6 .testimonial-card-new {
    flex: 0 0 350px !important;
    scroll-snap-align: start !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.01) !important;
}

@media (max-width: 480px) {
    .services-grid-6 .testimonial-card-new {
        flex: 0 0 280px !important; /* Smaller width on small mobile */
    }
}

/* Custom Scrollbar for Testimonials */
.services-grid-6::-webkit-scrollbar {
    height: 6px;
}

.services-grid-6::-webkit-scrollbar-track {
    background: #F8FAFC;
    border-radius: 3px;
}

.services-grid-6::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 3px;
    transition: background 0.2s;
}

.services-grid-6::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

.testimonial-card-new {
    background: white !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 20px !important;
    padding: 35px 30px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* Alternating grayish tint for boxes */
.testimonial-card-new:nth-child(even) {
    background: #F8FAFC !important; /* Very light grayish blue */
}

.testimonial-card-new:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02) !important;
    border-color: #E2E8F0 !important;
}

.testimonial-stars {
    color: #F59E0B !important; /* Better amber gold for stars */
    margin-bottom: 20px !important;
    font-size: 0.9rem !important;
}

.testimonial-card-new p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    color: #334155 !important;
    margin-bottom: 25px !important;
    font-weight: 400 !important;
}

.testi-user {
    margin-top: auto !important; /* Push to bottom */
}

/* Admin Hamburger Menu */
@media (max-width: 768px) {
    .admin-hamburger {
        display: block !important;
    }
    
    .admin-nav {
        display: none !important; /* Hide by default on mobile */
        width: 100% !important;
        flex-direction: column !important;
        background: white !important;
        padding: 10px !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1) !important;
        margin-top: 10px !important;
        position: absolute !important;
        top: 60px !important;
        left: 0 !important;
        z-index: 1000 !important;
    }
    
    .admin-nav.show {
        display: flex !important; /* Show when toggled */
    }
    
    .admin-nav li {
        flex: 1 1 100% !important; /* Full width items in dropdown */
        text-align: left !important;
        justify-content: flex-start !important;
    }
}

/* ==========================================
   Force Admin Tab Styles (Fix Blank Screen)
   ========================================== */
.admin-tab {
    display: none !important;
}

.admin-tab.active {
    display: block !important;
}

/* Ensure the main content area has a minimum height and is visible */
.admin-main {
    min-height: 400px !important;
    background: white !important;
    padding: 20px !important;
    border-radius: 12px !important;
    margin-top: 20px !important;
}

@media (max-width: 768px) {
    aside {
        height: auto !important;
        min-height: 0 !important;
    }
    
    .admin-container {
        height: auto !important;
        min-height: 100vh !important;
        overflow: visible !important;
    }
    
    .admin-main {
        width: 100% !important;
        margin-top: 0 !important;
        padding: 20px !important;
    }
}

@media (max-width: 768px) {
    .admin-main {
        margin-left: 0 !important; /* Fix the right shift issue */
        padding: 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .admin-container {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .admin-tab {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Ensure inputs don't overflow */
    .admin-form input, 
    .admin-form select, 
    .admin-form textarea {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 768px) {
    /* Fix padding and margin for inputs and cards on mobile */
    .admin-main {
        padding: 20px 15px !important; /* Add distinct left/right padding */
    }
    
    .glass-card.admin-form-card {
        padding: 20px !important; /* Ensure form card has padding inside */
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .admin-form {
        padding: 0 !important; /* Reset form padding if any */
    }
    
    .admin-form input, 
    .admin-form select, 
    .admin-form textarea {
        margin-bottom: 15px !important; /* Add space between inputs */
    }
    
    /* Back to Site link spacing */
    .back-link {
        margin: 15px 0 !important;
        display: inline-block !important;
    }
}

@media (max-width: 768px) {
    /* Fix overlapping issue on mobile */
    .admin-sidebar {
        position: relative !important; /* Remove fixed positioning if any */
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .admin-main {
        margin-top: 20px !important; /* Add margin to push content down */
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .admin-tab h2 {
        margin-top: 10px !important; /* Space for the heading */
    }
}

/* Fix text cutting off in admin cards (Testimonials/Projects) */
.t-item {
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 15px !important;
}

.t-info {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
    width: 100% !important;
}

.t-info > div {
    min-width: 0 !important; /* Fix flexbox text overflow */
    flex: 1 !important;
}

.t-info i {
    display: block !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    margin-top: 10px !important;
    font-style: normal !important;
    color: #4A5568 !important;
    line-height: 1.5 !important;
}

.t-info strong {
    display: block !important;
    font-size: 1.1rem !important;
    margin-bottom: 2px !important;
}

.t-info small {
    display: block !important;
    color: #718096 !important;
    margin-bottom: 10px !important;
}

/* Ensure images don't shrink */
.t-info img, 
.t-info .user-initial {
    flex-shrink: 0 !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}
