/* Custom CSS for Play Delhi Online Website Clone */

:root {
    --primary-blue: #0b3387;
    --accent-red: #c22539;
    --light-blue: #13b8ee;
    --orange: #ff6b35;
    --white: #ffffff;
    --light-gray: #f5fafa;
    --text-gray: #93a0a8;
    --yellow: #dcac2b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    background: linear-gradient(135deg, #ffffff 0%, #ee6331 100%);
    padding: 0px 0;
    z-index: 1000;
}

.navbar-brand img {
    height: 60px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #ff6b35 !important;
}

.btn-download {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: #e55a2b;
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #e8ebf2 0%, #ee6331 50%, #2b5cb8 100%);
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    transform: skewX(-15deg);
    transform-origin: top right;
}

.hero-content {
    padding-top: 100px;
    color: var(--white);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.number-grid {
    margin: 30px 0;
}

.number-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.number {
    background: var(--white);
    color: var(--primary-blue);
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    min-width: 40px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.number:hover {
    background: var(--light-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-description {
    margin: 30px 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon.whatsapp {
    background: #25d366;
    color: var(--white);
}

.social-icon.telegram {
    background: #0088cc;
    color: var(--white);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-text {
    color: var(--white);
    font-weight: 500;
}

.phone-mockup {
    text-align: center;
    padding-top: 0px;
}

.phone-mockup img {
    max-width: 350px;
    height: 600px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* Refer & Earn Section */
.refer-earn-section {
    background: var(--light-gray);
    position: relative;
}

.refer-earn-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,182,193,0.3) 0%, transparent 70%);
    border-radius: 0 50% 50% 0;
}

.refer-content {
    padding: 50px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-danger {
    background: var(--accent-red);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background: #a01e30;
    transform: translateY(-2px);
}

.phone-mockup-refer {
    text-align: center;
    position: relative;
}

.phone-mockup-refer::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--light-blue), #4fc3f7);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.phone-mockup-refer img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

/* Features Section */
.features-section {
    background: var(--white);
    position: relative;
}

.phone-mockup-features {
    text-align: center;
    position: relative;
}

.phone-mockup-features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-blue), #3d69c4);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.phone-mockup-features img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.2));
}

.features-content {
    padding: 50px 0;
}

.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.features-list i {
    color: var(--light-blue);
    font-size: 1.2rem;
}

/* Statistics Section */
.stats-section {
    background: var(--light-gray);
}

.stats-counter {
    text-align: center;
}

.stats-number {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.stats-label {
    font-size: 1.2rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    background: var(--white);
    padding: 80px 0;
}

.contact-logo {
    text-align: center;
    padding: 50px 0;
}

.contact-logo img {
    max-width: 250px;
    height: auto;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 0.2rem rgba(19, 184, 238, 0.25);
}

.form-text {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.btn-info {
    background: var(--light-blue);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-info:hover {
    background: #0ea5d4;
    transform: translateY(-2px);
}

/* Footer */
.footer-section {
    background: #f58d67;
    color: var(--white);
    padding: 50px 0 20px;
    position: relative;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link img {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.social-link:hover img {
    transform: translateY(-3px);
}

.footer-links h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--light-blue);
}

.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 30px 0;
}

.copyright {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Floating Contact Icons */
.floating-contacts {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-icon img {
    width: 30px;
    height: 30px;
}

.floating-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.floating-icon.phone {
    background: #34c759;
}

.floating-icon.whatsapp {
    background: #25d366;
}

.floating-icon.email {
    background: #007bff;
}

.floating-icon.telegram {
    background: #0088cc;
}

.floating-text {
    background: #333;
    color: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    margin-top: 10px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .phone-mockup img,
    .phone-mockup-refer img,
    .phone-mockup-features img {
        max-width: 250px;
    }

    .stats-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 120px;
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .number-row {
        justify-content: center;
    }

    .phone-mockup,
    .phone-mockup-refer,
    .phone-mockup-features {
        margin-top: 30px;
    }

    .features-content,
    .refer-content {
        text-align: center;
        padding: 30px 0;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .floating-contacts {
        bottom: 10px;
        right: 10px;
    }

    .floating-icon {
        width: 45px;
        height: 45px;
    }

    .floating-icon img {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .stats-number {
        font-size: 2.5rem;
    }

    .number {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 35px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.refer-content,
.features-content {
    animation: fadeInUp 1s ease-out;
}

/* Loading Animation for Images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

img[src] {
    opacity: 1;
    border-radius: 10px;
}
