/* ========================================
   MEGAMINE - CONTACTO.CSS
   Diseño Premium para Página de Contacto
======================================== */

/* === VARIABLES === */
:root {
    --gold-primary: #D4A450;
    --gold-dark: #C89A3F;
    --gold-light: #E4B460;
    --gold-glow: rgba(212, 164, 80, 0.6);
    
    --black: #0A0A0A;
    --black-light: #121212;
    --gray-dark: #1A1A1A;
    --gray-medium: #2A2A2A;
    --gray-light: #3A3A3A;
    --gray-border: #4A4A4A;
    --gray-text: #CCCCCC;
    --gray-text-light: #E0E0E0;
    --white: #FFFFFF;
    
    --success: #4CAF50;
    --error: #F44336;
    --info: #2196F3;
    
    --font-heading: 'Barlow', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-gold: 0 10px 40px rgba(212, 164, 80, 0.4);
    --shadow-black: 0 10px 30px rgba(0, 0, 0, 0.7);
}

/* === RESET === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   NAVBAR
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 2px solid rgba(212, 164, 80, 0.3);
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.8);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.99);
    border-bottom-color: var(--gold-primary);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 8px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-brand::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--gold-primary), transparent);
}

.nav-brand img {
    height: 85px;
    filter: drop-shadow(0 5px 20px rgba(212, 164, 80, 0.5));
    transition: all var(--transition);
}

.nav-brand:hover img {
    filter: drop-shadow(0 8px 30px rgba(212, 164, 80, 0.8));
    transform: scale(1.03);
}

.nav-menu {
    display: flex;
    gap: 50px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    font-weight: 600;
    font-size: 0.88em;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 10px 0;
    transition: color var(--transition);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    transition: transform var(--transition);
}

.nav-menu a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu a:hover {
    color: var(--gold-primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-text);
    font-weight: 600;
    font-size: 0.92em;
    padding: 10px 18px;
    background: rgba(212, 164, 80, 0.08);
    border-radius: 4px;
    border-left: 3px solid var(--gold-primary);
    transition: all var(--transition);
}

.nav-phone i {
    color: var(--gold-primary);
    font-size: 1.2em;
}

.nav-phone:hover {
    background: rgba(212, 164, 80, 0.15);
    color: var(--gold-primary);
    transform: translateX(3px);
}

.nav-btn {
    background: var(--gold-primary);
    color: var(--black);
    padding: 13px 30px;
    font-weight: 700;
    font-size: 0.84em;
    letter-spacing: 2px;
    text-transform: uppercase;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all var(--transition);
    border: 2px solid var(--gold-primary);
    position: relative;
    overflow: hidden;
}

.nav-btn.active {
    background: var(--black);
    color: var(--gold-primary);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gold-primary);
    transition: all var(--transition);
    border-radius: 2px;
}

/* ========================================
   PAGE HEADER
======================================== */
.page-header {
    position: relative;
    height: 60vh;
    min-height: 500px;
    max-height: 700px;
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.92), rgba(10, 10, 10, 0.85));
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    background: rgba(212, 164, 80, 0.1);
    border: 2px solid var(--gold-primary);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    margin-bottom: 40px;
    font-size: 0.9em;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: var(--gold-primary);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb span {
    color: var(--gray-text);
}

.breadcrumb i {
    font-size: 0.9em;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 5em;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.title-line {
    display: block;
    color: var(--gold-primary);
    text-shadow: 0 0 40px rgba(212, 164, 80, 0.8);
}

.page-subtitle {
    font-size: 1.3em;
    color: var(--gray-text-light);
    font-weight: 500;
}

/* ========================================
   CONTACT INFO SECTION
======================================== */
.contact-info-section {
    padding: 80px 0;
    background: var(--gray-dark);
    position: relative;
    z-index: 1;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.info-card {
    padding: 40px 30px;
    background: var(--black);
    border: 2px solid rgba(212, 164, 80, 0.3);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    text-align: center;
    transition: all var(--transition);
}

.info-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 164, 80, 0.3);
}

.info-icon {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 164, 80, 0.1);
    border: 2px solid var(--gold-primary);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    font-size: 2.5em;
    color: var(--gold-primary);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--gold-glow), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.info-card:hover .icon-glow {
    opacity: 0.6;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.info-card p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1em;
}

.info-card p a {
    color: var(--gray-text-light);
    transition: color var(--transition);
}

.info-card p a:hover {
    color: var(--gold-primary);
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.9em;
    letter-spacing: 1px;
    transition: all var(--transition);
}

.info-link:hover {
    gap: 15px;
    color: var(--gold-light);
}

/* ========================================
   CONTACT FORM SECTION
======================================== */
.contact-form-section {
    padding: 100px 0;
    background: var(--black);
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-primary);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-tag i {
    font-size: 1.2em;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5em;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--gold-primary);
}

.title-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
    box-shadow: 0 0 15px var(--gold-glow);
    margin-bottom: 25px;
}

.section-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--gray-text-light);
    margin-bottom: 40px;
}

/* === FORMULARIO === */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-text-light);
    font-weight: 600;
    font-size: 0.95em;
    letter-spacing: 0.5px;
}

.form-group label i {
    color: var(--gold-primary);
    font-size: 1.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--gray-dark);
    border: 2px solid var(--gray-border);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1em;
    transition: all var(--transition);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: var(--gray-medium);
    box-shadow: 0 0 20px rgba(212, 164, 80, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid var(--gold-primary);
    clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--gold-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--black);
    font-size: 0.75em;
}

.checkbox-text {
    color: var(--gray-text);
    font-size: 0.95em;
    line-height: 1.6;
}

.checkbox-text a {
    color: var(--gold-primary);
    transition: color var(--transition);
}

.checkbox-text a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.submit-btn {
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all var(--transition);
    align-self: flex-start;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 50px;
    font-weight: 700;
    font-size: 0.95em;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    background: var(--gold-primary);
    color: var(--black);
    transition: color var(--transition);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--black);
    transition: left 0.5s ease;
    z-index: 1;
}

.submit-btn:hover .btn-bg {
    left: 0;
}

.submit-btn:hover .btn-content {
    color: var(--gold-primary);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* === ASIDE === */
.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.aside-card {
    padding: 30px;
    background: var(--gray-dark);
    border: 2px solid rgba(212, 164, 80, 0.3);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all var(--transition);
}

.aside-card:hover {
    border-color: var(--gold-primary);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(212, 164, 80, 0.2);
}

.aside-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 164, 80, 0.1);
    border: 2px solid var(--gold-primary);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    font-size: 2em;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.aside-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.aside-card p {
    color: var(--gray-text);
    line-height: 1.8;
    font-size: 0.95em;
}

.aside-card.highlight {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    border: none;
}

.aside-card.highlight h3,
.aside-card.highlight p {
    color: var(--black);
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--black);
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.1em;
    letter-spacing: 1px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    margin-top: 15px;
    transition: all var(--transition);
}

.emergency-btn:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-card {
    padding: 30px;
    background: var(--gray-dark);
    border: 2px solid rgba(212, 164, 80, 0.3);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    text-align: center;
}

.social-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 1.2em;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 164, 80, 0.4);
}

/* ========================================
   MAP SECTION
======================================== */
.map-section {
    position: relative;
    z-index: 1;
}

.map-container {
    width: 100%;
    height: 500px;
    filter: grayscale(100%) contrast(90%);
}

.map-overlay-card {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 40px 50px;
    background: var(--black);
    border: 3px solid var(--gold-primary);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    max-width: 500px;
    width: calc(100% - 40px);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-primary);
    color: var(--black);
    font-size: 2.5em;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.map-overlay-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
}

.map-overlay-card p {
    color: var(--gray-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--gold-primary);
    color: var(--black);
    font-weight: 700;
    font-size: 0.95em;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all var(--transition);
}

.directions-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--black);
    border-top: 3px solid var(--gold-primary);
    padding: 80px 0 0;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    box-shadow: 0 0 20px var(--gold-glow);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-light);
}

.footer-logo {
    width: 185px;
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 20px rgba(212, 164, 80, 0.4));
}

.footer-col p {
    color: var(--gray-text);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1em;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: var(--gray-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    font-size: 1.1em;
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 164, 80, 0.4);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2em;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray-text);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
}

.footer-col ul li a i {
    font-size: 0.8em;
    color: var(--gold-primary);
}

.footer-col ul li a:hover {
    color: var(--gold-primary);
    transform: translateX(8px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-text);
    font-size: 1em;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: var(--gold-primary);
    width: 22px;
    margin-top: 3px;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    color: var(--gray-text);
    font-size: 0.95em;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--gray-text);
    transition: color var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold-primary);
}

.footer-bottom-links span {
    color: var(--gray-border);
}

/* ========================================
   BACK TO TOP
======================================== */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    color: var(--black);
    border: none;
    font-size: 1.5em;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    box-shadow: 0 8px 25px rgba(212, 164, 80, 0.5);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 164, 80, 0.6);
}

/* ========================================
   NOTIFICATIONS
======================================== */
.notification {
    position: fixed;
    top: 120px;
    right: 30px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: var(--gray-dark);
    border-left: 4px solid var(--info);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(400px);
    opacity: 0;
    transition: all var(--transition);
    min-width: 350px;
    max-width: 450px;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification i {
    font-size: 1.5em;
    color: var(--info);
}

.notification-success {
    border-left-color: var(--success);
}

.notification-success i {
    color: var(--success);
}

.notification-error {
    border-left-color: var(--error);
}

.notification-error i {
    color: var(--error);
}

.notification span {
    flex: 1;
    color: var(--gray-text-light);
    font-size: 0.95em;
}

.notification-close {
    background: transparent;
    border: none;
    color: var(--gray-text);
    font-size: 1.2em;
    cursor: pointer;
    transition: color var(--transition);
    padding: 5px;
}

.notification-close:hover {
    color: var(--white);
}

/* ========================================
   AOS ANIMATIONS
======================================== */
[data-aos] {
    opacity: 1;
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(0);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"] {
    transform: translateY(0);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(0);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(0);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(1);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 10px 25px;
    }
    
    .nav-brand img {
        height: 65px;
    }
    
    .nav-brand::after {
        display: none;
    }
    
    .nav-menu,
    .nav-right {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .page-header {
        margin-top: 85px;
        height: 50vh;
        min-height: 400px;
    }
    
    .page-title {
        font-size: 3em;
    }
    
    .page-subtitle {
        font-size: 1.1em;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5em;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .btn-content {
        width: 100%;
        justify-content: center;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-overlay-card {
        bottom: 20px;
        padding: 30px;
    }
    
    .notification {
        min-width: calc(100vw - 40px);
        right: 20px;
        top: 100px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2.2em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .map-container {
        height: 350px;
    }
}