/*
Theme Name: PMT Consulting Dubai
Theme URI: https://pmtconsultingdubai.com
Author: PMT Consulting
Author URI: https://pmtconsultingdubai.com
Description: Современная тема с красивой страницей Coming Soon для PMT Consulting Dubai
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pmtconsultingdubai
Tags: coming-soon, one-column, custom-colors
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid #CFAD65;
    outline-offset: 2px;
}

html, body {
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    color: #FFFFFF;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Animated Background */
.coming-soon-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    padding: 60px 20px;
}

/* Animated Background Particles */
.background-particles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #CFAD65;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 18s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 14s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 16s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 13s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4.5s; animation-duration: 15s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1.5s; animation-duration: 19s; }
.particle:nth-child(10) { left: 15%; animation-delay: 6s; animation-duration: 14s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(50vh) translateX(20px) scale(1);
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) translateX(0) scale(0);
        opacity: 0;
    }
}

/* Main Content */
.coming-soon-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px;
    max-width: 800px;
    animation: fadeInUp 1.5s ease-out;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    overflow: visible;
}

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

/* Logo/Title */
.coming-soon-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(207, 173, 101, 0.5),
                     0 0 20px rgba(207, 173, 101, 0.3),
                     0 0 30px rgba(207, 173, 101, 0.2);
    }
    to {
        text-shadow: 0 0 20px rgba(207, 173, 101, 0.8),
                     0 0 30px rgba(207, 173, 101, 0.6),
                     0 0 40px rgba(207, 173, 101, 0.4);
    }
}

.coming-soon-title .highlight {
    color: #CFAD65;
    display: inline-block;
    position: relative;
    overflow: visible;
}

.coming-soon-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 30vw;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(207, 173, 101, 0) 0%, 
        rgba(207, 173, 101, 0.3) 10%, 
        #CFAD65 20%, 
        #CFAD65 80%, 
        rgba(207, 173, 101, 0.3) 90%, 
        rgba(207, 173, 101, 0) 100%);
    animation: shimmerRightToLeft 4s linear infinite;
    will-change: transform;
    transform: translateX(115vw);
}

@keyframes shimmerRightToLeft {
    0% {
        transform: translateX(115vw);
    }
    100% {
        transform: translateX(-115vw);
    }
}

/* Subtitle */
.coming-soon-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #CFAD65;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeIn 2s ease-out 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Description */
.coming-soon-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #FFFFFF;
    margin-bottom: 60px;
    line-height: 1.8;
    opacity: 0.9;
    animation: fadeIn 2s ease-out 1s both;
}

/* Countdown Timer */
.countdown-container {
    display: none;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeIn 2s ease-out 1.5s both;
}

.countdown-item {
    background: rgba(207, 173, 101, 0.1);
    border: 2px solid rgba(207, 173, 101, 0.3);
    border-radius: 15px;
    padding: 25px 30px;
    min-width: 120px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(207, 173, 101, 0.2) 0%, transparent 70%);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.countdown-item:hover::before {
    opacity: 1;
}

.countdown-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #CFAD65;
    box-shadow: 0 10px 30px rgba(207, 173, 101, 0.4);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.countdown-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #CFAD65;
    display: block;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.countdown-label {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* Notification Form */
.notification-form {
    max-width: 500px;
    margin: 0 auto;
    animation: fadeIn 2s ease-out 2s both;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(207, 173, 101, 0.3);
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    border-color: #CFAD65;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(207, 173, 101, 0.3);
}

.form-button {
    width: 100%;
    padding: 18px 25px;
    background: linear-gradient(135deg, #CFAD65 0%, #b8954a 100%);
    border: none;
    border-radius: 50px;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
    user-select: none;
}

.form-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.form-button:hover::before {
    width: 300px;
    height: 300px;
}

.form-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(207, 173, 101, 0.5);
}

.form-button:active {
    transform: translateY(0);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    animation: fadeIn 2s ease-out 2.5s both;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(207, 173, 101, 0.1);
    border: 2px solid rgba(207, 173, 101, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CFAD65;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #CFAD65;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    z-index: -1;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    color: #000000;
    border-color: #CFAD65;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(207, 173, 101, 0.4);
}

/* Animated Circles */
.animated-circles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.circle {
    position: absolute;
    border: 2px solid rgba(207, 173, 101, 0.2);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

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

/* Mobile Optimization - Reduce Animations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Tablet and Below */
@media (max-width: 1024px) {
    .coming-soon-container {
        padding: 40px 20px;
    }

    .coming-soon-content {
        padding: 30px 20px;
    }

    .additional-content {
        padding: 60px 30px;
    }
}

/* Mobile Landscape and Below */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 30px 15px;
        min-height: 100vh;
    }

    .coming-soon-content {
        padding: 20px 15px;
        max-width: 100%;
    }

    .coming-soon-title {
        font-size: clamp(1.8rem, 10vw, 3rem);
        letter-spacing: 1px;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .coming-soon-subtitle {
        font-size: clamp(1rem, 5vw, 1.5rem);
        margin-bottom: 25px;
        letter-spacing: 0.5px;
    }

    .coming-soon-description {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: 40px;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .countdown-container {
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 15px 12px;
        border-radius: 12px;
    }

    .countdown-number {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 8px;
    }

    .countdown-label {
        font-size: clamp(0.75rem, 3vw, 0.9rem);
        letter-spacing: 0.5px;
    }
    
    .social-links {
        gap: 12px;
        margin-top: 30px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .notification-form {
        max-width: 100%;
        padding: 0 10px;
    }

    .form-input {
        padding: 16px 20px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 40px;
    }

    .form-button {
        padding: 16px 20px;
        font-size: 0.95rem;
        border-radius: 40px;
    }

    .additional-content {
        padding: 50px 15px;
    }

    .content-section {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .section-text {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        line-height: 1.7;
        padding: 0 10px;
    }

    /* Reduce particles on mobile for better performance */
    .background-particles .particle {
        width: 3px;
        height: 3px;
    }

    /* Optimize circles */
    .circle-1 {
        width: 200px;
        height: 200px;
    }

    .circle-2 {
        width: 150px;
        height: 150px;
    }

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

/* Small Mobile Devices */
@media (max-width: 480px) {
    .coming-soon-container {
        padding: 20px 10px;
    }

    .coming-soon-content {
        padding: 15px 10px;
    }

    .coming-soon-title {
        font-size: clamp(1.5rem, 12vw, 2.5rem);
        margin-bottom: 12px;
    }

    .coming-soon-subtitle {
        font-size: clamp(0.9rem, 6vw, 1.3rem);
        margin-bottom: 20px;
    }

    .coming-soon-description {
        font-size: clamp(0.85rem, 4.5vw, 1rem);
        margin-bottom: 30px;
        padding: 0 5px;
    }

    .countdown-container {
        gap: 8px;
        margin-bottom: 30px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 12px 8px;
        border-radius: 10px;
    }

    .countdown-number {
        font-size: clamp(1.2rem, 7vw, 2rem);
        margin-bottom: 6px;
    }

    .countdown-label {
        font-size: clamp(0.7rem, 3.5vw, 0.85rem);
    }

    .social-links {
        gap: 10px;
        margin-top: 25px;
        flex-wrap: wrap;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .notification-form {
        padding: 0 5px;
    }

    .form-input {
        padding: 14px 18px;
        font-size: 16px;
    }

    .form-button {
        padding: 14px 18px;
        font-size: 0.9rem;
    }

    .additional-content {
        padding: 40px 10px;
    }

    .content-section {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: clamp(1.3rem, 8vw, 1.8rem);
        margin-bottom: 15px;
    }

    .section-text {
        font-size: clamp(0.85rem, 4.5vw, 1rem);
        line-height: 1.6;
        padding: 0 5px;
    }

    /* Further reduce animations on small screens */
    .background-particles .particle {
        width: 2px;
        height: 2px;
        opacity: 0.4;
    }

    .circle-1,
    .circle-2,
    .circle-3 {
        opacity: 0.2;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .coming-soon-title {
        font-size: clamp(1.3rem, 14vw, 2rem);
    }

    .countdown-item {
        min-width: 55px;
        padding: 10px 6px;
    }

    .countdown-number {
        font-size: clamp(1rem, 8vw, 1.8rem);
    }

    .social-link {
        width: 38px;
        height: 38px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .countdown-item:hover {
        transform: none;
    }

    .countdown-item:active {
        transform: scale(0.95);
    }

    .form-button:hover {
        transform: none;
    }

    .form-button:active {
        transform: scale(0.98);
    }

    .social-link:hover {
        transform: none;
    }

    .social-link:active {
        transform: scale(0.9);
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .coming-soon-container {
        min-height: auto;
        padding: 20px 15px;
    }

    .coming-soon-content {
        padding: 15px;
    }

    .coming-soon-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
        margin-bottom: 10px;
    }

    .coming-soon-subtitle {
        margin-bottom: 15px;
    }

    .coming-soon-description {
        margin-bottom: 25px;
    }

    .additional-content {
        padding: 40px 15px;
    }

    .content-section {
        margin-bottom: 40px;
    }
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOut 1s ease-out 0.5s forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(207, 173, 101, 0.2);
    border-top-color: #CFAD65;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Additional Content Sections */
.additional-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

.content-section {
    margin-bottom: 100px;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.content-section:nth-child(1) {
    animation-delay: 0.2s;
}

.content-section:nth-child(2) {
    animation-delay: 0.4s;
}

.content-section:nth-child(3) {
    animation-delay: 0.6s;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #CFAD65;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    overflow: visible;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 30vw;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(207, 173, 101, 0) 0%, 
        rgba(207, 173, 101, 0.3) 10%, 
        #CFAD65 20%, 
        #CFAD65 80%, 
        rgba(207, 173, 101, 0.3) 90%, 
        rgba(207, 173, 101, 0) 100%);
    animation: shimmerRightToLeft 4s linear infinite;
    will-change: transform;
    transform: translateX(115vw);
}

.section-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #FFFFFF;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}
