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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 600; margin-bottom: 1rem; }
h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3);
}

.btn-outline {
    background: transparent;
    color: #00b4d8;
    border: 2px solid #00b4d8;
}

.btn-outline:hover {
    background: #00b4d8;
    color: white;
}

/* Override primary button styles in hero section */
.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
    background: transparent;
    border: none;
    color: white;
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-outline:hover {
    color: rgba(255, 255, 255, 0.8);
}

.btn-full { width: 100%; }

/* Navigation */
.navbar {
    background: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

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

@media (max-width: 1200px) {
    .nav-container {
        padding: 0 40px;
    }
}

.nav-logo {
    flex: 0 0 auto;
    margin-left: 0;
    padding-left: 80px;
    background: white;
}

@media (max-width: 1200px) {
    .nav-logo {
        margin-left: 0;
    }
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.8rem;
}

.logo-image {
    height: 42px;
    width: auto;
    border-radius: 6px;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6rem;
    margin: 0;
    padding: 0;
    margin-left: auto;
    padding-right: 120px;
    background: white;
}

@media (max-width: 1200px) {
    .nav-menu {
        padding-right: 0;
    }
}

.nav-menu .nav-item .nav-link {
    color: #000000 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-menu .nav-item .nav-link:hover {
    color: #333333 !important;
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .nav-menu {
        gap: 2rem;
        margin-right: 0;
    }

    .logo-image {
        height: 35px;
    }

    .logo-text {
        font-size: 1.4rem;
    }
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px 0 80px;
    text-align: left;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 1000;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
}

.hero-description {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: transparent;
    border: none;
    color: white;
}

.hero-buttons .btn:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 0;
}

.hero-logo-image {
    max-width: 450px;
    height: auto;
    border-radius: 24px;
    background-color: white;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-logo-image:hover {
    transform: translateY(-10px);
}

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

.section-header h2 { color: #333; margin-bottom: 1rem; }
.section-header p { font-size: 1.2rem; color: #666; }

/* Services Section */
.services {
    padding: 120px 0;
    background: #f8f9fa;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: #2c3e50;
}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.feature-item {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: #2c3e50;
}

.feature-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    color: white;
    text-align: center;
}

.cta-content h2 { color: white; margin-bottom: 1rem; }
.cta-content p { color: rgba(255, 255, 255, 0.9); font-size: 1.2rem; margin-bottom: 2rem; }

/* Contact Section */
.contact-hero {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    color: white;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.contact-hero .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1200px) {
    .contact-hero .container {
        padding: 0 20px;
    }
}

.contact-hero .section-header h1 { color: white; }
.contact-hero .section-header p { color: rgba(255, 255, 255, 0.9); }

.contact {
    padding: 0 0 80px;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 450px 600px;
    gap: 8rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    justify-content: center;
}

.contact-info {
    position: sticky;
    top: 100px;
}

@media (max-width: 1200px) {
    .contact-content {
        grid-template-columns: 400px 500px;
        padding: 0 20px;
        gap: 5rem;
    }
}

@media (max-width: 991px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        position: static;
    }
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: #333; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

/* Bootstrap Select Customization */
.bootstrap-select {
    width: 100% !important;
}

.bootstrap-select .btn {
    border: 2px solid #e9ecef;
    background-color: white;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    width: 100%;
    text-align: left;
}

.bootstrap-select .btn:focus,
.bootstrap-select .btn:active {
    border-color: #00b4d8 !important;
    outline: none !important;
    box-shadow: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
}

.bootstrap-select .dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.bootstrap-select .dropdown-item:hover,
.bootstrap-select .dropdown-item:focus,
.bootstrap-select .dropdown-item:active {
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    color: white;
}

.bootstrap-select .dropdown-item.active {
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    color: white;
}

.bootstrap-select .bs-searchbox .form-control {
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 0.5rem;
}

.bootstrap-select .bs-searchbox .form-control:focus {
    border-color: #00b4d8;
    box-shadow: none;
}

.bootstrap-select .filter-option-inner-inner {
    color: #495057;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bootstrap-select .dropdown-toggle::after {
    margin-left: auto;
}

.bootstrap-select .notify {
    background: #f8f9fa;
    color: #6c757d;
    border-radius: 4px;
}

/* Contact Page Steps */
.info-section {
    margin-bottom: 2.5rem;
}

.info-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
    position: relative;
}

.info-section h3:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

.activation-steps {
    margin: 2.5rem 0;
    padding: 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.step-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(5px);
}

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

.step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 180, 216, 0.2);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Benefits Section */
.benefits-list {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 1.2rem;
    border-bottom: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

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

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 180, 216, 0.2);
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.benefit-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* Contact Section */
.contact-section {
    margin-top: 3rem;
}

.contact-section .contact-item {
    background: white;
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-section .contact-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 180, 216, 0.2);
}

.contact-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.2rem;
}

.contact-section p {
    color: #00b4d8;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.contact-section small {
    display: block;
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00b4d8;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq { padding: 80px 0; background: white; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid #e9ecef; border-radius: 8px; margin-bottom: 1rem; }
.faq-question { padding: 1.5rem; background: #f8f9fa; cursor: pointer; }

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-logo-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    text-align: left;
}

.footer-section:first-child {
    max-width: 400px;
}

.footer-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
    color: #00b4d8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: white;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-section:first-child {
        max-width: 100%;
    }
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    max-width: 400px;
}

.flash-message {
    background: white;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.flash-success { border-left: 4px solid #28a745; }
.flash-error { border-left: 4px solid #dc3545; }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-title { font-size: 2.5rem; }
    .contact-content { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
    
    .logo-image { height: 35px; }
    .logo-text { font-size: 1.3rem; }
    .hero-logo-image { max-width: 250px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .btn { padding: 10px 20px; font-size: 0.9rem; }
    
    .logo-image { height: 30px; }
    .logo-text { font-size: 1.1rem; }
    .hero-logo-image { max-width: 200px; }
}
