/* =========================
   Global Reset & Variables
========================= */
:root {
    --primary: #0a2540;
    --secondary: #0077ff;
    --light: #f5f7fa;
    --dark: #0b0f19;
    --text: #333;
    --card-bg: #ffffff;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: #ffffff;
}

/* =========================
   Hero Section
========================= */
.hero {
    min-height: 95vh;
    background: linear-gradient(
        135deg,
        var(--dark),
        var(--primary)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
}

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

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 34px;
    background: var(--secondary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #005fd1;
    transform: translateY(-2px);
}

/* =========================
   Sections
========================= */
.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.section.light {
    background: var(--light);
    max-width: 100%;
}

.section h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.section-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
    font-size: 1.05rem;
    color: #555;
}

/* =========================
   Services
========================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card-bg);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.card p {
    color: #555;
}

.coming-soon {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
}

/* =========================
   Portfolio
========================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.portfolio-card {
    background: var(--card-bg);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-6px);
}

.portfolio-image {
    height: 180px;
    background: linear-gradient(
        135deg,
        #dfe7ef,
        #cfd8e3
    );
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.portfolio-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.portfolio-card p {
    color: #555;
    font-size: 0.95rem;
}

.portfolio-link {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
}

/* =========================
   Why Choose Us
========================= */
.reasons {
    list-style: none;
    max-width: 650px;
    margin: auto;
}

.reasons li {
    padding: 14px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #ddd;
}

.reasons li:last-child {
    border-bottom: none;
}

/* =========================
   Contact
========================= */
.contact-info {
    text-align: center;
    font-size: 1.1rem;
    color: #444;
}

.contact-info p {
    margin: 10px 0;
}

/* =========================
   Footer
========================= */
footer {
    background: var(--dark);
    color: #ffffff;
    text-align: center;
    padding: 25px 15px;
    font-size: 0.9rem;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

/* =========================
   Contact Page
========================= */

.page-header {
    background: linear-gradient(135deg, var(--dark), var(--primary));
    color: #ffffff;
    padding: 70px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-form,
.contact-details {
    background: var(--card-bg);
    padding: 40px 35px;
    border-radius: 14px;
    box-shadow: var(--shadow);
}

.contact-form h2,
.contact-details h2 {
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 0.95rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.contact-details p {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.contact-note {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #555;
}

/* Responsive Contact Page */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

/* =========================
   WhatsApp Floating Button
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background: #1ebe5d;
}

.whatsapp-icon {
    line-height: 1;
}