/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #0f172a;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #1e293b;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #60a5fa;
}

.logo-image {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
    object-fit: contain;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

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

.nav-link {
    text-decoration: none;
    color: #f1f5f9;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #60a5fa;
}

.nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: #334155;
    color: #60a5fa;
    padding-left: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #e5e7eb;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.8)), url('skyscraper-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
}

.btn-primary {
    background: #fbbf24;
    color: #1e293b;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1e293b;
    transform: translateY(-2px);
}

/* Button Loading State */
.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-graphic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 300px;
    width: 100%;
}

.hero-graphic i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    animation: float 6s ease-in-out infinite;
}

.hero-graphic i:nth-child(2) {
    animation-delay: 1s;
}

.hero-graphic i:nth-child(3) {
    animation-delay: 2s;
}

.hero-graphic i:nth-child(4) {
    animation-delay: 3s;
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.section-header p {
    font-size: 1.1rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #1e293b;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #334155;
    border: 1px solid #475569;
    border-radius: 8px;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.tab-button:hover {
    background: #475569;
    border-color: #60a5fa;
    color: #f8fafc;
}

.tab-button.active {
    background: #60a5fa;
    border-color: #60a5fa;
    color: white;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.tab-button i {
    font-size: 1rem;
}

/* Service Content */
.service-content {
    position: relative;
}

.service-tab {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

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

.service-tab-content {
    background: #334155;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #475569;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.service-tab-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #475569;
}

.service-tab-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #60a5fa, #9333ea);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-tab-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-tab-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.service-tab-info p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-tab-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.feature-item {
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #475569;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #60a5fa;
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 2rem;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #475569;
    min-width: 200px;
}

.service-pricing-simple {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    margin-top: 1rem;
}

.pricing-badge {
    text-align: center;
    padding: 0.75rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 6px;
    width: 100%;
}

.pricing-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.price-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fbbf24;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #0f172a;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.about-intro {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-story {
    margin-bottom: 2rem;
}

.about-story h3,
.about-values h3,
.about-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.about-story p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.value-item {
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #334155;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #60a5fa;
    transform: translateY(-2px);
}

.value-item i {
    font-size: 2rem;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-features {
    margin-bottom: 2rem;
}

.about-features h3 {
    margin-bottom: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.feature span {
    color: #e2e8f0;
    font-weight: 500;
}

.demo-offer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(147, 51, 234, 0.1));
    border: 1px solid #475569;
    border-left: 4px solid #60a5fa;
}

.demo-offer h3 {
    color: #60a5fa;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.demo-offer p {
    color: #cbd5e1;
    margin-bottom: 0;
    line-height: 1.6;
}

.demo-offer strong {
    color: #fbbf24;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: #1e293b;
    border-radius: 12px;
    border: 1px solid #334155;
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: #60a5fa;
    transform: translateY(-2px);
}

.stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #cbd5e1;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #1e293b;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #f8fafc;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #cbd5e1;
}

.contact-item i {
    color: #60a5fa;
    font-size: 1.2rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #25d366;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-link i {
    font-size: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #60a5fa;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.contact-form {
    background: #334155;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border: 1px solid #475569;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #475569;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: #1e293b;
    color: #e5e7eb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #60a5fa;
    background: #0f172a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group select option {
    background: #1e293b;
    color: #e5e7eb;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid #1e293b;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.footer-logo .logo-image {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
    object-fit: contain;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #475569;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #fbbf24;
    color: #0f172a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    color: #94a3b8;
}

/* Service Modal Styles */
.service-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-modal-content {
    background-color: #1e293b;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid #475569;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.service-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #475569;
}

.service-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-modal-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-modal-close:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.service-modal-body {
    color: #cbd5e1;
    line-height: 1.7;
}

.service-modal-body h3 {
    color: #f8fafc;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.5rem;
}

.service-modal-body p {
    margin-bottom: 1rem;
}

.service-modal-body ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.service-modal-body li {
    margin-bottom: 0.5rem;
}

.modal-pricing {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid #fbbf24;
    border-radius: 12px;
    border-left: 4px solid #fbbf24;
}

.modal-pricing h3 {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.modal-pricing p {
    color: #cbd5e1;
    margin-bottom: 0;
}

.modal-pricing strong {
    color: #fbbf24;
    font-size: 1.1em;
}

.service-modal-cta {
    margin-top: 2rem;
    text-align: center;
}

/* Quote Button Styling */
.btn-quote {
    background: #60a5fa;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .service-tab-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-pricing {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .service-pricing-simple {
        gap: 1rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .service-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1e293b;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid #334155;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1rem;
        color: #94a3b8;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .service-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .service-tab-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .contact {
        padding: 60px 0;
    }
    
    .service-tab-content {
        padding: 1.5rem;
    }
    
    .service-pricing {
        flex-direction: column;
        gap: 1rem;
    }
    
    .service-pricing-simple {
        gap: 1rem;
    }
    
    .price-amount {
        font-size: 1.4rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Hero Section */
.service-hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9)), url('skyscraper-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #60a5fa, #9333ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-hero-icon i {
    font-size: 3rem;
    color: white;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.service-hero-description {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Details */
.service-details {
    padding: 80px 0;
    background: #1e293b;
}

.service-overview {
    margin-bottom: 4rem;
}

.service-overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
    text-align: center;
}

.service-overview-content > p {
    font-size: 1.2rem;
    color: #cbd5e1;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-benefits {
    margin-bottom: 4rem;
}

.service-benefits h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 3rem;
    text-align: center;
}

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

.benefit-item {
    background: #334155;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #475569;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #60a5fa;
    transform: translateY(-2px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa, #9333ea);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    vertical-align: top;
}

.benefit-icon i {
    font-size: 1.2rem;
    color: white;
}

.benefit-content {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 70px);
}

.benefit-content h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.benefit-content p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}



.service-process {
    margin-bottom: 4rem;
}

.service-process h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
    text-align: center;
}

.service-process > p {
    font-size: 1.2rem;
    color: #cbd5e1;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.process-step {
    background: #334155;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #475569;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa, #9333ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1rem;
}

.step-content h4 {
    color: #f8fafc;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-content p {
    color: #cbd5e1;
    line-height: 1.6;
}

.timeline-note {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-note p {
    color: #fbbf24;
    font-weight: 500;
    margin: 0;
}

/* Tech Stack */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.tech-category {
    background: #334155;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #475569;
    text-align: center;
}

.tech-category h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tech-item {
    background: #1e293b;
    color: #60a5fa;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Security Approach */
.security-approach {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.approach-item {
    background: #334155;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #475569;
}

.approach-item h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.approach-item h4 i {
    color: #60a5fa;
}

.approach-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Integration List */
.integration-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.integration-category {
    background: #334155;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #475569;
    text-align: center;
}

.integration-category h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.integration-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.integration-item {
    background: #1e293b;
    color: #60a5fa;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Deliverables List */
.deliverables-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.deliverable-item {
    background: #334155;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #475569;
}

.deliverable-item h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.deliverable-item h4 i {
    color: #60a5fa;
}

.deliverable-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.result-item {
    background: #334155;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #475569;
    text-align: center;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.result-item h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.result-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

.approach-note {
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.approach-note p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

/* Legal Pages */
.legal-content {
    padding: 120px 0 80px;
    background: #0f172a;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.legal-header p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
    background: #1e293b;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #475569;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.legal-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    color: #cbd5e1;
    line-height: 1.6;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: #f8fafc;
    font-weight: 600;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-header h1 {
        font-size: 2.5rem;
    }
    
    .legal-body {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .legal-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-body {
        padding: 1.5rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
}

/* Service Pricing */
.service-pricing {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.pricing-card {
    background: #334155;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #475569;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.pricing-card h3 {
    color: #f8fafc;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.price-display {
    margin-bottom: 1.5rem;
}

.price-amount {
    display: block;
    font-size: 1.7rem;
    font-weight: 700;
    color: #fbbf24;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-top: 0.5rem;
}

.pricing-card > p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    color: #cbd5e1;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li i {
    color: #10b981;
    font-size: 0.9rem;
}

/* Related Services */
.related-services {
    padding: 60px 0;
    background: #0f172a;
}

.related-services h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    text-align: center;
    margin-bottom: 3rem;
}

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

.related-service-card {
    background: #1e293b;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #334155;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
}

.related-service-card:hover {
    border-color: #60a5fa;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.related-service-card i {
    font-size: 2.5rem;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.related-service-card h4 {
    color: #f8fafc;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.related-service-card p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Active Navigation Link */
.dropdown-menu a.active {
    background: #334155;
    color: #60a5fa;
    font-weight: 600;
}

/* Logo Link */
.nav-logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

/* Responsive Design for Service Pages */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-hero-description {
        font-size: 1.1rem;
    }
    
    .service-hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .service-overview-content h2,
    .service-benefits h2,
    .service-process h2 {
        font-size: 2rem;
    }
    

    
    .process-steps,
    .tech-stack,
    .security-approach,
    .integration-list,
    .deliverables-list,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .related-services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 100px 0 60px;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-hero-icon i {
        font-size: 2.5rem;
    }
    
    .service-details {
        padding: 60px 0;
    }
    
    .related-services {
        padding: 40px 0;
    }
}

/* Story Content */
.story-content {
    margin-top: 2rem;
}

.story-text p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Stats Section */
.stats-section {
    margin-bottom: 4rem;
}

.stats-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 3rem;
    text-align: center;
}

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

.stat-item {
    background: #334155;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #475569;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #60a5fa;
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.stat-item h4 {
    color: #f8fafc;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stat-item p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(147, 51, 234, 0.1));
    border: 1px solid #475569;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Grid for Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: #334155;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #475569;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(147, 51, 234, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: #60a5fa;
}

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

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #60a5fa, #9333ea);
    transform: scale(1.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #475569, #64748b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 0.5rem 0;
    color: #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.service-price {
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 6px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.service-card .btn {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}
