/* ============================= */
/* PREMIUM CONTACT PAGE STYLES   */
/* ============================= */

/* Contact Hero Section */
.contact-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 50px 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(90, 174, 224, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(90, 174, 224, 0.05) 0%, transparent 40%);
}

.contact-hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(90, 174, 224, 0.1);
    border: 1px solid rgba(90, 174, 224, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--brand-green);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--brand-white);
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-green) 0%, #7dd3fc 50%, var(--brand-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.glow-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90, 174, 224, 0.15) 0%, transparent 70%);
    top: 10%;
    right: -200px;
    animation: float 6s ease-in-out infinite;
}

.glow-circle-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(90, 174, 224, 0.1) 0%, transparent 70%);
    bottom: 10%;
    left: -150px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* Contact Info Cards Section */
.contact-info-section {
    padding: 100px 50px;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(90, 174, 224, 0.03) 0%, transparent 100%);
}

.info-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.info-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-card.featured {
    background: linear-gradient(145deg, rgba(90, 174, 224, 0.1) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-color: rgba(90, 174, 224, 0.3);
}

.info-card.featured::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(90, 174, 224, 0.2) 0%, rgba(90, 174, 224, 0.05) 100%);
    border: 1px solid rgba(90, 174, 224, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--brand-green);
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--brand-white);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-green);
    font-weight: 500;
    font-size: 0.95rem;
}

.card-link i {
    font-size: 0.85rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 50px 100px;
    background: linear-gradient(180deg, transparent 0%, rgba(90, 174, 224, 0.03) 50%, transparent 100%);
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(90, 174, 224, 0.5), transparent);
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--brand-white);
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Premium Form Styles */
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brand-white);
    margin-left: 5px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 20px;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: color 0.3s;
    z-index: 2;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 20px 18px 50px;
    color: var(--brand-white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-wrapper select {
    appearance: none;
    cursor: pointer;
    padding-right: 50px;
}

.input-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    color: var(--text-secondary);
    pointer-events: none;
}

.textarea-wrapper::after {
    display: none;
}

.input-wrapper textarea {
    padding-left: 50px;
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    background: rgba(90, 174, 224, 0.05);
    box-shadow: 0 0 0 4px rgba(90, 174, 224, 0.1);
}

.input-wrapper input:focus + i,
.input-wrapper textarea:focus + i {
    color: var(--brand-green);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Submit Button */
.submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--brand-green) 0%, #3d8bc0 100%);
    border: none;
    border-radius: 12px;
    padding: 20px 40px;
    color: var(--brand-black);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s;
    margin-top: 10px;
    align-self: flex-start;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(90, 174, 224, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.submit-btn:hover .btn-glow {
    left: 100%;
}

.btn-icon {
    transition: transform 0.3s;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* ============================= */
/* RESPONSIVENESS                */
/* ============================= */

/* Global Responsive Fixes */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* Prevent text overflow */
.contact-hero-content,
.form-container,
.info-card {
    max-width: 100%;
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .contact-hero {
        padding: 160px 80px 100px;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .info-cards-container {
        max-width: 1400px;
    }
    
    .form-container {
        max-width: 1000px;
        padding: 70px;
    }
    
}

/* Desktop (1200px - 1439px) */
@media (max-width: 1200px) {
    .contact-hero {
        padding: 150px 40px 70px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .info-cards-container {
        gap: 25px;
    }
}

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1024px) {
    .contact-hero {
        min-height: 55vh;
        padding: 140px 30px 60px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .info-cards-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .info-card {
        padding: 35px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .form-container {
        padding: 45px;
        margin: 0 20px;
    }
    
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .info-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .info-card.featured {
        grid-column: span 2;
    }
    
    .form-row {
        gap: 25px;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 768px) {
    .contact-hero {
        min-height: auto;
        padding: 120px 20px 50px;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 18px;
        margin-bottom: 25px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .glow-circle,
    .glow-circle-2 {
        display: none;
    }
    
    .contact-info-section {
        padding: 60px 15px;
    }
    
    .info-cards-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 20px;
    }
    
    .info-card {
        padding: 30px 25px;
    }
    
    .info-card.featured {
        grid-column: span 1;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .contact-form-section {
        padding: 40px 15px 60px;
    }
    
    .form-container {
        padding: 35px 20px;
        border-radius: 20px;
        margin: 0;
    }
    
    .form-header {
        margin-bottom: 40px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-header p {
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .premium-form {
        gap: 20px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 16px 16px 16px 45px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 10px;
    }
    
    .input-wrapper i {
        left: 16px;
        font-size: 0.95rem;
    }
    
    .input-wrapper textarea {
        min-height: 120px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 18px 30px;
        align-self: center;
        font-size: 1rem;
    }
    
}

/* Small Mobile (480px - 575px) */
@media (max-width: 575px) {
    .contact-hero {
        padding: 110px 15px 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    .contact-info-section {
        padding: 50px 15px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .form-container {
        padding: 30px 18px;
        border-radius: 16px;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
    }
    
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 14px 14px 14px 42px;
        font-size: 16px;
    }
    
    .submit-btn {
        padding: 16px 25px;
        font-size: 0.95rem;
    }
    
}

/* Extra Small Mobile (375px - 479px) */
@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 12px 35px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-info-section {
        padding: 40px 12px;
    }
    
    .info-card h3 {
        font-size: 1.15rem;
    }
    
    .info-card p {
        font-size: 0.9rem;
    }
    
    .card-link {
        font-size: 0.9rem;
    }
    
    .form-container {
        padding: 25px 15px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 14px 12px 14px 40px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .input-wrapper i {
        left: 14px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        font-size: 0.9rem;
        padding: 16px 20px;
    }
    
}

/* Very Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    .contact-hero {
        padding: 95px 10px 30px;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .contact-info-section {
        padding: 35px 10px;
    }
    
    .info-card {
        padding: 22px 15px;
    }
    
    .info-card h3 {
        font-size: 1.1rem;
    }
    
    .info-card p {
        font-size: 0.85rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .form-container {
        padding: 22px 12px;
        border-radius: 14px;
    }
    
    .form-header h2 {
        font-size: 1.35rem;
    }
    
    .form-header p {
        font-size: 0.85rem;
    }
    
    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 12px 12px 12px 38px;
        font-size: 15px;
    }
    
    .input-wrapper i {
        left: 12px;
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 14px 18px;
        font-size: 0.85rem;
    }
    
}

/* ============================= */
/* FOOTER STYLES                 */
/* ============================= */
/* FOOTER STYLES                 */
/* ============================= */
.main-footer {
    background-color: #0a0a0a;
    padding: 80px 80px 30px;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(90, 174, 224, 0.3), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section {
    position: relative;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brand-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--brand-green);
}

.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links-row:last-child {
    margin-bottom: 0;
}

.footer-links-row a {
    color: var(--text-secondary);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links-row a:hover {
    color: var(--brand-green);
}

.social-section .footer-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.social-icons-row {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background-color: transparent;
}

.social-icon-box:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    transform: translateY(-3px);
}

.back-to-top {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: var(--brand-green);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--brand-green);
}

@media (max-width: 991px) {
    .main-footer {
        padding: 60px 40px 25px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .social-section {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 50px 20px 25px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .social-section {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 30px;
    }
    
    .footer-legal {
        gap: 20px;
    }
}
