/* Global Styles – Blue & White Theme with Official Brand Colors */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
}

/* Navigation – Responsive */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 100;
    border-bottom: 2px solid #0066cc;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap; /* Allows wrapping on mobile */
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003366;
    white-space: nowrap;
}

.logo span {
    font-weight: 300;
    color: #0066cc;
    margin-left: 5px;
}

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

.nav-menu a {
    color: #003366;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #0066cc;
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.7);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
}

/* Buttons */
.btn-blue {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background-color: #0066cc;
    border: 2px solid #0066cc;
    color: white;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 40px;
    transition: 0.3s;
}

.btn-blue:hover {
    background-color: #003366;
    border-color: #003366;
}

/* Services Section */
.services {
    background-color: #f9f9f9;
    padding: 4rem 0;
}

.services h2, .contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #003366;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,102,204,0.1);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,102,204,0.2);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1rem 0.5rem;
    color: #0066cc;
    font-size: 1.3rem;
}

.service-card p {
    padding: 0 1rem 1.5rem;
    color: #555;
}

/* About Section – refined layout */
.about {
    padding: 4rem 0;
    background: white;
}

.about .section-title {
    text-align: left;
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    color: #003366;
    padding-top: 0;
}

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

.about-text p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-top: 0;
    margin-bottom: 2rem;
}

.social-title {
    font-size: 1.3rem;
    color: #0066cc;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-image {
    display: flex;
    justify-content: center;
}

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

/* Social Icons – official brand colors, all same size */
.social-icons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: none;
    width: 70px;
}

.social-icon i {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.social-icon span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
}

/* Brand Colors */
.social-icon.instagram i { color: #E4405F; }
.social-icon.facebook i { color: #1877F2; }
.social-icon.x i { color: #000000; }
.social-icon.tiktok i { color: #000000; }

/* For SVG fallback (X logo) – match size */
.social-icon.x svg {
    width: 2.2rem;
    height: 2.2rem;
    fill: #000000;
    margin-bottom: 8px;
}

/* No hover effects */
.social-icon:hover i,
.social-icon:hover span,
.social-icon:hover svg {
    color: inherit;
    fill: inherit;
}

/* Contact Section – two-column layout */
.contact {
    background-color: #f0f7ff;
    padding: 4rem 0;
}

.contact > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #555;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Form */
.contact-form-container {
    width: 100%;
}

.contact-form {
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.contact-form button {
    align-self: flex-start;
    cursor: pointer;
    background-color: #0066cc;
    border: none;
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.contact-form button:hover {
    background-color: #003366;
}

/* Contact Info (right column) */
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,102,204,0.1);
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #0066cc;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 0.5rem;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    padding: 0.5rem;
    border-radius: 8px;
}

.contact-info .info-item:hover {
    background-color: rgba(0,102,204,0.05);
}

.contact-info .info-item i {
    font-size: 1.8rem;
    width: 2rem;
    text-align: center;
}

/* Brand colors for contact info icons */
.contact-info .info-item .fa-whatsapp { color: #25D366; }
.contact-info .info-item .fa-telegram-plane { color: #0088cc; }
.contact-info .info-item .fa-facebook-f { color: #1877F2; }
.contact-info .info-item .fa-instagram { color: #E4405F; }
.contact-info .info-item .fa-x-twitter { color: #000000; }
.contact-info .info-item .fa-tiktok { color: #000000; }

/* For SVG fallback in contact info */
.contact-info .info-item svg {
    width: 1.8rem;
    height: 1.8rem;
    fill: #000000;
    vertical-align: middle;
}

.contact-info .info-item span {
    color: #333;
    word-break: break-word;
}

/* Footer */
footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

footer a {
    color: #99ccff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Floating Icons (bottom right) */
.floating-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    text-decoration: none;
    cursor: pointer;
    transition: none;
    border: none;
    box-shadow: none;
}

.float-btn.whatsapp i { color: #25D366; }
.float-btn.telegram i { color: #0088cc; }
.float-btn.support i { color: #0066cc; }

.float-btn:hover i {
    color: inherit;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation stacks vertically */
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-menu {
        justify-content: center;
        gap: 1rem;
    }
    .nav-menu a {
        font-size: 1rem;
    }

    /* Hero heading smaller */
    .hero h1 {
        font-size: 2.2rem;
    }

    /* About grid stacks */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image img {
        width: 100%;
        max-width: 100%;
    }
    .social-icons {
        justify-content: center;
        gap: 20px;
    }

    /* Contact grid stacks */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .contact-info {
        padding: 1.5rem;
    }
    .contact-info .info-item {
        font-size: 1rem;
        padding: 0.3rem;
    }
    .contact-info .info-item i {
        font-size: 1.5rem;
        width: 1.8rem;
    }

    /* Floating icons smaller */
    .floating-icons {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}