/* Contact Page Specific Styles - Inherits base styles from style.css */

/* Contact Page Specific Styles - Inherits base styles from style.css */

/* Hero Section (Conversion Optimized) */
.hero {
    min-height: 100vh;
    padding: 220px 20px 100px;
    background: radial-gradient(circle at 50% 10%, rgba(201, 168, 92, 0.15) 0%, rgba(10, 10, 10, 0.95) 100%),
        url('../assets/contact_hero_v2.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #050505 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 92, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: drift 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-element:nth-child(1) {
    top: -20%;
    left: -10%;
}

.floating-element:nth-child(2) {
    bottom: -20%;
    right: -10%;
    animation-duration: 25s;
    animation-direction: alternate-reverse;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(201, 168, 92, 0.08);
    border: 1px solid rgba(201, 168, 92, 0.2);
    border-radius: 50px;
    color: #c9a85c;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(201, 168, 92, 0.1);
    animation: badgePulse 3s infinite alternate;
}

@keyframes badgePulse {
    0% {
        box-shadow: 0 0 20px rgba(201, 168, 92, 0.05);
    }

    100% {
        box-shadow: 0 0 40px rgba(201, 168, 92, 0.2);
    }
}

.hero-title {
    color: var(--color-white);
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.hero-title .highlight {
    background: linear-gradient(to right, #ffffff, #c9a85c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(15px);
}

.hero-stat {
    text-align: center;
    padding: 0 2rem;
}

.hero-stat:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #c9a85c;
    font-family: 'Playfair Display', serif;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(201, 168, 92, 0.2);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.urgency-banner {
    position: relative;
    z-index: 2;
    display: inline-block;
    background: linear-gradient(135deg, rgba(201, 168, 92, 0.1), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(201, 168, 92, 0.3);
    border-radius: 100px;
    padding: 1rem 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(201, 168, 92, 0.05);
}

.urgency-text {
    color: #c9a85c;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.urgency-subtext {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 300;
}

/* Contact Cards Section */
.contact-section {
    padding: 10rem 4rem;
    background: var(--color-black);
    position: relative;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 199, 165, 0.2), transparent);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(212, 199, 165, 0.05);
    border: 1px solid rgba(212, 199, 165, 0.2);
    border-radius: 50px;
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.section-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 3.5rem 2.5rem;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact-card.color-1:hover {
    background: linear-gradient(135deg, rgba(88, 28, 135, 0.2), rgba(255, 255, 255, 0.05));
    border-color: rgba(168, 85, 247, 0.4);
}

.contact-card.color-2:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(255, 255, 255, 0.05));
    border-color: rgba(59, 130, 246, 0.4);
}

.contact-card.color-3:hover {
    background: linear-gradient(135deg, rgba(133, 77, 14, 0.2), rgba(255, 255, 255, 0.05));
    border-color: rgba(234, 179, 8, 0.4);
}

.contact-card:active {
    transform: translateY(-5px);
}

.whatsapp-card::before {
    background: linear-gradient(90deg, #25d366, #128c7e);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--color-gold);
    border: 1px solid rgba(212, 199, 165, 0.3);
    background: rgba(212, 199, 165, 0.05);
    transition: all 0.4s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 300;
}

.contact-card.color-1:hover .contact-icon {
    color: #c084fc;
    border-color: rgba(192, 132, 252, 0.5);
    background: rgba(168, 85, 247, 0.1);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.contact-card.color-2:hover .contact-icon {
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.5);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.contact-card.color-3:hover .contact-icon {
    color: #facc15;
    border-color: rgba(250, 204, 21, 0.5);
    background: rgba(234, 179, 8, 0.1);
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.2);
}

.whatsapp-card .contact-icon {
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.3);
    background: rgba(37, 211, 102, 0.05);
}

.contact-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.contact-card-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-card-details {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border-left: 2px solid var(--color-gold);
    transition: all 0.4s ease;
}

.contact-card.color-1:hover .contact-card-details {
    border-left-color: #a855f7;
}

.contact-card.color-2:hover .contact-card-details {
    border-left-color: #3b82f6;
}

.contact-card.color-3:hover .contact-card-details {
    border-left-color: #eab308;
}

.whatsapp-card .contact-card-details {
    border-left-color: #25d366;
}

.contact-card-value {
    font-size: 1.1rem;
    color: var(--color-white);
    font-weight: 400;
    margin-bottom: 0.3rem;
}

.contact-card-subtext {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.contact-card-action {
    margin-top: auto;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-card.color-1:hover .contact-card-action {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
    color: #fff;
}

.contact-card.color-2:hover .contact-card-action {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    color: #fff;
}

.contact-card.color-3:hover .contact-card-action {
    background: rgba(234, 179, 8, 0.2);
    border-color: rgba(234, 179, 8, 0.5);
    color: #fff;
}

.whatsapp-card .contact-card-action {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.whatsapp-card:hover .contact-card-action {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.5);
    color: #fff;
}

.contact-card-action::after {
    content: "→";
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-action::after {
    transform: translateX(5px);
}

/* Trust Section */
.trust-section {
    padding: 8rem 4rem;
    background: linear-gradient(135deg, #111 0%, #0a0a0a 100%);
    position: relative;
}

.trust-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 199, 165, 0.1), transparent);
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trust-title {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 3rem;
    font-weight: 300;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.trust-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.trust-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 199, 165, 0.3);
}

.trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(212, 199, 165, 0.3);
    background: rgba(212, 199, 165, 0.05);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.trust-text {
    font-size: 1.2rem;
    color: var(--color-white);
    font-weight: 400;
    margin-bottom: 0.8rem;
}

.trust-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 8rem 1.5rem 4rem;
        height: auto;
        min-height: auto;
        align-items: flex-start;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-section {
        padding: 8rem 1rem 4rem;
    }

    .trust-section {
        padding: 4rem 1rem;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-top: 1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .contact-card {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title,
    .trust-title {
        font-size: 2rem;
    }

    .contact-card,
    .trust-item {
        padding: 2rem 1.2rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}