/* 
  INDIAN SUVIDHA - GLASSMORPHISM THEME
*/

/* --- Base & Variables --- */
:root {
    --primary: #002D62;
    /* Navy Blue */
    --accent1: #FF8F00;
    /* Saffron */
    --accent2: #008000;
    /* Green */
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f3efe4;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
    margin-top: 0;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: var(--primary);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}


.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.title-separator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.title-separator.left {
    margin: 0 0 2rem 0;
}

section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #f1d4afcd;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    bottom: 10%;
    right: 5%;
    opacity: 0.3;
}

.shape-3 {
    width: 500px;
    height: 500px;
    background: var(--accent2);
    top: 50%;
    left: -200px;
    opacity: 0.2;
}


.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #fff !important;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.6s;
    z-index: 2;
    pointer-events: none;
}

.btn:hover {
    transform: translateY(-5px) scale(1.03);
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

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

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

.btn-primary:hover {
    background: #001f44;
    box-shadow: 0 10px 30px rgba(0, 45, 98, 0.4);
}

.btn-cta {
    background: linear-gradient(45deg, var(--accent1), #ff7300);
}

.btn-cta:hover {
    background: linear-gradient(45deg, #ff7300, var(--accent1));
    box-shadow: 0 10px 40px rgba(255, 143, 0, 0.5);
}

.btn-secondary {
    background: var(--primary);
    color: #fff !important;
}

.btn-secondary:hover {
    background: #001f44;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-call {
    background: var(--accent2);
}

.btn-enquiry {
    background: var(--accent1);
}



.glass-nav {
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding-top: 5px;
    transition: all 0.3s;
}

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

#mobile-menu-overlay {
    display: none;
}

.site-branding img {
    max-height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}

.site-branding h1 {
    margin: 0;
    font-size: 24px;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 40px;
}

.main-navigation ul {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
}

.main-navigation a:hover {
    color: var(--accent1);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary);
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 2px;
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

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

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.floating-icon {
    position: absolute;
    top: -50px;
    right: 20%;
    width: 60px;
    height: 60px;
    color: var(--accent1);
    animation: float 6s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.hero-image-wrapper {
    perspective: 1000px;
}

.hero-image {
    width: 100%;
    border-radius: 24px;
    transform-style: preserve-3d;
}


.trust-bar {
    padding: 0 0 80px;
    margin-top: -60px;
    z-index: 10;
    position: relative;
}

.trust-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px;
    border-radius: 20px;
}

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

.trust-stat h3 {
    font-size: 3rem;
    margin: 0;
    display: inline-block;
    color: var(--accent1);
}

.trust-stat span {
    font-size: 3rem;
    color: var(--accent1);
    font-weight: 700;
    font-family: 'Outfit';
}

.trust-stat p {
    margin: 5px 0 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--primary);
}

.trust-stat.divider {
    width: 2px;
    height: 60px;
    background: rgba(0, 45, 98, 0.1);
}


.about-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.about-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.about-desc p {
    margin-bottom: 20px;
}

.about-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
    /* padding: 10px; */
}


.services-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

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

.service-card {
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-img {
    height: 240px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-excerpt {
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-service {
    padding: 10px 18px;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0;
    box-shadow: none;
    flex: 1;
    text-align: center;
    min-width: 120px;
}

.btn-call {
    background: var(--accent2);
    color: #fff;
}

.btn-call:hover {
    background: #006400;
    color: #fff;
}

.btn-enquiry {
    background: var(--accent1);
    color: #fff;
}

.btn-enquiry:hover {
    background: #e67e00;
    color: #fff;
}


.faq-inner {
    max-width: 1200px;
}

.faq-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-image-column img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    padding: 10px;
    background: rgba(255, 255, 255, 0.4);
}

.faq-accordion {
    padding: 10px 30px;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.faq-question {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit';
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
}

.faq-icon {
    font-size: 24px;
    color: var(--accent1);
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    opacity: 0;
}

.answer-inner {
    padding-bottom: 25px;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 600px;
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent2);
}


.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding: 50px;
}

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

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

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 45, 98, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 45, 98, 0.1);
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-list li:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
}

.contact-list li:hover .icon-box i {
    color: #fff;
}

.contact-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-list p,
.contact-list a {
    margin: 0;
    color: var(--text-light);
    text-decoration: none;
}

.contact-list a:hover {
    color: var(--accent1);
}

.contact-form-wrapper {
    padding: 50px;
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}


.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-family: 'Outfit';
    font-size: 1rem;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(5px);
    border: 1px solid #002d62;
}

.wpcf7-form .wpcf7-text:focus,
.wpcf7-form .wpcf7-textarea:focus {
    background: rgba(255, 255, 255, 0.9);
    outline: none;
    border-color: var(--accent1);
    box-shadow: 0 0 20px rgba(255, 143, 0, 0.2), 0 0 0 4px rgba(255, 143, 0, 0.05);
    transform: translateY(-2px);
}

/* Float-like placeholder effect (simplified) */
.wpcf7-form .wpcf7-text::placeholder,
.wpcf7-form .wpcf7-textarea::placeholder {
    color: rgba(0, 45, 98, 0.5);
    transition: 0.3s;
}

.wpcf7-form .wpcf7-text:focus::placeholder,
.wpcf7-form .wpcf7-textarea:focus::placeholder {
    opacity: 0.5;
    transform: translateX(5px);
}

.wpcf7-form .wpcf7-submit {
    background: linear-gradient(135deg, var(--primary) 0%, #00408f 100%);
    color: #fff;
    border: none;
    padding: 18px 45px;
    border-radius: 14px;
    font-family: 'Outfit';
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(0, 45, 98, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.wpcf7-form .wpcf7-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
    z-index: -1;
}

.wpcf7-form .wpcf7-submit:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 45, 98, 0.4);
    background: linear-gradient(135deg, #003a7a 0%, var(--primary) 100%);
}

.wpcf7-form .wpcf7-submit:hover::before {
    left: 100%;
}

.wpcf7-form .wpcf7-submit:active {
    transform: translateY(-2px) scale(1);
}

/* --- Enquiry Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

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

.modal-container {
    width: 100%;
    max-width: 900px;
    /* Increased to accommodate two columns */
    padding: 0;
    /* Remove padding to let image be flush */
    position: relative;
    transform: translateY(40px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: var(--glass-bg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 600px;
}

.modal-image-column {
    position: relative;
    overflow: hidden;

}

.modal-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.8;
    transition: transform 0.8s ease;
}

.modal-container:hover .modal-image-column img {
    transform: scale(1.05);
}

.image-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(0deg, var(--primary) 0%, transparent 100%);
    color: #fff;
}

.image-overlay-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.image-overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.modal-form-column {
    padding: 50px 40px;
    background: #f3efe4;
}

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

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(0, 45, 98, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
    background: var(--accent1);
    color: #fff;
}

.modal-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--primary);
    text-align: center;
    letter-spacing: -0.5px;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Modal Form Specifics */
.modal-container .wpcf7-form .wpcf7-text,
.modal-container .wpcf7-form .wpcf7-textarea {
    background: rgba(255, 255, 255, 0.8);
}

body.modal-open {
    overflow: hidden;
}

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

    .modal-image-column {
        height: 250px;
    }

    .modal-container {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .modal-form-column {
        padding: 40px 20px;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.9);
        width: 35px;
        height: 35px;
    }
}


.glass-footer {
    background: var(--primary);
    color: #fff;
    padding: 80px 0 0;
    position: relative;
    z-index: 2;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}


.site-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
}

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

.footer-widget h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent1), var(--accent2));
    border-radius: 10px;
}

.footer-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 20px;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li {
    margin-bottom: 15px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-links a:hover {
    color: var(--accent1);
    transform: translateX(10px);
}

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

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

.footer-contact-list i {
    color: var(--accent1);
    width: 20px;
}

.footer-contact-list a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-list a:hover {
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link:hover {
    background: var(--accent1);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(255, 143, 0, 0.3);
}

.glass-bottom {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.95rem;
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .floating-icon {
        right: 10%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-inner {
        flex-direction: column;
        gap: 30px;
    }

    .trust-stat.divider {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 30px 0;
    }

    .main-navigation ul {
        display: none;
        /* Hide default list on mobile, we use overlay instead */
    }

    .menu-toggle {
        display: block !important;
        position: relative;
        z-index: 9999 !important;
        background: transparent;
        border: 1px solid var(--primary);
        padding: 5px 8px;
        border-radius: 8px;
        cursor: pointer;
    }

    .menu-toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

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

    .menu-toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }

    .site-branding img {
        max-height: 44px !important;
        width: auto !important;
    }

    .site-header {
        height: auto;
        min-height: 70px;
        padding: 10px 0;
        overflow: visible;
    }

    /* Premium Full-screen Mobile Menu Implementation */
    #mobile-menu-overlay {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(40px) saturate(180%);
        -webkit-backdrop-filter: blur(40px) saturate(180%);
        z-index: 10000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.85, 0, 0.15, 1);
        overflow: hidden;
    }

    #mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Decorative Background Blobs */
    .menu-blob {
        position: absolute;
        width: 300px;
        height: 300px;
        filter: blur(80px);
        opacity: 0.4;
        z-index: -1;
        border-radius: 50%;
        animation: blobFloat 10s infinite alternate ease-in-out;
    }

    .blob-1 {
        background: var(--primary);
        top: -50px;
        left: -50px;
    }

    .blob-2 {
        background: var(--secondary);
        bottom: -50px;
        right: -50px;
        animation-delay: -2s;
    }

    .blob-3 {
        background: var(--accent);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation-delay: -5s;
    }

    @keyframes blobFloat {
        0% {
            transform: translate(0, 0) scale(1);
        }

        100% {
            transform: translate(30px, 40px) scale(1.2);
        }
    }

    .mobile-nav-list {
        list-style: none;
        padding: 0;
        text-align: left;
        z-index: 1;
    }

    .mobile-nav-list li {
        margin: 20px 0;
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        /* Springy effect */
    }

    #mobile-menu-overlay.active .mobile-nav-list li {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    #mobile-menu-overlay.active .mobile-nav-list li:nth-child(1) {
        transition-delay: 0.1s;
    }

    #mobile-menu-overlay.active .mobile-nav-list li:nth-child(2) {
        transition-delay: 0.2s;
    }

    #mobile-menu-overlay.active .mobile-nav-list li:nth-child(3) {
        transition-delay: 0.3s;
    }

    #mobile-menu-overlay.active .mobile-nav-list li:nth-child(4) {
        transition-delay: 0.4s;
    }

    #mobile-menu-overlay.active .mobile-nav-list li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .mobile-nav-list a {
        font-size: 1.2rem;
        font-weight: 900;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 2px;
        position: relative;
        display: inline-block;
        padding: 5px 10px;
        transition: 0.3s;
        border-bottom: 1px solid var(--primary);
    }

    .mobile-nav-list a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 4px;
        background: var(--secondary);
        transition: 0.3s;
        transform: translateX(-50%);
        border-radius: 2px;
    }

    .mobile-nav-list a:hover::after,
    .mobile-nav-list a:active::after {
        width: 100%;
    }

    .mobile-nav-list a:active {
        transform: scale(0.95);
        color: var(--secondary);
    }

    .mobile-menu-close {
        position: absolute;
        top: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
        color: var(--primary);
        background: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
        z-index: 2;
    }

    .mobile-menu-close:active {
        transform: scale(0.9) rotate(90deg);
        background: var(--primary);
        color: #fff;
    }

    .btn-cta {
        display: none;
    }

    .section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .contact-form-wrapper h3 {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .faq-question {
        padding: 5px 0;
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        margin-bottom: 1rem;
    }

    .title-separator {
        margin-bottom: 1.5rem;
    }

    .btn {
        margin-top: 15px;
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .about-section {
        padding: 40px 0 10px;
        text-align: center;
    }

    .trust-bar {
        padding-bottom: 10px;
        margin-top: -15px;
    }

    .trust-inner {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-image-column {
        order: 2;
    }

    .about-desc {
        order: 1;
    }

    .about-img {
        max-width: 250px;
        margin: 0 auto;
    }

    .title-separator.left {
        margin: 0 auto 1.5rem;
    }

    .services-section {
        padding-top: 20px;
        padding-bottom: 0;
    }

    #faq {
        padding-top: 25px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .faq-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-image-column {
        order: -1;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 20px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 30px 20px;
        width: 100%;
        margin: 0 auto;
        transform: none !important;
        opacity: 1 !important;
    }
}