/* ==========================================
   GWALNET Contact Page
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f4f7fb;
    color:#333;
    line-height:1.6;
}

/* Navigation */

header{
    background:#ffffff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    text-decoration:none;
    font-size:30px;
    font-weight:700;
    color:#2563eb;
}

.logo span{
    color:#10b981;
}

nav{
    display:flex;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:#444;
    font-weight:600;
    transition:.3s;
}

nav a:hover,
nav a.active{
    color:#2563eb;
}

/* Hero */

.hero{
    background:linear-gradient(135deg,#2563eb,#0ea5e9,#10b981);
    color:#fff;
    text-align:center;
    padding:70px 20px;
}

.hero h1{
    font-size:42px;
    margin-bottom:15px;
}

.hero p{
    font-size:18px;
    max-width:700px;
    margin:auto;
}

/* Main Layout */

.wrapper{
    width:90%;
    max-width:1200px;
    margin:50px auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

/* Cards */

.left,
.right{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Headings */

.left h2,
.right h2{
    color:#2563eb;
    margin-bottom:20px;
}

.right h3{
    margin:30px 0 15px;
    color:#2563eb;
}

/* Success */

.success{
    background:#dcfce7;
    color:#166534;
    padding:15px;
    border-radius:10px;
    margin-bottom:20px;
    border-left:5px solid #16a34a;
}

/* Form */

form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

input,
textarea{
    width:100%;
    padding:15px;
    border:1px solid #ddd;
    border-radius:10px;
    outline:none;
    font-size:15px;
    transition:.3s;
}

input:focus,
textarea:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.12);
}

textarea{
    min-height:180px;
    resize:vertical;
}

/* Button */

button{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:16px;
    border-radius:10px;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

button:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

/* Contact Info */

.info p{
    margin:18px 0;
    font-size:17px;
}

.info i{
    color:#2563eb;
    width:30px;
}

/* Social */

.social{
    display:flex;
    gap:15px;
}

.social a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    background:#2563eb;
    color:#fff;
    transition:.3s;
    font-size:18px;
}

.social a:hover{
    background:#10b981;
    transform:scale(1.08);
}

/* Map */

.map{
    margin-top:30px;
}

.map iframe{
    width:100%;
    height:300px;
    border:none;
    border-radius:12px;
}

/* Footer */

footer{
    margin-top:40px;
    background:#111827;
    color:#fff;
    text-align:center;
    padding:25px;
}

/* Responsive */

@media(max-width:992px){

.wrapper{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

.nav{
    flex-direction:column;
    gap:15px;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.hero h1{
    font-size:32px;
}

.hero p{
    font-size:16px;
}

.left,
.right{
    padding:25px;
}

}

@media(max-width:480px){

.logo{
    font-size:24px;
}

.hero{
    padding:50px 15px;
}

.hero h1{
    font-size:28px;
}

button{
    font-size:16px;
}

}