/* CSS Variables - Updated 2025-07-24 */
:root {
    --primary-yellow: #ffd000;
    --primary-purple: #8c52ff;
    --primary-color: var(--primary-yellow);
    --secondary-color: var(--primary-purple);
    --text-color: #ffffff;
    --grey: #b0b0b0;
    --white: #ffffff;
    --nav-black: rgba(0, 0, 0, 0.95);
    --section-black: #111111;
}

/* Base responsive improvements */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--nav-black);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--nav-black);
}Navigation Styles */
.navbar {
    position: relative;
    background: var(--nav-black);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .company-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.logo-text .company-tagline {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--grey);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.mobile-call-btn {
    display: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-yellow);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

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

.call-now-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-yellow)); 
    color:  #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    /* box-shadow: 0 8px 25px rgba(140, 82, 255, 0.3); */
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    /* border: 2px solid var(--primary-purple); */
}

.call-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(140, 82, 255, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 10px;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    align-items: center;
    touch-action: manipulation;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--section-black);
    display: flex;
    align-items: center;
    padding-top: -15px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 2.5rem;
}

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

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 44px; /* Minimum touch target for mobile */
    min-width: 44px;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-purple));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 188, 33, 0.4);
}

/* Button Secondary Styles - OVERRIDE */
.hero-buttons .btn.btn-secondary,
.btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: var(--nav-black) !important;
    background-color: var(--nav-black) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-purple) !important;
    border-color: var(--primary-purple) !important;
    font-weight: 600 !important;
}

.hero-buttons .btn.btn-secondary:hover,
.btn-secondary:hover {
    background: var(--primary-purple) !important;
    background-color: var(--primary-purple) !important;
    color: var(--white) !important;
    transform: translateY(-3px) !important;
}

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

/* Base image styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--section-black);
}

/* Unified Large Heading Styles */
.hero-text h1,
.section-header h2,
.about-text h2,
.contact-info h2,
.faq .section-header h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    position: relative !important;
    display: inline-block !important;
}

/* Hero h1 slightly larger for emphasis */
.hero-text h1 {
    font-size: 3.5rem !important;
    margin-bottom: 1.5rem !important;
}

/* Section headers slightly smaller for hierarchy */
.section-header h2,
.about-text h2,
.contact-info h2,
.faq .section-header h2 {
    font-size: 2rem !important;
}

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

.section-header p {
    font-size: 1.2rem;
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--section-black);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--grey);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--nav-black);
}

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

.about-text p {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    align-items: center;
    text-align: left;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text {
    margin-top: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--grey);
    margin: 0;
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-logo-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
}

.about-logo-overlay img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

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

.about-image-container:hover .about-logo-overlay {
    transform: scale(1.05);
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background: var(--nav-black);
}

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

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.project-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-purple));
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.project-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--nav-black);
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.google-stars-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.google-logo {
    height: 30px;
    width: auto;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

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

.rating-text {
    font-weight: 600;
    color: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-grid .review-card:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2;
}

.reviews-grid .review-card:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2;
}

.review-card {
    background: var(--nav-black);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    height: 380px;
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    margin: 0 auto;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3rem;
    color: var(--primary-yellow);
    font-weight: bold;
    line-height: 1;
}

.review-header {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-details h4 {
    margin: 0;
    font-weight: 600;
    color: var(--white);
}

.reviewer-details p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--grey);
}

.review-text {
    color: var(--grey);
    line-height: 1.6;
    margin-bottom: auto;
    flex-grow: 1;
    overflow-y: auto;
}

.review-stars {
    display: flex;
    gap: 0.3rem;
    margin-top: 1rem;
}

.review-stars i {
    color: var(--primary-yellow);
    font-size: 1rem;
}

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

.reviews-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--nav-black);
    color: var(--white);
    border: 2px solid var(--primary-purple);
    font-weight: 600;
}

.reviews-cta .btn:hover {
    background: var(--primary-purple);
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--section-black);
}

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

.contact-info p {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item > div {
    margin-top: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--grey);
    margin: 0;
}

.contact-form {
    background: var(--section-black);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    align-self: start;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: var(--nav-black);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' 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: 20px;
    padding-right: 50px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

/* Footer */
.footer {
    background: var(--section-black);
    color: var(--white);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-purple));
    border-radius: 1px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(244, 188, 33, 0.2);
}

.footer-logo span {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-yellow);
    letter-spacing: 0.5px;
}

.footer-section:first-child p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.3rem 0;
}

.footer-section ul li i {
    width: 16px;
    text-align: center;
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-section ul li a:hover {
    color: var(--primary-yellow);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(244, 188, 33, 0.2);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 188, 33, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--grey);
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    background: var(--nav-black);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-left: 4px solid var(--primary-yellow);
    animation: slideIn 0.3s ease-out;
    backdrop-filter: blur(10px);
}

.notification-success {
    border-left-color: #10b981;
}

.notification-error {
    border-left-color: #ef4444;
}

.notification-content {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
}

.notification-content i:first-child {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-success .notification-content i:first-child {
    color: #10b981;
}

.notification-error .notification-content i:first-child {
    color: #ef4444;
}

.notification-content span {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: var(--grey);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* reCAPTCHA styling */
.g-recaptcha {
    margin: 1rem 0;
}

/* Form loading state */
.contact-form form.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success Message Animation Styles */
#form-success-message {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background: linear-gradient(135deg, rgba(255, 208, 0, 0.1), rgba(140, 82, 255, 0.1));
    border: 2px solid var(--primary-yellow);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 208, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Animated success state */
#form-success-message.animate-success {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: successPulse 2s ease-in-out;
}

/* Bounce effect */
#form-success-message.bounce-effect {
    animation: gentleBounce 0.6s ease-in-out;
}

/* Background shimmer effect */
#form-success-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 208, 0, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shimmer 3s ease-in-out infinite;
}

/* Success pulse animation */
@keyframes successPulse {
    0% {
        box-shadow: 0 10px 30px rgba(255, 208, 0, 0.2);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255, 208, 0, 0.4), 0 0 20px rgba(140, 82, 255, 0.3);
        transform: translateY(0) scale(1.02);
    }
    100% {
        box-shadow: 0 10px 30px rgba(255, 208, 0, 0.2);
        transform: translateY(0) scale(1);
    }
}

/* Gentle bounce effect */
@keyframes gentleBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-5px) scale(1.01);
    }
    50% {
        transform: translateY(0) scale(1);
    }
    75% {
        transform: translateY(-2px) scale(1.005);
    }
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Add an icon animation */
#form-success-message::after {
    content: '✨';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

/* Sparkle animation for the icon */
@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2) rotate(180deg);
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    #form-success-message {
        padding: 1rem;
        font-size: 0.9rem;
        margin-top: 1rem;
    }
    
    #form-success-message::after {
        top: 0.8rem;
        right: 0.8rem;
        font-size: 1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 2rem 20px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--nav-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        overflow-y: auto;
        padding: 2rem;
        padding-top: max(2rem, env(safe-area-inset-top));
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
        box-sizing: border-box;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu .nav-link {
        padding: 1.5rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        font-weight: 600;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        min-height: 60px;
        width: 100%;
        max-width: 300px;
        margin: 0.5rem 0;
        border-radius: 10px;
    }

    .nav-menu .nav-link:hover {
        color: var(--primary-yellow);
        background: rgba(255, 255, 255, 0.05);
        transform: scale(1.05);
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
        margin-bottom: 2rem;
    }

    /* Mobile call button */
    /* linear-gradient(135deg, var(--primary-purple), var(--primary-yellow)); */
    .mobile-call-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-purple), var(--primary-yellow));
        color: white;
        padding: 15px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        margin: 1rem auto 6rem auto;
        max-width: 300px;
        width: 100%;
        min-height: 60px;
        transition: all 0.3s ease;
        border: none;
        border-bottom: none;
        margin-bottom: env(safe-area-inset-bottom, 6rem);
    }

    .mobile-call-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(140, 82, 255, 0.3);
        color: white;
    }
    
    .call-now-btn {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .hamburger span {
        transform-origin: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Hero Section Mobile */
    .hero {
        padding-top: 20px;
        padding-bottom: 50px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        order: 1;
        margin-top: -2rem;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-image img {
        height: 300px;
        max-width: 100%;
    }
    
    /* Mobile responsive heading sizes */
    .hero-text h1 {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.1 !important;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .section-header h2,
    .about-text h2,
    .contact-info h2,
    .faq .section-header h2 {
        font-size: 1.8rem !important;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Services Section Mobile */
    .services {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Projects Section Mobile */
    .projects {
        padding: 60px 0;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Reviews Section Mobile */
    .reviews {
        padding: 60px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .reviews-grid .review-card:nth-child(4),
    .reviews-grid .review-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
    }
    
    .review-card {
        max-width: 100%;
        height: auto;
        min-height: 300px;
    }
    
    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .feature {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }

    .about-logo-overlay {
        bottom: 15px;
        right: 15px;
    }
    
    .about-logo-overlay img {
        width: 60px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    /* Contact Section Mobile */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        margin-top: 0;
        padding: 2rem 1.5rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .footer-section ul li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }

    .logo-text .company-name {
        font-size: 1rem;
    }
    
    .logo-text .company-tagline {
        font-size: 0.8rem;
    }

    /* Notification mobile styles */
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .notification-content {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3rem !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        gap: 3rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 1rem 10px;
    }
    
    .hero {
        padding-top: 10px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem !important;
    }
    
    .section-header h2,
    .about-text h2,
    .contact-info h2,
    .faq .section-header h2 {
        font-size: 1.6rem !important;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .logo img {
        width: 75px;
        height: 75px;
    }
    
    .logo-text .company-name {
        font-size: 0.9rem;
    }
    
    .logo-text .company-tagline {
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .review-card {
        padding: 1.5rem;
        min-height: 250px;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        width: 100vw;
        padding: 2rem 1rem;
    }

    .nav-menu .nav-link {
        font-size: 1.2rem;
        padding: 1.2rem 0;
        margin: 0.3rem 0;
    }

    .mobile-call-btn {
        font-size: 1rem !important;
        padding: 12px 25px !important;
        margin: 1.5rem auto 0 auto !important;
        max-width: 280px !important;
    }

    .hamburger {
        padding: 8px;
        min-height: 40px;
        min-width: 40px;
    }

    .hamburger span {
        width: 22px;
        height: 2px;
        margin: 2.5px 0;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--nav-black);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(244, 188, 33, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(140, 82, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 4rem;
}

.faq .section-header h2 {
    color: var(--white);
    position: relative;
    display: inline-block;
}

/* General underline for all section headings */
.section-header h2::after,
.about-text h2::after,
.contact-info h2::after,
.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-purple));
    border-radius: 2px;
}

.faq .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-purple));
    border-radius: 2px;
}

.faq .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-purple));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(244, 188, 33, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(244, 188, 33, 0.4);
}

.faq-item.active::before {
    transform: scaleX(1);
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 188, 33, 0.05), rgba(140, 82, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-question:hover::before {
    opacity: 1;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    flex: 1;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-question i {
    color: var(--primary-yellow);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(244, 188, 33, 0.1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: rgba(244, 188, 33, 0.2);
    color: var(--primary-yellow);
    box-shadow: 0 0 20px rgba(244, 188, 33, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 2rem;
    color: var(--grey);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
    }
    
    .faq .section-header {
        margin-bottom: 2rem;
    }
    
    .faq-grid {
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        margin-right: 1rem;
        line-height: 1.3;
    }
    
    .faq-answer p {
        padding: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.6;
        text-align: left;
    }
    
    .faq-item.active .faq-answer {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        margin-right: 0.8rem;
    }
    
    .faq-answer p {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Fade out animation */
#form-success-message.fade-out {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.5s ease-in-out;
}
