/* Reset and Base Styles */

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333333;
    overflow-x: hidden;
}

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


/* Custom Colors */

:root {
    --maxim-blue: #0066cc;
    --maxim-dark-blue: #004499;
    --maxim-yellow: #ffd700;
    --maxim-gray: #333333;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
}


/* Typography */

.section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--maxim-gray);
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1.125rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}


/* Buttons */

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

.btn-primary {
    background-color: #0056b3;
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--maxim-yellow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--maxim-gray);
}


/* Hero Slider */

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.slide-title {
    font-family: 'Raleway', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    animation: slideInUp 1s ease-out;
}

.slide-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--maxim-yellow);
    animation: slideInUp 1s ease-out 0.2s both;
}

.slide-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.4s both;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s both;
}


/* Slider Navigation */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.slider-arrow-prev {
    left: 20px;
}

.slider-arrow-next {
    right: 20px;
}

.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
}

.slider-progress-bar {
    height: 100%;
    background: var(--maxim-yellow);
    width: 0%;
    animation: progress 7s linear infinite;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--white);
}


/* About Section */

.about-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

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

.about-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--maxim-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


/* Services Section */

.services-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--maxim-gray);
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--maxim-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--maxim-dark-blue);
}


/* Team Highlight Section */

.team-highlight {
    padding: 100px 20px;
    background-color: rgba(0, 0, 255, 0.116);
    text-align: center;
}

.team-highlight h2 {
    font-size: 2.8rem;
    color: #222;
    margin-bottom: 20px;
    font-weight: bold;
}

.team-highlight .animated-word {
    color: blue;
    transition: opacity 0.4s ease;
}

.team-highlight p {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
}

.team-highlight .btn.primary {
    background-color: #0046AD;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}


/* Placeholder Sections */

.placeholder-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
    text-align: center;
}


/* Contact Section */

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


/* Contact Info */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card,
.quick-links-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-title,
.quick-links-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--maxim-gray);
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    background-color: var(--maxim-blue);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    color: var(--maxim-gray);
    margin-bottom: 0.5rem;
}

.contact-value {
    color: #666;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--maxim-yellow);
    color: var(--maxim-gray);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.map-btn:hover {
    background-color: #e6c200;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quick-link {
    color: var(--maxim-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-link:hover {
    color: var(--maxim-dark-blue);
}


/* Footer */

.footer {
    background-color: var(--maxim-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--maxim-yellow);
    margin-bottom: 1rem;
    display: block;
}

.footer-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.social-link {
    color: #ccc;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-link:hover {
    color: var(--maxim-yellow);
    background-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--maxim-yellow);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-item i {
    color: var(--maxim-yellow);
    font-size: 1.1rem;
    margin-top: 2px;
    width: 20px;
    flex-shrink: 0;
}

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

.contact-label {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.contact-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.contact-link:hover {
    color: var(--maxim-yellow);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    color: #ccc;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: var(--maxim-yellow);
}


/* Toast Notification */

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    color: #10b981;
    font-size: 1.5rem;
}

.toast-title {
    font-weight: 600;
    color: var(--maxim-gray);
}

.toast-description {
    color: #666;
    font-size: 0.875rem;
}


/* Animations */

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

@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}


/* Responsive Design */

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    .nav-menu {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .slide-title {
        font-size: 2.5rem;
    }
    .slide-subtitle {
        font-size: 1.25rem;
    }
    .slide-description {
        font-size: 1rem;
    }
    .slide-buttons {
        flex-direction: column;
        align-items: center;
    }
    .section-title {
        font-size: 2rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-content h2 {
        text-align: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        gap: 1rem;
    }
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    .slider-arrow-prev {
        left: 10px;
    }
    .slider-arrow-next {
        right: 10px;
    }
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .slide-title {
        font-size: 2rem;
    }
    .contact-form-container,
    .contact-info-card,
    .quick-links-card {
        padding: 1.5rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* Smooth scrolling */

html {
    scroll-behavior: smooth;
}


/* Loading states */

.btn-loading {
    display: none;
}

.form-submit-btn.loading .btn-text {
    display: none;
}

.form-submit-btn.loading .btn-loading {
    display: inline;
}