/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #002B5B;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

.logo h2, .logo h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #FF6B00;
    margin: 0;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: #FF6B00;
}

.cta-btn {
    background: #FF6B00;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #e55a00;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Sections */
.hero, .about-hero, .igobi-hero {
    background: linear-gradient(rgba(0, 43, 91, 0.8), rgba(0, 43, 91, 0.8)), url('image/hero-background-index.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.about-hero, .igobi-hero {
    height: auto;
    padding: 8rem 0 5rem;
}

.hero-content h1, .about-hero-content h1, .igobi-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p, .about-hero-content p, .igobi-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Hero Content Layout */
.igobi-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: left;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* App Prototype Placeholder */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-prototype-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.app-prototype-placeholder:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 107, 0, 0.5);
    transform: translateY(-5px);
}

.app-prototype-placeholder i {
    font-size: 4rem;
    color: #FF6B00;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.app-prototype-placeholder h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.app-prototype-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.placeholder-border {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 10px;
    pointer-events: none;
}

.app-prototype-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* App Prototype Image */
.app-prototype-image {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.app-prototype-image:hover {
    transform: scale(1.02);
}

/* Hero App Image */
.hero-app-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    width: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-app-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #FF6B00;
    color: white;
}

.btn-primary:hover {
    background: #e55a00;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #002B5B;
}

/* Common Section Styles */
.intro, .who-we-are, .overview, .features-preview, .our-platforms, .testimonials, .how-it-works, .interactive-map, .benefits, .contact-section, .map-section, .faq-section {
    padding: 5rem 0;
}

.intro, .problem-solution, .key-features, .success-stories, .faq-section {
    background: #F5F5F5;
}

.who-we-are, .features-preview, .our-platforms, .testimonials, .how-it-works, .interactive-map, .overview, .contact-section, .map-section {
    background: white;
}

.trust-section, .mission-vision, .download-cta {
    padding: 5rem 0;
    background: #002B5B;
    color: white;
}

/* Typography */
h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #002B5B;
    text-align: center;
    margin-bottom: 3rem;
}

.trust-section h2, .mission-vision h2, .download-cta h2 {
    color: white;
}

/* Grid Layouts */
.features-grid, .platforms-grid, .benefits-grid, .testimonials-grid, .stories-grid {
    display: grid;
    gap: 2rem;
}

.features-grid, .platforms-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.benefits-grid, .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.stories-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

/* Cards */
.feature-card, .platform-card, .benefit-card, .testimonial, .story-card {
    background: #F5F5F5;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card, .platform-card {
    padding: 3rem 2rem;
}

.feature-card:hover, .platform-card:hover, .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-card, .benefit-card {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Icons */
.feature-icon, .platform-icon, .benefit-icon {
    font-size: 3rem;
    color: #FF6B00;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    font-size: 2.5rem;
}

/* Feature Cards Content */
.feature-card h3, .platform-card h3, .benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #002B5B;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
}

.feature-card p, .platform-card p, .benefit-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Links */
.feature-link, .platform-link {
    color: #FF6B00;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.feature-link:hover, .platform-link:hover {
    color: #e55a00;
}

/* Trust Points */
.trust-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.trust-point {
    text-align: center;
    padding: 2rem;
}

.trust-point i {
    font-size: 3rem;
    color: #FF6B00;
    margin-bottom: 1.5rem;
}

.trust-point h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.trust-point p {
    opacity: 0.9;
    line-height: 1.6;
}

/* About Page Specific */
.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.problem-card, .solution-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.problem-card .card-icon {
    color: #e74c3c;
}

.solution-card .card-icon {
    color: #27ae60;
}

.problem-card h3, .solution-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #002B5B;
    margin-bottom: 1rem;
    text-align: center;
}

.problem-card ul, .solution-card ul {
    list-style: none;
    padding-left: 0;
}

.problem-card li, .solution-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.problem-card li:before {
    content: "✗";
    color: #e74c3c;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.solution-card li:before {
    content: "✓";
    color: #27ae60;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Platform Features */
.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-tag {
    background: #002B5B;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mission Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission, .vision {
    text-align: center;
    padding: 2rem;
}

.mv-icon {
    font-size: 3rem;
    color: #FF6B00;
    margin-bottom: 1.5rem;
}

.mission h3, .vision h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mission p, .vision p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Work Process */
.work-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #FF6B00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.process-step h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #002B5B;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #002B5B;
    font-weight: 600;
}

.testimonial-author span {
    color: #FF6B00;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

/* Igobi Mobile Specific */
.overview-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: #F5F5F5;
    border-radius: 10px;
}

.stat h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B00;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #002B5B;
    font-weight: 600;
}

/* Features Table */
.features-table {
    max-width: 900px;
    margin: 0 auto;
}

.feature-row {
    margin-bottom: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    color: #FF6B00;
    min-width: 80px;
}

.feature-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #002B5B;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

/* Process Flow */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-item {
    background: #F5F5F5;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 220px;
}

.process-icon {
    font-size: 2.5rem;
    color: #FF6B00;
    margin-bottom: 1rem;
}

.process-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #002B5B;
    margin-bottom: 1rem;
}

.process-item p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

.process-arrow {
    font-size: 1.5rem;
    color: #FF6B00;
    margin: 0 0.5rem;
}

/* Interactive Map */
.map-placeholder {
    background: #F5F5F5;
    padding: 4rem 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.map-content i {
    font-size: 4rem;
    color: #FF6B00;
    margin-bottom: 1rem;
}

.map-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #002B5B;
    margin-bottom: 1rem;
}

.map-content p {
    color: #666;
    margin-bottom: 2rem;
}

.map-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.city-tag {
    background: #002B5B;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.map-address {
    background: white;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    color: #002B5B;
}

/* Success Stories */
.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2.5rem;
    color: #FF6B00;
}

.author-info strong {
    color: #002B5B;
    font-weight: 600;
    display: block;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Download CTA */
.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: #002B5B;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
    min-width: 200px;
}

.download-btn:hover {
    transform: translateY(-3px);
}

.download-btn i {
    font-size: 2rem;
}

.download-btn div span {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.download-btn div strong {
    font-size: 1.1rem;
    color: #002B5B;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-container h2,
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #002B5B;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B00;
}

.submit-btn {
    background: #FF6B00;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.submit-btn:hover {
    background: #e55a00;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #FF6B00;
    min-width: 30px;
    margin-top: 0.2rem;
}

.contact-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #002B5B;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #666;
    line-height: 1.6;
}

.social-media {
    margin-top: 2rem;
}

.social-media h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #002B5B;
    margin-bottom: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #FF6B00;
}

.social-link i {
    font-size: 1.2rem;
}

/* FAQ Styles */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #002B5B;
}

.faq-question i {
    color: #FF6B00;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FF6B00;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: #FF6B00;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #FF6B00;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #e55a00;
}

.newsletter {
    display: flex;
    margin-top: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.newsletter button {
    background: #FF6B00;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    transition: background 0.3s ease;
}

.newsletter button:hover {
    background: #e55a00;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header .container {
        position: relative;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #002B5B;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav.active {
        max-height: 300px;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav ul li:last-child {
        border-bottom: none;
    }

    .nav ul li a {
        display: block;
        padding: 1rem 2rem;
        text-align: center;
        transition: background 0.3s ease;
    }

    .nav ul li a:hover,
    .nav ul li a.active {
        background: rgba(255, 107, 0, 0.1);
        color: #FF6B00;
    }

    .cta-btn {
        display: none;
    }

    .hero-content h1, .about-hero-content h1, .igobi-hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Hero Layout Responsive */
    .igobi-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .app-prototype-placeholder {
        min-height: 300px;
        padding: 2rem 1.5rem;
    }

    .app-prototype-placeholder i {
        font-size: 3rem;
    }

    .app-prototype-placeholder h3 {
        font-size: 1.3rem;
    }

    .app-prototype-image {
        max-height: 250px;
    }

    .hero-app-image {
        max-height: 300px;
        max-width: 90%;
    }

    .features-grid, .platforms-grid, .problem-solution-grid, .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .trust-points, .benefits-grid, .testimonials-grid, .stories-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1, .about-hero-content h1, .igobi-hero-content h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .feature-card, .platform-card, .benefit-card {
        padding: 2rem 1rem;
    }

    .work-process {
        grid-template-columns: 1fr;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-container, .contact-info {
        padding: 0 1rem;
    }

    .logo-img {
        height: 25px;
    }

    .app-prototype-image {
        max-height: 200px;
    }

    .hero-app-image {
        max-height: 250px;
        max-width: 85%;
    }
}
