/* Crispkot Pro - Modern Orange & Red Theme */
:root {
    --primary-orange: #FF6B35;
    --primary-red: #F72C25;
    --accent-gold: #FFB347;
    --dark-bg: #0A0A0A;
    --dark-surface: #151515;
    --card-bg: rgba(21, 21, 21, 0.75);
    --card-border: rgba(255, 107, 53, 0.25);
    --text-primary: #FFFFFF;
    --text-secondary: #FFB347;
    --text-muted: #8B8B8B;
    --success-color: #4CAF50;
    --shadow-glow: 0 0 50px rgba(255, 107, 53, 0.5);
    --shadow-soft: 0 15px 50px rgba(0, 0, 0, 0.6);
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F72C25 100%);
    --gradient-accent: linear-gradient(135deg, #FFB347 0%, #FF6B35 100%);
    --gradient-bg: linear-gradient(135deg, #0A0A0A 0%, #1A0A0A 50%, #0A0A0A 100%);
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

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

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

/* Wave Layers */
.wave-layer {
    position: absolute;
    width: 200%;
    height: 200%;
    opacity: 0.1;
    animation: waveMove 20s ease-in-out infinite;
}

.wave-1 {
    background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    animation-duration: 25s;
}

.wave-2 {
    background: radial-gradient(circle, var(--primary-red) 0%, transparent 70%);
    top: -30%;
    right: -30%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.wave-3 {
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    bottom: -40%;
    left: -20%;
    animation-duration: 35s;
    animation-delay: -10s;
}

@keyframes waveMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

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

.float-element {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.08;
    filter: blur(60px);
    animation: floatMove 25s ease-in-out infinite;
}

.float-1 {
    width: 400px;
    height: 400px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.float-3 {
    width: 350px;
    height: 350px;
    bottom: 20%;
    left: 40%;
    animation-delay: 6s;
}

.float-4 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 60%;
    animation-delay: 9s;
}

.float-5 {
    width: 280px;
    height: 280px;
    bottom: 50%;
    right: 30%;
    animation-delay: 12s;
}

@keyframes floatMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -80px) scale(1.2); }
    50% { transform: translate(-40px, 60px) scale(0.9); }
    75% { transform: translate(70px, 40px) scale(1.1); }
}

/* Light Rays */
.light-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 179, 71, 0.03) 50%, transparent 70%);
    animation: rayRotate 30s linear infinite;
}

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

/* Mesh Gradient */
.mesh-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(247, 44, 37, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 179, 71, 0.08) 0%, transparent 60%);
    animation: meshPulse 15s ease-in-out infinite;
}

@keyframes meshPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

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

/* Brand Section */
.brand-section {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

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

/* Brand Logo */
.brand-logo {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.logo-circle {
    width: 160px;
    height: 160px;
    position: relative;
    margin: 0 auto;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.logo-inner {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-glow);
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { box-shadow: 0 0 40px rgba(255, 107, 53, 0.6); }
    50% { box-shadow: 0 0 70px rgba(255, 107, 53, 0.9); }
}

.logo-inner i {
    font-size: 4.5rem;
    color: var(--text-primary);
    animation: firePulse 2s ease-in-out infinite;
}

@keyframes firePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.logo-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 3px solid var(--primary-orange);
    border-radius: 50%;
    opacity: 0.5;
    animation: ringRotate 8s linear infinite;
}

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

.logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Brand Title */
.brand-title {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.title-word {
    display: block;
    position: relative;
    animation: titleReveal 1.2s ease-out backwards;
}

.title-1 {
    color: var(--text-primary);
    animation-delay: 0.2s;
}

.title-2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.4s;
    position: relative;
}

.title-2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: underlineGrow 1s ease-out 0.8s backwards;
}

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

@keyframes underlineGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

/* Brand Tagline */
.brand-tagline {
    margin-top: 2rem;
    position: relative;
    display: inline-block;
}

.tagline-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    animation: taglineFade 1s ease-out 0.6s backwards;
}

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

.tagline-underline {
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    margin: 1rem auto 0;
    border-radius: 1px;
    animation: underlineExpand 1s ease-out 1s forwards;
}

@keyframes underlineExpand {
    to {
        width: 120px;
    }
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.info-card-modern {
    background: var(--card-bg);
    backdrop-filter: blur(30px);
    border: 2px solid var(--card-border);
    border-radius: 25px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.info-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.info-icon-bg {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 20px;
    position: absolute;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(255, 107, 53, 0.8);
    }
}

.info-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

.info-content {
    flex: 1;
}

.info-label {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.info-email {
    font-size: 1.3rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    word-break: break-word;
}

.info-email:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.info-decoration {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
}

/* Decorative Dots */
.decorative-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-orange);
    opacity: 0.6;
    animation: dotBounce 2s ease-in-out infinite;
}

.dot-1 {
    animation-delay: 0s;
}

.dot-2 {
    animation-delay: 0.3s;
}

.dot-3 {
    animation-delay: 0.6s;
}

@keyframes dotBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

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

/* Page Header */
.page-header {
    margin-bottom: 4rem;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.header-icon {
    margin-bottom: 2rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.page-subtitle {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    animation: taglineFade 1s ease-out 0.3s backwards;
}

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

.info-card {
    background: var(--card-bg);
    backdrop-filter: blur(30px);
    border: 2px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

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

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

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

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

.info-header i {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.3rem;
    box-shadow: var(--shadow-soft);
}

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

.info-card p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Contact Form Card */
.contact-form-card {
    background: var(--card-bg);
    backdrop-filter: blur(30px);
    border: 2px solid var(--card-border);
    border-radius: 30px;
    padding: 3.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.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.12), 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.5);
}

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

.form-icon {
    width: 85px;
    height: 85px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    animation: iconPulse 3s ease-in-out infinite;
}

.form-icon i {
    color: var(--text-primary);
    font-size: 2.2rem;
}

.form-title h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.form-title p {
    color: var(--text-secondary);
    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;
}

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

.contact-form .form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-family: var(--font-primary);
}

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

.contact-form .form-control {
    background: rgba(10, 10, 10, 0.95);
    border: 2px solid var(--card-border);
    border-radius: 15px;
    padding: 1.3rem 1.8rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    font-weight: 500;
    font-family: var(--font-primary);
    width: 100%;
}

.contact-form .form-control:focus {
    background: rgba(21, 21, 21, 0.98);
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.25);
    outline: none;
    transform: translateY(-2px);
}

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

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

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

.btn-submit {
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    border-radius: 15px;
    padding: 1.3rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: var(--shadow-soft);
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-submit::before {
    content: '';
    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.8s;
}

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

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

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

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

/* New Message Button */
.btn-new-message {
    background: var(--gradient-accent);
    color: var(--text-primary);
    border: none;
    border-radius: 15px;
    padding: 1.2rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    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.3), transparent);
    transition: left 0.8s;
}

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

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

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

.success-message {
    background: rgba(255, 107, 53, 0.12);
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 25px;
    padding: 3.5rem;
    text-align: center;
    margin-top: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

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

.success-icon i {
    font-size: 5rem;
    color: var(--success-color);
    animation: pulse 2s ease-in-out infinite;
}

.success-message h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.8rem;
    font-family: var(--font-display);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .brand-title {
        font-size: 5rem;
    }

    .title-word {
        font-size: 5rem;
    }

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

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

    .info-card-modern {
        padding: 2.5rem;
        flex-direction: column;
        text-align: center;
    }

    .info-icon-wrapper {
        margin-bottom: 1rem;
    }

    .info-icon-bg,
    .info-icon-wrapper i {
        width: 80px;
        height: 80px;
    }

    .info-icon-wrapper i {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .form-icon {
        width: 70px;
        height: 70px;
    }

    .form-icon i {
        font-size: 1.8rem;
    }

    .form-title h3 {
        font-size: 2rem;
    }

    .info-card {
        padding: 2rem;
    }

    .info-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .info-header i {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

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

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

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

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

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

    .tagline-text {
        font-size: 1.1rem;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

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

    .info-card-modern {
        padding: 2rem;
    }

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

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

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

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

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

    .success-message {
        padding: 2.5rem;
    }

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

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

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