* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 2px solid #FFD700;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo a {
    text-decoration: none;
}

.logo img {
    height: 90px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #FFD700;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.column-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 8rem 5% 5rem;
    max-width: 1600px;
    margin: 0 auto;
}

.about-section {
    background: #0a0a0a;
}

.about-content h2 {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.about-subheading {
    font-size: 1.3rem;
    color: #FFA500;
    margin-bottom: 2rem;
}

.about-text p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    width: 100%;
    height: auto;
    margin-top: 2rem;
}

.about-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 15px;
    border: 3px solid #FFD700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.contact-section {
    background: #0a0a0a;
}

.contact-info h2 {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.contact-subheading {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.contact-form-wrapper {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #FFD700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #FFD700;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    background: #0a0a0a;
    border: 2px solid #333;
    color: #ffffff;
    padding: 0.9rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.submit-btn {
    background: #FFD700;
    color: #0a0a0a;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.submit-btn:hover {
    background: #FFA500;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

footer {
    background: #0a0a0a;
    border-top: 2px solid #FFD700;
    padding: 2rem 5%;
    text-align: center;
    color: #cccccc;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.8rem 0.45rem 0.6rem;
    border: 2px solid #FFD700;
    border-radius: 999px;
    color: #FFD700;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.social-links a:hover {
    background: #FFD700;
    color: #0a0a0a;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(255, 215, 0, 0.25);
}

.social-links img {
    width: 20px;
    height: 20px;
    display: block;
    border-radius: 4px;
    background: #fff;
}

/* Tablet Styles */
@media (max-width: 968px) {
    .logo img {
        height: 60px;
    }

    nav {
        padding: 0.8rem 3%;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .column-sections {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 7rem 4% 3rem;
    }

    .about-content h2,
    .contact-info h2 {
        font-size: 2.5rem;
    }

    .about-subheading,
    .contact-subheading {
        font-size: 1.2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-image {
        margin-top: 1.5rem;
    }

    .about-image img {
        max-height: 350px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

/* Mobile Styles */
@media (max-width: 720px) {
    nav {
        padding: 0.8rem 3%;
    }

    .logo img {
        height: 50px;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .nav-links a {
        padding: 0.3rem 0.5rem;
    }

    .column-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 6rem 3% 2rem;
    }

    .about-content h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .about-subheading,
    .contact-subheading {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .about-image {
        margin-top: 1rem;
    }

    .about-image img {
        max-height: 250px;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .submit-btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .social-links a {
        font-size: 0.85rem;
        padding: 0.4rem 0.7rem;
    }

    .social-links img {
        width: 18px;
        height: 18px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    nav {
        padding: 0.6rem 2%;
    }

    .logo img {
        height: 40px;
    }

    .nav-links {
        gap: 0.3rem;
        font-size: 0.7rem;
    }

    .column-sections {
        padding: 5.5rem 2% 1.5rem;
        gap: 1.5rem;
    }

    .about-content h2,
    .contact-info h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .about-subheading,
    .contact-subheading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }

    .about-image img {
        max-height: 200px;
    }

    .contact-form-wrapper {
        padding: 1.2rem;
    }

    .form-row {
        gap: 1rem;
    }

    .form-group {
        gap: 0.4rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .social-links a {
        font-size: 0.75rem;
        padding: 0.35rem 0.6rem;
    }

    .social-links img {
        width: 16px;
        height: 16px;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .column-sections {
        padding: 5rem 3% 2rem;
    }

    .about-image img {
        max-height: 200px;
    }

    .form-group textarea {
        min-height: 80px;
    }
}