/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Removed max-width: 100% to prevent scrolling issues */

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00a8ff 0%, #0088cc 100%);
    border-radius: 10px;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0088cc 0%, #006699 100%);
    box-shadow: 0 0 10px rgba(0, 168, 255, 0.5);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #006699 0%, #004d73 100%);
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #00a8ff #000;
    overflow-x: hidden;
}

/* Smooth scroll for all browsers */
html {
    scroll-behavior: smooth;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Styles */
.header {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 168, 255, 0.2);
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    transition: all 0.2s ease;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 40px;
    height: 40px;
    transition: all 0.2s ease;
}

.logo:hover .logo-img {
    transform: rotate(15deg) scale(1.1);
}

.nav {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00a8ff;
    transition: all 0.2s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #00a8ff;
    background: rgba(0, 168, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 80%;
}

.cta-button {
    background: linear-gradient(135deg, #00a8ff 0%, #0088cc 100%);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse 2s infinite;
}

.cta-button::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: left 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 255, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 168, 255, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
    }
}

/* Hero Section */
.hero-section {
    background-color: #000;
    min-height: 100vh;
    padding: 120px 0 100px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('img/electricity.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.3);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.9) 95%, rgba(0, 0, 0, 1) 100%);
    z-index: 2;
}


.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 168, 255, 0.3);
    border-radius: 8px;
    padding: 12px 24px;
    margin-bottom: 40px;
}

.hero-badge i {
    color: #00a8ff;
    font-size: 18px;
}

.hero-badge span {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero-title {
    margin-bottom: 30px;
}

.title-line-1 {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.title-line-2 {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #00a8ff;
}

.hero-description {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.hero-features .feature-item i {
    color: #00a8ff;
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #00a8ff;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
}

.btn-primary:hover {
    background-color: #0088cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 168, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #444 0%, #666 100%);
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    background-color: #000;
    padding: 150px 0 100px;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-title {
    font-size: 48px;
    font-weight: 800;
    color: #00a8ff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.services-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.services-description {
    font-size: 18px;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 168, 255, 0.3);
    border-color: rgba(0, 168, 255, 0.5);
    background: rgba(30, 30, 30, 0.95);
}

.read-more-btn {
    background: linear-gradient(135deg, #00a8ff 0%, #0088cc 100%);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
    border: 1px solid rgba(0, 168, 255, 0.2);
}

.read-more-btn::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: left 0.5s ease;
}

.read-more-btn:hover::before {
    left: 100%;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 168, 255, 0.5);
    border-color: rgba(0, 168, 255, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.2s ease;
}

.service-icon i {
    font-size: 36px;
    color: #00a8ff;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: rgba(0, 168, 255, 0.2);
}

.service-card:hover .service-icon i {
    color: #00a8ff;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    font-weight: 400;
}

/* Why Us Section */
.why-us-section {
    background-color: #000;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.why-us-container {
    display: grid;
    grid-template-columns: 50% 50%;
    min-height: 100vh;
    width: 100%;
    gap: 0;
}

.why-us-image {
    position: relative;
    overflow: hidden;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-bg-image {
    width: 100%;
    height: 80%;
    object-fit: cover;
    filter: brightness(0.7);
    border-radius: 20px;
    border: 3px solid rgba(0, 168, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 168, 255, 0.2);
}

.experience-badge {
    position: absolute;
    bottom: 60px;
    left: 60px;
    background: #00a8ff;
    border-radius: 12px;
    padding: 20px 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 168, 255, 0.3);
    z-index: 10;
}

.badge-number {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.why-us-content {
    background-color: #000;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-us-header {
    margin-bottom: 40px;
}

.why-us-title {
    font-size: 48px;
    font-weight: 800;
    color: #00a8ff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.why-us-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.why-us-description {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 400;
}

.why-us-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

.why-us-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.why-us-features .feature-item i {
    color: #00a8ff;
    font-size: 18px;
    flex-shrink: 0;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.testimonial-quote {
    font-size: 18px;
    color: #fff;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.author-title {
    font-size: 16px;
    color: #ccc;
    font-weight: 400;
}

/* Pricing Responsive */
@media (max-width: 768px) {
    .pricing-section {
        padding: 80px 0;
    }
    
    .pricing-header {
        margin-bottom: 60px;
    }
    
    .pricing-title {
        font-size: 36px;
    }
    
    .pricing-subtitle {
        font-size: 24px;
    }
    
    .pricing-description {
        font-size: 16px;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .pricing-icon i {
        font-size: 28px;
    }
    
    .pricing-card-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 0;
    }
    
    .service-name {
        font-size: 14px;
        padding-right: 0;
    }
    
    .service-price {
        font-size: 15px;
    }
    
    .pricing-cta {
        padding: 40px 30px;
    }
    
    .pricing-cta-title {
        font-size: 24px;
    }
    
    .pricing-cta-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 28px;
    }
    
    .pricing-subtitle {
        font-size: 20px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .pricing-icon {
        width: 60px;
        height: 60px;
    }
    
    .pricing-icon i {
        font-size: 24px;
    }
    
    .pricing-card-title {
        font-size: 18px;
    }
    
    .pricing-cta {
        padding: 30px 25px;
    }
    
    .pricing-cta-title {
        font-size: 20px;
    }
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-header {
        margin-bottom: 60px;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .faq-subtitle {
        font-size: 24px;
    }
    
    .faq-description {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-question h4 {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 25px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 28px;
    }
    
    .faq-subtitle {
        font-size: 20px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h4 {
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 18px 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        position: static;
        transform: none;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 100px 0 60px;
    }
    
    .title-line-1,
    .title-line-2 {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-section {
        padding: 100px 0 60px;
    }
    
    .services-title {
        font-size: 36px;
    }
    
    .services-subtitle {
        font-size: 24px;
    }
    
    .services-description {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 100vh;
        padding: 80px 0 40px;
    }
    
    .title-line-1,
    .title-line-2 {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-features .feature-item {
        font-size: 14px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .services-section {
        padding: 80px 0 40px;
    }
    
    .services-title {
        font-size: 28px;
    }
    
    .services-subtitle {
        font-size: 20px;
    }
    
    .services-description {
        font-size: 14px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .why-us-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .why-us-image {
        height: 50vh;
        padding: 20px;
    }
    
    .why-us-bg-image {
        height: 100%;
        border-radius: 15px;
    }
    
    .why-us-content {
        padding: 60px 30px;
    }
    
    .why-us-title {
        font-size: 36px;
    }
    
    .why-us-subtitle {
        font-size: 24px;
    }
    
    .why-us-description {
        font-size: 16px;
    }
    
    .why-us-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .experience-badge {
        bottom: 40px;
        left: 40px;
        padding: 15px 20px;
    }
    
    .badge-number {
        font-size: 28px;
    }
    
    .badge-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .why-us-content {
        padding: 40px 20px;
    }
    
    .why-us-title {
        font-size: 28px;
    }
    
    .why-us-subtitle {
        font-size: 20px;
    }
    
    .why-us-description {
        font-size: 14px;
    }
    
    .why-us-features .feature-item {
        font-size: 14px;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .testimonial-quote {
        font-size: 16px;
    }
    
    .author-name {
        font-size: 18px;
    }
    
    .author-title {
        font-size: 14px;
    }
    
    .why-us-image {
        padding: 15px;
    }
    
    .why-us-bg-image {
        border-radius: 12px;
        border: 2px solid rgba(0, 168, 255, 0.3);
    }
    
    .experience-badge {
        bottom: 30px;
        left: 30px;
        padding: 12px 16px;
    }
    
    .badge-number {
        font-size: 24px;
    }
    
    .badge-text {
        font-size: 10px;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-main {
        gap: 30px;
    }
    
    .footer-logo {
        font-size: 24px;
    }
    
    .footer-logo i {
        font-size: 28px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-title {
        font-size: 18px;
    }
    
    .footer-links li a {
        font-size: 14px;
    }
    
    .footer-contact .contact-item {
        font-size: 13px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-legal {
        gap: 15px;
    }
    
    .footer-legal a {
        font-size: 12px;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-subtitle {
        font-size: 24px;
    }
    
    .contact-description {
        font-size: 16px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: all 0.3s ease;
}

.modal.show {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background: #0f0f0f;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    height: auto;
    max-height: 90vh;
    overflow: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
}

.modal.show .modal-content {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Prevent scrolling in modal */
.modal.show {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.modal.show * {
    overscroll-behavior: none;
}

.close {
    color: rgba(255, 255, 255, 0.6);
    float: right;
    font-size: 24px;
    font-weight: 400;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 2001;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.modal-header {
    background: #1a1a1a;
    padding: 30px 35px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #00a8ff;
    border: 1px solid rgba(0, 168, 255, 0.3);
}

.modal-header h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.modal-body {
    padding: 30px 35px;
    background: #0f0f0f;
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    min-height: 0;
}

.modal-body h3 {
    color: #00a8ff;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.modal-body h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00a8ff, #0088cc);
    border-radius: 2px;
}

.modal-body p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 16px;
}

.modal-body ul {
    color: #e0e0e0;
    margin-bottom: 20px;
    padding-left: 0;
    list-style: none;
}

.modal-body li {
    margin-bottom: 10px;
    line-height: 1.5;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.modal-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #00a8ff;
    font-weight: bold;
    font-size: 16px;
}

.modal-footer {
    padding: 25px 35px 30px;
    text-align: center;
    background: #0f0f0f;
    border-radius: 0 0 16px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-cta-btn {
    background: #00a8ff;
    color: #fff;
    border: none;
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.modal-cta-btn:hover {
    background: #0088cc;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.2s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.2s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.2s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.2s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Pricing Section */
.pricing-section {
    background-color: #000;
    padding: 100px 0;
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-title {
    font-size: 48px;
    font-weight: 800;
    color: #00a8ff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.pricing-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.pricing-description {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 168, 255, 0.05) 0%, rgba(0, 168, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 168, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 168, 255, 0.1);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
    background: rgba(0, 168, 255, 0.2);
    transform: scale(1.1);
}

.pricing-icon i {
    font-size: 32px;
    color: #00a8ff;
}

.pricing-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.pricing-list {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-item:last-child {
    border-bottom: none;
}

.service-name {
    color: #e0e0e0;
    font-size: 15px;
    font-weight: 500;
    flex: 1;
    text-align: left;
    padding-right: 15px;
}

.service-price {
    color: #00a8ff;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
}

.pricing-btn {
    background: linear-gradient(135deg, #00a8ff 0%, #0088cc 100%);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
}

.pricing-btn:hover {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 255, 0.4);
}

.pricing-cta {
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.pricing-cta-description {
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pricing-cta-btn {
    background: linear-gradient(135deg, #00a8ff 0%, #0088cc 100%);
    color: #fff;
    border: none;
    padding: 18px 36px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 168, 255, 0.3);
}

.pricing-cta-btn:hover {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 255, 0.4);
}

/* FAQ Section */
.faq-section {
    background-color: #000;
    padding: 100px 0;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-title {
    font-size: 48px;
    font-weight: 800;
    color: #00a8ff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.faq-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.faq-description {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 168, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.1);
}

.faq-question {
    padding: 25px 30px;
    background: transparent;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(0, 168, 255, 0.1);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 16px;
    color: #00a8ff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
    opacity: 1;
    background: transparent;
}

.faq-answer p {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background-color: #000;
    padding: 100px 0;
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-title {
    font-size: 48px;
    font-weight: 800;
    color: #00a8ff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.contact-description {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.2s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 168, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: #00a8ff;
}

.contact-details h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.contact-details p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 5px;
    line-height: 1.4;
}

.contact-form-container {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a8ff;
    box-shadow: 0 0 0 3px rgba(0, 168, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.submit-btn {
    background: #00a8ff;
    color: #fff;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #0088cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 168, 255, 0.3);
}

/* Footer */
.footer {
    background-color: #000;
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
}

.footer-description {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(0, 168, 255, 0.1);
    border: 1px solid rgba(0, 168, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00a8ff;
    font-size: 18px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #00a8ff;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 168, 255, 0.3);
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    display: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 0;
}

.footer-links li a:hover {
    color: #00a8ff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact .contact-item i {
    color: #ccc;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    color: #999;
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: #00a8ff;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-section {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .why-us-container {
        flex-direction: column;
        text-align: center;
    }
    
    .why-us-image {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .why-us-content {
        width: 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
    }
    
    body {
        overflow-x: hidden;
    }
    
    html {
        overflow-x: hidden;
    }
    
    /* Fix horizontal scrolling */
    * {
        max-width: 100%;
    }
    
    /* Header Mobile */
    .header {
        padding: 15px 0;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 24px;
        padding: 15px 30px;
        color: #fff;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 8px;
    }
    
    .nav-link:hover {
        background: rgba(0, 168, 255, 0.2);
        color: #00a8ff;
    }
    
    .hamburger {
        display: flex;
    }
    
    .cta-button {
        display: none;
    }
    
    /* Hero Mobile */
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        width: 100%;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 40px;
        line-height: 1.6;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 15px 30px;
        font-size: 16px;
    }
    
    /* Services Mobile */
    .services-section {
        padding: 80px 0 40px;
    }
    
    .services-title {
        font-size: 32px;
    }
    
    .services-subtitle {
        font-size: 18px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .read-more-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Why Us Mobile */
    .why-us-section {
        padding: 60px 0;
    }
    
    .why-us-title {
        font-size: 28px;
    }
    
    .why-us-subtitle {
        font-size: 16px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        font-size: 18px;
    }
    
    .why-us-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }
    
    .feature-icon i {
        font-size: 18px;
    }
    
    .feature-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .testimonial {
        padding: 20px;
        margin-top: 30px;
    }
    
    .testimonial-text {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .testimonial-author {
        font-size: 14px;
    }
    
    /* FAQ Mobile */
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-subtitle {
        font-size: 16px;
    }
    
    .faq-item {
        margin-bottom: 15px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h4 {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    /* Pricing Mobile */
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-title {
        font-size: 28px;
    }
    
    .pricing-subtitle {
        font-size: 16px;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .pricing-icon i {
        font-size: 24px;
    }
    
    .pricing-card-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .pricing-item {
        padding: 10px 0;
    }
    
    .service-name {
        font-size: 14px;
    }
    
    .service-price {
        font-size: 14px;
    }
    
    .pricing-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .pricing-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .pricing-cta-title {
        font-size: 20px;
    }
    
    .pricing-cta-description {
        font-size: 14px;
    }
    
    .pricing-cta-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    /* Contact Mobile */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-title {
        font-size: 28px;
        text-align: center;
    }
    
    .contact-subtitle {
        font-size: 16px;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        width: 100%;
    }
    
    .contact-info {
        order: 2;
        width: 100%;
    }
    
    .contact-form-container {
        order: 1;
        width: 100%;
    }
    
    .contact-item {
        padding: 20px;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-icon i {
        font-size: 20px;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-details h4 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #00a8ff;
    }
    
    .contact-details p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 5px;
    }
    
    .contact-form {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .form-group {
        margin-bottom: 20px;
        width: 100%;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 15px;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
        display: block;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 100%;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
        width: 100%;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        width: 100%;
    }
    
    .footer-section {
        margin-bottom: 30px;
        width: 100%;
    }
    
    .footer-logo {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo-img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .footer-description {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .social-link i {
        font-size: 18px;
    }
    
    .footer-title {
        font-size: 18px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-links {
        gap: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        width: 100%;
        text-align: center;
    }
    
    .footer-links li a {
        font-size: 14px;
        padding: 10px 15px;
        display: block;
        width: 100%;
        border-radius: 6px;
        transition: all 0.2s ease;
    }
    
    .footer-links li a:hover {
        background: rgba(0, 168, 255, 0.1);
        color: #00a8ff;
    }
    
    .footer-contact {
        gap: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 300px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .footer-contact .contact-item i {
        font-size: 16px;
        color: #ccc;
        flex-shrink: 0;
    }
    
    .footer-contact .contact-item span {
        font-size: 14px;
        word-break: break-word;
        flex: 1;
    }
    
    .footer-bottom {
        padding: 20px 0;
        width: 100%;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
    }
    
    .footer-copyright {
        width: 100%;
    }
    
    .footer-copyright p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .footer-legal {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .footer-legal a {
        font-size: 12px;
        padding: 5px 10px;
    }
    
/* Modal Mobile */
@media (max-width: 768px) {
    .modal-content {
        margin: 2% auto;
        max-width: 95%;
        max-height: 95vh;
        width: 95%;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.7);
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .modal.show .modal-content {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .modal-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .modal-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .modal-icon i {
        font-size: 20px;
    }
    
    .modal-header h2 {
        font-size: 20px;
        text-align: center;
    }
    
    .modal-body {
        padding: 20px;
        max-height: 60vh;
        overflow-y: auto;
    }
    
    .modal-body h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .modal-body p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .modal-body ul {
        padding-left: 20px;
        margin-bottom: 15px;
    }
    
    .modal-body li {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .modal-footer {
        padding: 20px;
    }
    
    .modal-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
}

.modal-header {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    gap: 15px;
}

.modal-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

.modal-icon i {
    font-size: 20px;
}

.modal-header h2 {
    font-size: 20px;
    text-align: center;
}

.modal-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-body h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.modal-body p {
    font-size: 14px;
    margin-bottom: 12px;
}

.modal-body ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.modal-body li {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.modal-footer {
    padding: 20px;
}

.modal-cta-btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    max-width: 300px;
}
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        width: 100%;
    }
    
    body {
        overflow-x: hidden;
    }
    
    html {
        overflow-x: hidden;
    }
    
    /* Fix horizontal scrolling */
    * {
        max-width: 100%;
    }
    
    .hero-section {
        padding: 100px 0 60px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .services-title,
    .why-us-title,
    .faq-title,
    .pricing-title,
    .contact-title {
        font-size: 24px;
    }
    
    .services-subtitle,
    .why-us-subtitle,
    .faq-subtitle,
    .pricing-subtitle,
    .contact-subtitle {
        font-size: 14px;
    }
    
    .service-card,
    .pricing-card {
        padding: 20px 15px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .modal-content {
        margin: 1% auto;
        max-width: 98%;
        width: 98%;
        max-height: 98vh;
    }
    
    .modal-header {
        padding: 15px;
        gap: 10px;
    }
    
    .modal-icon {
        width: 40px;
        height: 40px;
    }
    
    .modal-icon i {
        font-size: 18px;
    }
    
    .modal-header h2 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 15px;
        max-height: 65vh;
    }
    
    .modal-body h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .modal-body p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .modal-body li {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .modal-footer {
        padding: 15px;
    }
    
    .modal-cta-btn {
        padding: 10px 20px;
        font-size: 13px;
        max-width: 280px;
    }
    
    .nav-link {
        font-size: 20px;
        padding: 12px 25px;
    }
    
    /* Contact Small Mobile */
    .contact-form {
        padding: 20px 15px;
    }
    
    .contact-item {
        padding: 15px;
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .contact-icon i {
        font-size: 16px;
    }
    
    .contact-details h4 {
        font-size: 16px;
    }
    
    .contact-details p {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Footer Small Mobile */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-main {
        gap: 25px;
    }
    
    .footer-section {
        margin-bottom: 25px;
    }
    
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link i {
        font-size: 16px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-links li a {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .footer-contact .contact-item {
        max-width: 280px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .footer-contact .contact-item i {
        font-size: 14px;
        color: #ccc;
        flex-shrink: 0;
    }
    
    .footer-contact .contact-item span {
        font-size: 13px;
        flex: 1;
    }
    
    .footer-copyright p {
        font-size: 11px;
    }
    
    .footer-legal a {
        font-size: 11px;
        padding: 4px 8px;
    }
}
