/* Global Styles - White & Orange Theme for Rooted Center */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #FF8C42;
    --accent-color: #FFB366;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --light-bg: #FFFFFF;
    --lighter-bg: #FEFEFE;
    --card-bg: rgba(255, 255, 255, 0.95);
    --text-color: #1A1A1A;
    --text-muted: #666666;
    --text-dim: #999999;
    --border-color: rgba(255, 107, 53, 0.2);
    --shadow-soft: 0 8px 32px rgba(255, 107, 53, 0.1);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.2);
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    --gradient-secondary: linear-gradient(135deg, #FF8C42 0%, #FFB366 100%);
    --gradient-accent: linear-gradient(135deg, #FFB366 0%, #FF6B35 100%);
    --gradient-bg: linear-gradient(135deg, #FFFFFF 0%, #FFF8F5 50%, #FFF0E6 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 245, 0.85));
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Poppins', sans-serif;
    --font-tech: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background: var(--gradient-bg);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Light Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--gradient-bg);
}

/* Light Grid */
.tech-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.grid-line {
    position: absolute;
    background: var(--primary-color);
    animation: gridPulse 8s ease-in-out infinite;
}

.grid-line:nth-child(1) {
    width: 1px;
    height: 100%;
    left: 20%;
    animation-delay: 0s;
}

.grid-line:nth-child(2) {
    width: 1px;
    height: 100%;
    left: 40%;
    animation-delay: 1s;
}

.grid-line:nth-child(3) {
    width: 1px;
    height: 100%;
    left: 60%;
    animation-delay: 2s;
}

.grid-line:nth-child(4) {
    width: 1px;
    height: 100%;
    left: 80%;
    animation-delay: 3s;
}

.grid-line:nth-child(5) {
    width: 100%;
    height: 1px;
    top: 30%;
    animation-delay: 4s;
}

.grid-line:nth-child(6) {
    width: 100%;
    height: 1px;
    top: 70%;
    animation-delay: 5s;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.particle:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 25%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.particle:nth-child(4) {
    top: 60%;
    right: 20%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    bottom: 20%;
    right: 50%;
    animation-delay: 8s;
    animation-duration: 13s;
}

.particle:nth-child(6) {
    top: 40%;
    left: 60%;
    animation-delay: 10s;
    animation-duration: 11s;
}

.particle:nth-child(7) {
    bottom: 60%;
    left: 80%;
    animation-delay: 12s;
    animation-duration: 15s;
}

.particle:nth-child(8) {
    top: 80%;
    right: 30%;
    animation-delay: 14s;
    animation-duration: 9s;
}

/* Light Overlay */
.tech-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255, 140, 66, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 179, 102, 0.02) 0%, transparent 70%);
    animation: techPulse 12s ease-in-out infinite;
}

/* Animation Keyframes */
@keyframes gridPulse {
    0%, 100% {
        opacity: 0.05;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.15;
        transform: scaleY(1.1);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) translateX(-10px) scale(1.2);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-20px) translateX(5px) scale(0.8);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }
}

@keyframes techPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.9;
    }
}

/* Coming Soon Container */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

.brand-logo {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.logo-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-main {
    width: 160px;
    height: 160px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft), 0 0 50px rgba(255, 107, 53, 0.3);
    animation: logoTechPulse 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
    border: 3px solid var(--primary-color);
}

.logo-main i {
    font-size: 4.5rem;
    color: white;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    animation: iconTechGlow 3s ease-in-out infinite;
}

.logo-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: ringTechRotate 20s linear infinite;
    opacity: 0.3;
}

.ring-1 {
    width: 180px;
    height: 180px;
    top: 10px;
    left: 10px;
    animation-delay: 0s;
    border-color: var(--primary-color);
}

.ring-2 {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    animation-delay: 6s;
    border-color: var(--secondary-color);
}

.ring-3 {
    width: 220px;
    height: 220px;
    top: -10px;
    left: -10px;
    animation-delay: 12s;
    border-color: var(--accent-color);
}

@keyframes logoTechPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-soft), 0 0 50px rgba(255, 107, 53, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--shadow-soft), 0 0 70px rgba(255, 107, 53, 0.5);
    }
}

@keyframes iconTechGlow {
    0%, 100% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    }
    50% {
        text-shadow: 0 0 50px rgba(255, 255, 255, 1), 0 0 80px rgba(255, 107, 53, 0.6);
    }
}

@keyframes ringTechRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 40px rgba(255, 107, 53, 0.2);
    animation: titleTechFadeIn 2s ease-out;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-tech);
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    animation: subtitleTechSlideIn 2s ease-out 0.5s both;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    animation: descriptionTechFadeIn 2s ease-out 1s both;
    font-family: var(--font-primary);
}

@keyframes titleTechFadeIn {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes subtitleTechSlideIn {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes descriptionTechFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section - Redesigned */
.contact-section {
    margin-bottom: 4rem;
}

/* Header Icon */
.header-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-soft);
    animation: headerIconPulse 3s ease-in-out infinite;
}

.header-icon i {
    font-size: 2rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes headerIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-soft);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--shadow-glow);
    }
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Contact Cards */
.contact-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.8s;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.4);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.card-icon i {
    color: white;
    font-size: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.card-content h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(255, 107, 53, 0.2);
}

.card-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Contact Button */
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

.social-link i {
    font-size: 1.2rem;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.newsletter-btn {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* CTA Button */
.contact-cta {
    text-align: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-glow);
    color: white;
    text-decoration: none;
}

.cta-button i {
    transition: transform 0.4s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.contact-container {
    /* background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 25px; */
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    transition: all 0.5s ease;
    /* box-shadow: var(--shadow-soft); */
    animation: containerTechSlideUp 2s ease-out 1.5s both;
    position: relative;
    overflow: hidden;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.8s;
}

.contact-container:hover::before {
    left: 100%;
}

.contact-container:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.4);
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-header h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(255, 107, 53, 0.2);
}

.contact-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
    font-family: var(--font-primary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item:hover {
    background: rgba(255, 107, 53, 0.05);
    transform: translateX(10px);
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
    border: 2px solid var(--primary-color);
}

.contact-item:hover .contact-icon {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.contact-icon i {
    color: white;
    font-size: 1.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-display);
}

.contact-value {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    font-family: var(--font-primary);
}

@keyframes containerTechSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Page Styles - Redesigned */
.contact-page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.info-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.8s;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.4);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-header i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.info-header h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.info-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.info-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.info-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

/* Social Links in Sidebar */
.contact-info-sidebar .social-links {
    flex-direction: column;
    gap: 0.8rem;
}

.contact-info-sidebar .social-link {
    width: 100%;
    height: auto;
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-info-sidebar .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

.contact-info-sidebar .social-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.contact-info-sidebar .social-link span {
    font-weight: 600;
    font-size: 0.9rem;
}

.page-header {
    margin-bottom: 4rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 0 40px rgba(255, 107, 53, 0.2);
    animation: titleTechFadeIn 2s ease-out;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-family: var(--font-tech);
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    animation: subtitleTechSlideIn 2s ease-out 0.5s both;
    text-transform: uppercase;
}

.contact-info-card {
    background: var(--gradient-card);
    backdrop-filter: blur(30px);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.8s;
}

.contact-info-card:hover::before {
    left: 100%;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.4);
}

.contact-form-card {
    background: var(--gradient-card);
    backdrop-filter: blur(30px);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 3.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.5s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Form Header */
.form-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.form-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    animation: formIconPulse 3s ease-in-out infinite;
}

.form-icon i {
    color: white;
    font-size: 1.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes formIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
    }
}

.form-title h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 15px rgba(255, 107, 53, 0.2);
}

.form-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin: 0;
    font-family: var(--font-primary);
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Enhanced Form Groups */
.contact-form .form-group {
    margin-bottom: 2.5rem;
}

.contact-form .form-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
    font-family: var(--font-display);
}

.contact-form .form-label i {
    width: 20px;
    color: var(--primary-color);
    font-size: 1rem;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    transition: all 0.5s ease;
    color: var(--text-color);
    backdrop-filter: blur(15px);
    font-weight: 500;
    font-family: var(--font-primary);
    width: 100%;
}

.contact-form .form-control:focus {
    background: rgba(255, 107, 53, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.4rem rgba(255, 107, 53, 0.1), var(--shadow-glow);
    outline: none;
    transform: translateY(-3px);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
    font-family: var(--font-primary);
}

.contact-form select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 160px;
    font-family: var(--font-primary);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.btn-reset {
    background: transparent;
    color: var(--text-muted);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.2rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.btn-reset::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.8s;
}

.btn-reset:hover::before {
    left: 100%;
}

.btn-reset:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.2rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 50%;
    box-shadow: var(--shadow-soft);
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s;
}

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

.btn-submit:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-color);
}

.btn-submit i {
    transition: transform 0.4s ease;
}

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

/* New Message Button */
.btn-new-message {
    background: var(--gradient-secondary);
    color: white;
    border: 2px solid var(--secondary-color);
    border-radius: 15px;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
    cursor: pointer;
}

.btn-new-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s;
}

.btn-new-message:hover::before {
    left: 100%;
}

.btn-new-message:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-color);
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.8s;
}

.contact-form-card:hover::before {
    left: 100%;
}

.contact-form-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 107, 53, 0.4);
}

.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form .form-group {
    margin-bottom: 2.5rem;
}

.contact-form .form-label {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
    font-family: var(--font-display);
    text-transform: uppercase;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 0.8rem 0.5rem;
    font-size: 1.2rem;
    transition: all 0.5s ease;
    color: var(--text-color);
    backdrop-filter: blur(15px);
    font-weight: 500;
    font-family: var(--font-primary);
}

.contact-form .form-control:focus {
    background: rgba(255, 107, 53, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.4rem rgba(255, 107, 53, 0.1), var(--shadow-glow);
    outline: none;
    transform: translateY(-5px);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
    font-family: var(--font-primary);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 160px;
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.8rem 3rem;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: var(--shadow-soft);
    font-family: var(--font-display);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s;
}

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

.btn-submit:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent-color);
}

.btn-submit i {
    margin-right: 1.5rem;
}

.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 25px;
    padding: 3.5rem;
    text-align: center;
    margin-top: 2.5rem;
    backdrop-filter: blur(30px);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.2);
}

.success-icon {
    margin-bottom: 2.5rem;
}

.success-icon i {
    font-size: 6rem;
    color: var(--success-color);
    animation: pulse 3s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
}

.success-message h4 {
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 3px;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.success-message p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 500;
    font-family: var(--font-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Contact Grid Responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-icon i {
        font-size: 1.2rem;
    }
    
    .card-content h4 {
        font-size: 1.2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
        height: 50px;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Contact Page Responsive */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-submit,
    .btn-reset {
        width: 100%;
    }
    
    .form-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .form-icon {
        width: 60px;
        height: 60px;
    }
    
    .form-icon i {
        font-size: 1.5rem;
    }
    
    .form-title h3 {
        font-size: 1.8rem;
    }
    
    .contact-info-sidebar .social-link {
        padding: 0.8rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .info-header i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .logo-container {
        width: 170px;
        height: 170px;
    }

    .logo-main {
        width: 140px;
        height: 140px;
    }

    .logo-main i {
        font-size: 3.5rem;
    }

    .contact-container {
        padding: 2rem;
    }

    .contact-header h3 {
        font-size: 1.8rem;
    }

    .page-title {
        font-size: 4rem;
    }

    .page-subtitle {
        font-size: 1.5rem;
    }
}

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

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .logo-container {
        width: 140px;
        height: 140px;
    }

    .logo-main {
        width: 120px;
        height: 120px;
    }

    .logo-main i {
        font-size: 3rem;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
    }

    .contact-icon i {
        font-size: 1.5rem;
    }

    .contact-value {
        font-size: 0.9rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .page-subtitle {
        font-size: 1.3rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 2rem;
    }

    .contact-form .form-control {
        padding: 1.2rem 1.5rem;
    }

    .btn-submit {
        padding: 1.2rem 2rem;
    }

    .success-message {
        padding: 2rem;
    }

    .success-icon i {
        font-size: 4rem;
    }

    .success-message h4 {
        font-size: 1.5rem;
    }

    .success-message p {
        font-size: 1rem;
    }
}