:root {
    --primary: #FF6A00;
    /* Vibrant Orange */
    --secondary: #ff035b;
    /* Hot Pink */
    --accent: #8A2EFF;
    /* Purple/Violet */
    --dark: #1A1A2E;
    /* Deep Navy */
    --light: #F8F9FA;
    /* Soft Light */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    color: var(--text);
    line-height: 1.6;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Hero Section */
.contact-hero {
    display: flex;
    justify-content: center;
    /* Center content horizontally */
    align-items: center;
    padding: 60px 0;
    /* Removed horizontal padding */
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.03), rgba(255, 62, 130, 0.03));
    width: 100%;
    /* Full width */
}

.hero-content {
    flex: 1;
    padding-right: 40px;
    max-width: 1200px;
    /* Same as container */
    /* margin: 0 auto; */
    /* Center content */
    padding-left: 40px;
    /* Restore left padding */
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    width: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    /* background: linear-gradient(90deg, var(--primary), var(--secondary)); */
    color: black;
    border: 2px solid var(--secondary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 62, 130, 0.3);
}

.btn-secondary {
    border: 2px solid var(--dark);
    color: var(--dark);
}

.btn-secondary:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-3px);
}

.btn-primary.active,
.btn-secondary.active {
    background: linear-gradient(90deg, #c4c3c2, var(--secondary));
    /* background-color: #333;
     darker background */
    /*color: #fff;
     white text */
    /* border: 2px solid #000;
    optional border */
}

.hero-image {
    flex: 1;
    position: relative;
    max-width: 1200px;
    /* Same as container */
    margin: 0 auto;
    /* Center content */
    padding-right: 40px;
    /* Restore right padding */
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
}

.shape.pink {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape.blue {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

.shape.gold {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(20px);
    }
}

/* Contact Form Section */
.contact-form-section {
    display: flex;
    padding: 80px 40px;
    gap: 60px;
}

.form-container {
    flex: 1;
    max-width: 600px;
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.form-container .subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.input-container i {
    position: absolute;
    left: 15px;
    color: var(--text-light);
    font-size: 1rem;
}

.input-container input,
.input-container select,
.input-container textarea {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.input-container textarea {
    height: 150px;
    resize: vertical;
    padding-top: 15px;
}

.input-container input:focus,
.input-container select:focus,
.input-container textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.2);
    outline: none;
}

.input-container select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 62, 130, 0.4);
}

/* Contact Info Cards */
.contact-info {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 600px;
}

.info-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 62, 130, 0.1), rgba(0, 194, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-card .icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Social Section */
.social-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.03), rgba(255, 62, 130, 0.03));
}

.social-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.twitter {
    background: #1DA1F2;
}

.social-icon.linkedin {
    background: #0077B5;
}

.social-icon.tiktok {
    background: #000000;
}

.social-icon.youtube {
    background: #FF0000;
}

/* Footer */
.contact-footer {
    text-align: center;
    padding: 30px 40px;
    background: var(--dark);
    color: white;
}

.contact-footer p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(10px) translateX(-15px);
    }

    75% {
        transform: translateY(-15px) translateX(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        /* padding-right: 0; */
        margin-bottom: 40px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .contact-form-section {
        flex-direction: column;
    }

    .form-container {
        max-width: 100%;
    }

    .contact-info {
        max-width: 100%;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact-header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .contact-header nav {
        gap: 20px;
    }

    .contact-hero {
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .contact-form-section {
        padding: 50px 20px;
        gap: 40px;
    }

    .social-section {
        padding: 40px 20px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }

    .info-card {
        padding: 20px;
    }

    .contact-footer {
        padding: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}