/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="1920" height="1080"%3E%3Crect fill="%23000000" width="1920" height="1080"/%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

/* City lights bokeh effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(244, 208, 63, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 60% 70%, rgba(244, 208, 63, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 90% 60%, rgba(218, 165, 32, 0.1) 0%, transparent 35%);
    animation: shimmer 8s ease-in-out infinite;
    pointer-events: none;
}

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

/* Floating bokeh particles */
.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(244, 208, 63, 0.4) 2px, transparent 2px),
        radial-gradient(circle, rgba(218, 165, 32, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 215, 0, 0.3) 3px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 450px 450px;
    background-position: 0 0, 40px 60px, 130px 270px;
    animation: float 20s linear infinite;
    pointer-events: none;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.hero-title .highlight {
    color: #F4D03F;
    font-weight: 500;
}

.hero-description {
    font-size: 1.25rem;
    color: #E0E0E0;
    max-width: 850px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    justify-content: center;
}

.btn {
    padding: 18px 45px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: #F4D03F;
    color: #000000;
    box-shadow: 0 4px 20px rgba(244, 208, 63, 0.3);
}

.btn-primary:hover {
    background-color: #DAA520;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(244, 208, 63, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

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

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .btn {
        padding: 16px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.4;
    }

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

    .btn {
        width: 100%;
        max-width: 320px;
    }
}



/* ========================================
   OYO IMAGE SECTION
   ======================================== */

.oyo-section {
    background: #FFFFFF;
    padding: 100px 20px;
}

.oyo-container {
    max-width: 1200px;
    margin: 0 auto;
}

.oyo-image-link {
    display: block;
    text-decoration: none;
    margin-top: 50px;
}

.oyo-image-wrapper {
    position: relative;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.oyo-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(244, 208, 63, 0.4);
}

.oyo-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.oyo-image-wrapper:hover .oyo-img {
    transform: scale(1.05);
}

/* Overlay */
.oyo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.oyo-image-wrapper:hover .oyo-overlay {
    opacity: 1;
}

.oyo-overlay-content {
    text-align: center;
    color: #FFFFFF;
    padding: 20px;
}

.oyo-icon {
    width: 100px;
    height: 100px;
    background: rgba(244, 208, 63, 0.2);
    border: 3px solid #F4D03F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(244, 208, 63, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(244, 208, 63, 0);
    }
}

.oyo-overlay-content h3 {
    font-size: 2rem;
    color: #F4D03F;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.oyo-overlay-content p {
    font-size: 1.25rem;
    color: #E0E0E0;
}

/* Responsive */
@media (max-width: 768px) {
    .oyo-section {
        padding: 60px 20px;
    }

    .oyo-image-wrapper {
        max-width: 100%;
    }

    .oyo-icon {
        width: 80px;
        height: 80px;
    }

    .oyo-icon svg {
        width: 50px;
        height: 50px;
    }

    .oyo-overlay-content h3 {
        font-size: 1.5rem;
    }

    .oyo-overlay-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .oyo-section {
        padding: 50px 15px;
    }

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

    .oyo-icon svg {
        width: 40px;
        height: 40px;
    }

    .oyo-overlay-content h3 {
        font-size: 1.25rem;
        letter-spacing: 1px;
    }

    .oyo-overlay-content p {
        font-size: 0.95rem;
    }
}





/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #FFFFFF;
    padding: 60px 20px 30px;
    border-top: 4px solid #F4D03F;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Top */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    animation: fadeInUp 0.8s ease-out both;
}

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

/* Company Info Column */
.footer-logo-img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1.125rem;
    color: #F4D03F;
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.footer-description {
    font-size: 0.95rem;
    color: #CCCCCC;
    line-height: 1.7;
}

/* Footer Titles */
.footer-title {
    font-size: 1.25rem;
    color: #F4D03F;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #F4D03F;
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #CCCCCC;
    font-size: 0.95rem;
}

.footer-contact li svg {
    color: #F4D03F;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #F4D03F;
}

/* Quick Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #F4D03F;
    transform: translateX(5px);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(244, 208, 63, 0.3) 50%, transparent 100%);
    margin-bottom: 25px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #999999;
    font-size: 0.9rem;
    margin: 0;
}

.designer-credit {
    color: #999999;
    font-size: 0.9rem;
    margin: 0;
}

.designer-credit .highlight {
    color: #F4D03F;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-column:first-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 15px 25px;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-tagline {
        font-size: 1rem;
    }

    .footer-description,
    .footer-contact li,
    .footer-links a {
        font-size: 0.875rem;
    }

    .footer-title {
        font-size: 1.125rem;
    }

    .copyright,
    .designer-credit {
        font-size: 0.8rem;
    }
}