 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 body {
     font-family: 'Roboto', sans-serif;
     line-height: 1.7;
     color: #eee;
     background: linear-gradient(to bottom, #16213e, #0f3460);
     overflow-x: hidden;
}
 h1, h2, h3, h4 {
     font-family: 'Playfair Display', serif;
}
/* NAV */
 nav {
     background: linear-gradient(to bottom, #16213e, #0f3460);
     padding: 1.2em 2em;
     position: sticky;
     top: 0;
     z-index: 100;
     backdrop-filter: blur(12px);
     box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
 nav ul {
     list-style: none;
     display: grid;
     grid-template-columns: auto auto auto auto;
     justify-content: center;
     gap: 3em;
}
 nav li a {
     color: #fff;
     text-decoration: none;
     font-weight: 700;
     font-size: 1.05em;
     position: relative;
     transition: color 0.3s, transform 0.3s;
}
 nav li a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 3px;
     bottom: -6px;
     left: 0;
     background: #FFD700;
     transition: width 0.4s cubic-bezier(0.23,1,0.32,1);
}
 nav li a:hover::after, nav li a.active::after {
     width: 100%;
}
 nav li a:hover, nav li a.active {
     color: #FFD700;
     transform: translateY(-2px);
}
 .hamburger {
     display: none;
}
/* HERO  */
 .contact-hero {
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     overflow: hidden;
     background: linear-gradient(to bottom, #001f3f, #000033);
}
 #particles-js {
     position: absolute;
     inset: 0;
     z-index: 0;
}
 .hero-content {
     z-index: 2;
     max-width: 860px;
     padding: 0 2em;
}
 .hero-content h1 {
     font-size: 5.4rem;
     line-height: 1.05;
     margin-bottom: 0.5em;
     text-shadow: 0 4px 40px rgba(255,215,0,0.5);
     animation: glow 3s infinite alternate;
}
 @keyframes glow {
     from {
         text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    }
     to {
         text-shadow: 0 4px 50px rgba(255,215,0,0.75);
    }
}
 .hero-content p {
     font-size: 1.7rem;
     max-width: 680px;
     margin: 1em auto 2.2em;
}
 .hero-verse {
     font-style: italic;
     font-size: 1.4rem;
     color: #FFD700;
     margin-top: 1.8em;
}
 .contact-main {
     max-width: 1240px;
     margin: 0 auto;
     padding: 5em 2em 8em;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 6em;
}
 @media (max-width: 968px) {
     .contact-main {
         grid-template-columns: 1fr;
         gap: 4em;
    }
}
/* FORM */
 .contact-form {
     background: rgba(22,33,62,0.85);
     padding: 3.5em;
     border-radius: 24px;
     border: 1px solid rgba(255,215,0,0.2);
}
 .contact-form h2 {
     font-size: 2.8rem;
     color: #FFD700;
     margin-bottom: 1.2em;
     text-align: center;
}
 .form-group {
     margin-bottom: 2em;
}
 .form-group label {
     display: block;
     margin-bottom: 0.6em;
     font-weight: 600;
     color: #ccc;
}
 .form-group input, .form-group select, .form-group textarea {
     width: 100%;
     padding: 1.1em 1.6em;
     background: rgba(255,255,255,0.08);
     border: 2px solid transparent;
     border-radius: 50px;
     color: #fff;
     font-size: 1.05rem;
     transition: all 0.3s cubic-bezier(0.23,1,0.32,1);
}
 .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
     border-color: #FFD700;
     box-shadow: 0 0 0 4px rgba(255,215,0,0.15);
     outline: none;
}
 .form-group textarea {
     border-radius: 24px;
     min-height: 160px;
     resize: vertical;
}
 .submit-btn {
     width: 100%;
     background: linear-gradient(to bottom, #FFD700, #f0c040);
     color: #001f3f;
     padding: 1.3em;
     border: none;
     border-radius: 50px;
     font-size: 1.25rem;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
 .submit-btn:hover {
     transform: translateY(-5px);
     box-shadow: 0 20px 40px rgba(255,215,0,0.4);
}
/* RIGHT COLUMN */
 .contact-info h3 {
     font-size: 2.2rem;
     color: #FFD700;
     margin-bottom: 1.4em;
}
 .info-card {
     background: rgba(255,215,0,0.08);
     padding: 2em;
     border-radius: 20px;
     margin-bottom: 2em;
     transition: transform 0.4s;
}
 .info-card:hover {
     transform: translateY(-8px);
}
 .info-card i {
     font-size: 2.4rem;
     color: #FFD700;
     margin-bottom: 1em;
}
 .social-links {
     display: flex;
     gap: 1.5em;
     margin-top: 2.5em;
}
 .social-links a {
     font-size: 2.2rem;
     color: #ccc;
     transition: all 0.3s;
}
 .social-links a:hover {
     color: #FFD700;
     transform: scale(1.2);
}
/* FOOTER */
 .contact-footer {
     text-align: center;
     padding: 6em 2em 5em;
     background: linear-gradient(to bottom, #0f3460, #001f3f);
}
 .contact-footer p {
     font-size: 1.35rem;
     max-width: 620px;
     margin: 0 auto 2em;
}
 .contact-footer a {
     display: inline-block;
     background: #FFD700;
     color: #001f3f;
     padding: 1.2em 3.2em;
     border-radius: 50px;
     font-weight: 700;
     font-size: 1.25rem;
     text-decoration: none;
     transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
 .contact-footer a:hover {
     transform: scale(1.06);
     box-shadow: 0 15px 35px rgba(255,215,0,0.45);
}
 @media (max-width: 768px) {
     .hero-content h1 {
         font-size: 3.8rem;
         margin-top: 14vh;
    }
     .contact-form {
         padding: 2.5em 1.8em;
    }
    .hero-verse{
        margin-bottom: 10vh;
    }
    .hero-content h1 {
         font-size: 3.6rem;
         margin-top: 10vh;

    }
}


@media (max-width: 320px) {
    .hero-content h1 {
    }
    nav ul {
        grid-template-columns: auto auto auto;

    }
    .hero-content h1 {
         font-size: 3.6rem;
         margin-top: 30vh;
    }
    .hero-verse{
    }
 }