/* --- AGUMA CONSOLIDATED STYLE --- */
:root {
    --primary: #C2185B;
    --primary-gradient: linear-gradient(135deg, #C2185B 0%, #E91E63 100%);
    --dark: #0F172A;
    --text: #334155;
    --gray-bg: #F8FAFC;
    --gray-border: #E2E8F0;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html{
    overflow-x:hidden;
}
body { font-family: 'Inter', sans-serif; line-height: 1.7; color: var(--text); background: var(--white); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; color: var(--dark); font-weight: 700; }

/* --- Navigation --- */
nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 8%; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--gray-border); }
.logo { flex: 1; display: flex; align-items: center;}
.logo img{height: 70px;}
.nav-links { flex: 2; display: flex; justify-content: center; list-style: none; gap: 2rem; }
.nav-right { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 1.5rem; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 0.9rem; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

/* --- Burger (Mobile Only) --- */
.nav-toggle { display: none; flex-direction: column; cursor: pointer; gap: 6px; }
.nav-toggle span { width: 28px; height: 3px; background: var(--dark); transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* --- UI Components --- */
.btn { padding: 14px 32px; border-radius: 50px; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; transition: var(--transition); border: none; cursor: pointer; display: inline-block; text-decoration: none; text-align: center; }
.btn-primary { background: var(--primary-gradient); color: white; }
.full-width { width: 100%; }
.tag { display: inline-block; padding: 4px 14px; background: var(--primary-gradient); color: white; font-size: 0.7rem; font-weight: 700; border-radius: 20px; text-transform: uppercase; margin-bottom: 15px; }
.card { background: var(--white); padding: 3rem; border-radius: 20px; border: 1px solid var(--gray-border); }

/* --- Contact Layout --- */
.page-hero { background: var(--gray-bg); text-align: center; padding: 100px 10%; border-bottom: 1px solid var(--gray-border); display: flex; align-items: center; justify-content: center; }
.hero-content { max-width: 800px; display: flex; flex-direction: column; align-items: center; }
section { padding: 100px 10%; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.info-item { margin-bottom: 35px; }
.info-item h4 { color: var(--primary); margin-bottom: 10px; }
.social-icons { display: flex; gap: 20px; margin-top: 15px; font-size: 1.5rem; }
.social-icons a { color: var(--dark); transition: var(--transition); }
.social-icons a:hover { color: var(--primary); }

/* Form Elements */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; }
input, select, textarea { width: 100%; padding: 14px; border: 1px solid var(--gray-border); border-radius: 8px; font-family: inherit; background: var(--gray-bg); }
textarea { height: 120px; resize: none; }

footer { background: var(--dark); color: white; text-align: center; padding: 80px 10%; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .nav-toggle { display: flex; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 75%; height: 100vh; background: var(--white); flex-direction: column; justify-content: center; padding: 40px; box-shadow: -10px 0 30px rgba(0,0,0,0.1); transition: 0.5s ease; }
    .nav-links.active { right: 0; }
    .logo, .nav-right { flex: initial; }
    .desktop-only { display: none; }
    .mobile-only-item { display: block; margin-top: 20px; width: 100%; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}