/* Professional & Simple Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    /* Darker background for premium feel */
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.container {
    width: 100%;
    max-width: 1100px;
    background-color: #121111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Header & Navigation */
header {
    padding: 40px 20px 20px 20px;
}

nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.logo h1 {
    text-transform: uppercase;
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    letter-spacing: 5px;
    color: #ffffff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links li a {
    color: #a0a0a0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.nav-links li a:hover {
    color: #ff4500;
}

#contact a {
    color: #ff4500;
    border-bottom: 1px solid #ff4500;
}

/* Main Content Wrapper */
main {
    padding: 20px 5% 60px 5%;
}

.heading {
    text-align: center;
    margin-bottom: 40px;
}

.heading h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #ff4500;
    font-family: 'Playfair Display', serif;
    letter-spacing: 3px;
}

.main-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.main-container {
    background-color: #1a1a1a;
    /* Professional dark gray */
    padding: 50px 40px;
    border-radius: 15px;
    flex: 1;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-sec {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
}

.card {
    text-align: center;
}

.card h3,
.card h4 {
    color: #ff4500;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
    font-weight: 600;
}

.card p {
    color: #d1d1d1;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Professional Email Section */
.email-sec {
    width: 100%;
    max-width: 550px;
    background-color: #ff8c00;
    color: #000;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.2);
}

.email-sec h2 {
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.email-sec p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.inp {
    display: flex;
    padding: 5px;
    border-radius: 5px;
}

.inp input {
   background-color: transparent;
    border: none;
    border-bottom: 2px solid #000;
    padding: 12px 15px;
    flex: 1;
    font-size: 0.9rem;
    outline: none;
}

.inp button {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: background 0.3s;
}

.inp button:hover {
    background: #333;
}
.side-icons {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 50px;
}

.side-icons i {
    font-size: 1.4rem;
    color: #ff4500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.side-icons i:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Responsive Scaling */
@media (max-width: 1000px) {
    .main-wrapper {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .main-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .main-container {
        padding: 40px 20px;
        min-height: auto;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .side-icons {
        flex-direction: row;
        padding-top: 0;
        margin-top: 20px;
    }

    .email-sec {
        padding: 30px 20px;
    }

    .inp {
        flex-direction: column;
        background: transparent;
        gap: 15px;
    }

    .inp input {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 5px;
    }

    .inp button {
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.6rem;
    }

    .heading h1 {
        font-size: 1.8rem;
    }
}