/* Custom CSS for Project Beta2 Landing Page */

/* Root Variables */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 0;
    /* Remove padding to make hero stick to navbar */
    background-image: url('../img/1.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    min-height: 100vh;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Clean Centered Logo Navigation */
.modern-navbar {
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem 0;
    z-index: 1030;
}

.modern-navbar.scrolled {
    background: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom: none;
    padding: 2rem 0;
}

/* Logo Container - Centered */
.navbar-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

/* Logo Image */
.logo-img {
    width: 50%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    /* Make logo white on transparent background */
}

.modern-navbar.scrolled .logo-img {
    max-height: 60px;
    filter: none;
    /* Original logo colors on white background */
}

/* Navbar Timer */
.navbar-timer {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* Mobile Timer - appears below navbar */
.mobile-timer {
    display: none;
    position: fixed;
    top: calc(80px + 4rem);
    left: 0;
    right: 0;
    z-index: 1025;
    background: transparent;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.mobile-timer-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
}

.mobile-timer .navbar-cta {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    margin: 0;
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    direction: rtl;
}

.navbar-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.navbar-cta-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.navbar-cta-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-align: right;
    direction: rtl;
}

.navbar-cta-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.navbar-cta-value {
    font-size: 0.85rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Courier New', monospace;
}

/* Page Title Section */
.page-title-section {
    padding: 2rem 0;
    margin-top: 5rem;
    margin-bottom: 3rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    direction: rtl;
    text-align: center;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /* Fallback background */
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Modern Hero Text Styles */
.hero-text-container {
    direction: rtl;
    text-align: right;
    animation: fadeInUp 1s ease-out;
}

/* Desktop: Keep text on right */
@media (min-width: 992px) {
    .hero-text-container {
        direction: rtl;
        text-align: right;
    }
}

/* Tablet and Mobile: Center the text */
@media (max-width: 991px) {
    .hero-text-container {
        direction: rtl;
        text-align: center;
    }
}

.hero-badge {
    display: inline-block;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

.badge-text {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(9px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    animation: slideInRight 0.8s ease-out 0.4s both;
}

.highlight-text {
    color: #667eea;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    opacity: 0.7;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 400;
    animation: slideInRight 0.8s ease-out 0.6s both;
}

.hero-cta-bottom {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}

.hero-place-bottom {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
}

.hero-timer-bottom {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    animation: slideInRight 0.8s ease-out 0.8s both;
    transition: all 0.3s ease;
    direction: rtl;
}

.hero-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
    direction: rtl;
}

.cta-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.cta-value {
    font-size: 1rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive styles for hero CTA bottom */
@media (max-width: 768px) {
    .hero-cta-bottom {
        bottom: 20px;
        right: 20px;
    }

    .hero-place-bottom {
        bottom: 20px;
        left: 20px;
    }

    .hero-timer-bottom {
        bottom: 20px;
        left: 20px;
    }

    .hero-cta {
        padding: 15px;
        gap: 10px;
    }

    .cta-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .cta-label {
        font-size: 0.75rem;
    }

    .cta-value {
        font-size: 0.9rem;
    }
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Video orientation control */
.hero-video-landscape {
    display: block;
}

.hero-video-portrait {
    display: none;
}

/* Show portrait video on mobile/portrait orientation */
@media (max-width: 768px) and (orientation: portrait) {
    .hero-video-landscape {
        display: none;
    }

    .hero-video-portrait {
        display: block;
    }

    /* Constrain hero section height on portrait orientation */
    .hero-section {
        max-height: calc(100vh - 120px);
        /* Account for navbar and spacing */
        overflow: hidden;
    }

    .video-background {
        max-height: calc(100vh - 120px);
    }

    .hero-video,
    .hero-video-portrait {
        max-height: calc(100vh - 120px);
        object-fit: cover;
        object-position: center;
    }
}

/* General portrait orientation video height constraints */
@media (orientation: portrait) {
    .hero-section {
        max-height: 100vh;
        overflow: hidden;
    }

    .video-background {
        max-height: 100vh;
    }

    .hero-video,
    .hero-video-landscape,
    .hero-video-portrait {
        max-height: 100vh;
        object-fit: cover;
        object-position: center;
    }

    /* Adjust for mobile devices with UI elements */
    @media (max-width: 768px) {
        .hero-section {
            max-height: calc(100vh - 80px);
            /* Account for mobile browser UI */
        }

        .video-background {
            max-height: calc(100vh - 80px);
        }

        .hero-video,
        .hero-video-landscape,
        .hero-video-portrait {
            max-height: calc(100vh - 80px);
        }
    }

    /* Further adjustment for very small mobile screens */
    @media (max-width: 480px) {
        .hero-section {
            max-height: calc(100vh - 60px);
        }

        .video-background {
            max-height: calc(100vh - 60px);
        }

        .hero-video,
        .hero-video-landscape,
        .hero-video-portrait {
            max-height: calc(100vh - 60px);
        }
    }
}

/* Show portrait video on narrow screens regardless of orientation */
@media (max-width: 576px) {
    .hero-video-landscape {
        display: none;
    }

    .hero-video-portrait {
        display: block;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* Dark overlay for better text readability */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Hero Right Content */
.hero-content-right {
    animation: float 3s ease-in-out infinite;
}

.hero-content-right .bi-play-circle {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-content-right:hover .bi-play-circle {
    transform: scale(1.1);
    opacity: 1 !important;
}

/* Video Loading States */
.hero-video {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-video.loaded {
    opacity: 1;
}

/* Fallback for no video support */
@supports not (object-fit: cover) {
    .hero-video {
        display: none;
    }

    .hero-section {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .video-controls {
        animation: none;
    }

    .hero-video {
        opacity: 0.7;
    }
}

/* Video loading spinner */
.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    font-size: 2rem;
}

.spinner-border-custom {
    width: 3rem;
    height: 3rem;
    border: 0.3em solid rgba(255, 255, 255, 0.3);
    border-top: 0.3em solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-image {
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Buttons */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
}

.btn-outline-primary {
    border: 2px solid white;
    color: white;
}

.btn-outline-primary:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Service Items */
.service-item {
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background-color: rgba(13, 110, 253, 0.05);
    transform: translateX(10px);
}

.service-icon {
    min-width: 80px;
}

/* Form Styling */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 8px;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Content Blocks Section */
.content-blocks {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.content-blocks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="25" cy="75" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="25" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.content-block-text {
    padding: 2rem;
    direction: rtl;
    text-align: right;
}

.content-block-text h3 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.content-block-text .lead {
    font-size: 1.25rem;
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

.content-block-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.content-block-image:hover {
    transform: translateY(-10px);
}

.content-block-image img {
    transition: all 0.5s ease;
    border-radius: 15px;
}

.content-block-image:hover img {
    transform: scale(1.05);
}

.content-blocks .row {
    position: relative;
    z-index: 1;
}

/* Responsive adjustments for content blocks */
@media (max-width: 991px) {
    .content-block-text {
        padding: 1rem;
        text-align: center;
        direction: ltr;
    }

    .content-block-text h3 {
        font-size: 1.75rem;
    }

    .content-block-text .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .content-block-text h3 {
        font-size: 1.5rem;
    }

    .content-block-text .lead {
        font-size: 1rem;
    }
}

/* Description Section */
.description-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 2rem;
}

.description-text {
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    direction: rtl;
    text-align: right;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.3px;
}

/* Two Column Blocks Section */
.two-column-blocks {
    margin-top: 3rem;
    margin-bottom: 3rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 1rem;
}

.text-block {
    padding: 2rem;
}

.text-block p {
    font-size: 1.3rem;
    font-weight: 400;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.7;
    margin: 0;
    letter-spacing: 0.3px;
}

.text-block-right {
    direction: rtl;
    text-align: right;
}

.text-block-left {
    direction: rtl;
    text-align: left;
}

.brand-highlight {
    font-weight: 700;
    color: #0d6efd;
    text-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
}

/* Modern Footer */
footer {
    margin-top: 100px;
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(19px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding: 60px 0 40px 0;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-brand {
    margin-bottom: 30px;
    text-align: right;
    direction: rtl;
}

.footer-brand h5 {
    color: #667eea;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
    display: inline-block;
    position: relative;
}

.footer-brand h5::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    opacity: 0.7;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-social {
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(9px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: white !important;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0;
    text-align: right;
}

/* Footer responsive */
@media (max-width: 768px) {
    footer {
        margin-top: 60px;
        padding: 40px 0 30px 0;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 25px;
    }

    .footer-brand h5 {
        font-size: 1.5rem;
    }

    .footer-brand p {
        font-size: 1rem;
    }

    .footer-social {
        text-align: center;
        margin-bottom: 25px;
    }

    .social-links {
        justify-content: center;
        gap: 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .footer-copyright {
        text-align: center;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 20px;
    }

    .service-item:hover {
        transform: none;
    }

    .btn-lg {
        padding: 10px 25px;
        font-size: 1rem;
    }

    /* Hero content for mobile */
    .hero-content-right .bi-play-circle {
        font-size: 4rem;
    }

    /* Reduce video overlay on mobile for better performance */
    .video-overlay {
        background: rgba(0, 0, 0, 0.4);
    }

    /* Title, Hero, Description, and Two-column sections responsive width */
    .page-title-section,
    .hero-section,
    .description-section,
    .two-column-blocks {
        width: 95%;
    }

    .page-title-section {
        margin-top: 3rem;
        margin-bottom: 2rem;
    }

    .hero-section {
        border-radius: 15px;
    }

    .page-title {
        font-size: 2rem;
    }

    .description-section {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }

    .description-text {
        font-size: 1.25rem;
        line-height: 1.7;
    }

    .two-column-blocks {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 1.5rem 0.5rem;
    }

    .text-block {
        padding: 1.5rem;
    }

    .text-block p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    /* Mobile logo adjustments */
    .logo-img {
        width: 50%;
        max-height: 60px;
    }

    .modern-navbar.scrolled .logo-img {
        max-height: 45px;
    }

    /* Mobile navbar timer adjustments */
    .navbar-timer {
        right: 15px;
    }

    .navbar-cta {
        padding: 8px 12px;
        gap: 8px;
    }

    .navbar-cta-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .navbar-cta-label {
        font-size: 0.6rem;
    }

    .navbar-cta-value {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {

    .page-title-section,
    .hero-section,
    .description-section,
    .two-column-blocks {
        width: 98%;
    }

    .page-title-section {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
        padding: 1.5rem 0;
    }

    .hero-section {
        border-radius: 10px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .description-section {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .description-text {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }

    .two-column-blocks {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 1rem 0.25rem;
    }

    .text-block {
        padding: 1rem;
    }

    .text-block p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .text-block-right,
    .text-block-left {
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 15px !important;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Custom Utilities */
.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav-link:focus,
.form-control:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Text Grids Section */
.text-grids-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.text-grid-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(1.9px);
    -webkit-backdrop-filter: blur(1.9px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.text-grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.text-grid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2.85px);
    -webkit-backdrop-filter: blur(2.85px);
}

.text-grid-card:hover::before {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 3;
}

.grid-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    direction: rtl;
    text-align: right;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.highlight-brand {
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
    display: inline-block;
    margin: 8px 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design for Text Grids */
@media (max-width: 992px) {
    .text-grids-section {
        padding: 60px 0;
    }

    .text-grid-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .grid-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .text-grids-section {
        padding: 40px 0;
    }

    .text-grid-card {
        padding: 25px 15px;
    }

    .grid-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .highlight-brand {
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {

    .navbar,
    footer,
    .btn {
        display: none !important;
    }

    .hero-section {
        background: white !important;
        color: black !important;
    }
}

/* Event Invitation Section */
.event-invitation-section {
    padding: 120px 0;
    position: relative;
    background: transparent;
    z-index: 10;
}

.invitation-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.invitation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 30px 30px 0 0;
}

.invitation-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    pointer-events: none;
}

.invitation-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.invitation-card:hover::after {
    transform: rotate(-45deg) translate(20%, 20%);
}

.invitation-content {
    position: relative;
    z-index: 3;
}

.invitation-icon {
    margin-bottom: 30px;
}

.invitation-icon i {
    font-size: 4rem;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.invitation-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    direction: rtl;
    text-align: center;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.invitation-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    direction: rtl;
    text-align: center;
    letter-spacing: 0.02em;
}

.invitation-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    direction: rtl;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.invitation-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.detail-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.detail-item i {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.detail-item span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    direction: rtl;
}

.invitation-cta {
    margin-top: 30px;
}

.invitation-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    direction: rtl;
}

.invitation-btn::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.6s ease;
}

.invitation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
    color: #ffffff;
}

.invitation-btn:hover::before {
    left: 100%;
}

.invitation-btn i {
    transition: transform 0.3s ease;
}

.invitation-btn:hover i {
    transform: rotate(45deg);
}

/* Responsive Design for Invitation Section */
@media (max-width: 768px) {
    .event-invitation-section {
        padding: 80px 0;
    }

    .invitation-card {
        padding: 40px 30px;
        margin: 0 15px;
    }

    .invitation-title {
        font-size: 2.2rem;
    }

    .invitation-subtitle {
        font-size: 1.4rem;
    }

    .invitation-text {
        font-size: 1.1rem;
    }

    .invitation-details {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .detail-item {
        justify-content: center;
        min-width: 200px;
    }

    .invitation-icon i {
        font-size: 3rem;
    }
}

/* Location Link Styles */
.location-link {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.location-link:hover {
    transform: scale(1.05);
}

.hero-cta.location-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-cta.location-link:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.invitation-subtitle-link {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.invitation-subtitle-link:hover {
    transform: translateY(-2px);
}

.invitation-subtitle-link:hover .invitation-subtitle {
    text-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.detail-item.location-link {
    text-decoration: none;
    color: inherit;
}

.detail-item.location-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.3);
}

/* Enhanced Responsive Design for All Screen Sizes */

/* Extra Large Screens (1400px and up) - Desktop Large */
@media (min-width: 1400px) {
    .hero-section {
        width: 85%;
        margin-top: 10rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .invitation-title {
        font-size: 3.5rem;
    }

    .invitation-card {
        padding: 80px 70px;
    }

    .text-grid-card {
        padding: 50px 40px;
    }
}

/* Large Screens (1200px to 1399px) - Desktop */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero-section {
        width: 88%;
        margin-top: 9rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .invitation-title {
        font-size: 3.2rem;
    }
}

/* Medium-Large Screens (992px to 1199px) - Small Desktop/Large Tablet */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-section {
        width: 90%;
        margin-top: 8rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .invitation-title {
        font-size: 2.8rem;
    }

    .invitation-card {
        padding: 50px 40px;
    }

    .text-grid-card {
        padding: 35px 25px;
    }

    .navbar-timer {
        right: 20px;
    }
}

/* Desktop Timer - show in navbar */
@media (min-width: 992px) {
    .navbar-timer {
        display: block;
    }

    .mobile-timer {
        display: none;
    }
}

/* Mobile/Tablet Timer - show below navbar */
@media (max-width: 991px) {
    .navbar-timer {
        display: none;
    }

    .mobile-timer {
        display: block;
    }

    .hero-section {
        margin-top: calc(8rem + 50px);
        /* Add space for mobile timer */
    }
}

/* Tablet Landscape (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        width: 92%;
        margin-top: calc(7rem + 50px);
    }

    .hero-title {
        font-size: 2.4rem;
        text-align: center;
    }

    .hero-text-container {
        text-align: center;
        direction: rtl;
    }

    .hero-description {
        font-size: 0.95rem;
        text-align: center;
        direction: rtl;
    }

    .hero-cta-bottom,
    .hero-place-bottom {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    .invitation-title {
        font-size: 2.4rem;
    }

    .invitation-subtitle {
        font-size: 1.6rem;
    }

    .invitation-card {
        padding: 40px 30px;
        margin: 0 10px;
    }

    .text-grid-card {
        padding: 30px 20px;
        margin-bottom: 15px;
    }

    .navbar-cta {
        padding: 10px 14px;
        gap: 8px;
    }

    .navbar-cta-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .logo-img {
        width: 60%;
        max-height: 70px;
    }
}

/* Tablet Portrait (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-section {
        width: 95%;
        margin-top: calc(6rem + 50px);
        padding: 40px 20px;
    }

    .mobile-timer {
        top: calc(60px + 2rem);
    }

    .mobile-timer-content {
        padding-right: 15px;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-text-container {
        text-align: center;
        direction: rtl;
        margin-bottom: 40px;
    }

    .hero-description {
        font-size: 0.9rem;
        text-align: center;
        direction: rtl;
        line-height: 1.5;
    }

    .hero-cta-bottom,
    .hero-place-bottom {
        position: static;
        margin: 20px auto;
        display: flex;
        justify-content: center;
    }

    .hero-cta {
        padding: 15px;
        gap: 10px;
    }

    .cta-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .invitation-title {
        font-size: 2rem;
    }

    .invitation-subtitle {
        font-size: 1.3rem;
    }

    .invitation-text {
        font-size: 1rem;
    }

    .invitation-card {
        padding: 35px 25px;
        margin: 0 10px;
    }

    .text-grids-section {
        padding: 60px 0;
    }

    .text-grid-card {
        padding: 25px 15px;
        margin-bottom: 20px;
    }

    .grid-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .navbar-timer {
        right: 10px;
    }

    .navbar-cta {
        padding: 8px 10px;
        gap: 6px;
    }

    .navbar-cta-label {
        font-size: 0.6rem;
    }

    .navbar-cta-value {
        font-size: 0.7rem;
    }

    .logo-img {
        width: 70%;
        max-height: 60px;
    }
}

/* Mobile Large (480px to 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .hero-section {
        width: 96%;
        margin-top: calc(5rem + 50px);
        padding: 30px 15px;
        border-radius: 15px;
    }

    .mobile-timer {
        top: calc(50px + 1rem);
        padding: 8px 0;
    }

    .mobile-timer-content {
        padding-right: 10px;
    }

    .mobile-timer .navbar-cta {
        padding: 8px 15px;
        margin: 0;
    }

    .hero-title {
        font-size: 1.8rem;
        text-align: center;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 0.85rem;
        text-align: center;
        direction: rtl;
    }

    .hero-cta-bottom,
    .hero-place-bottom {
        position: static;
        margin: 15px auto;
        display: flex;
        justify-content: center;
    }

    .hero-cta {
        padding: 12px;
        gap: 8px;
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        text-align: center;
    }

    .invitation-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .invitation-subtitle {
        font-size: 1.2rem;
    }

    .invitation-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .invitation-card {
        padding: 30px 20px;
        margin: 0 5px;
        border-radius: 25px;
    }

    .invitation-details {
        flex-direction: column;
        gap: 15px;
    }

    .detail-item {
        justify-content: center;
        padding: 12px 20px;
        min-width: 180px;
    }

    .text-grid-card {
        padding: 20px 12px;
        border-radius: 15px;
    }

    .grid-text {
        font-size: 0.85rem;
        text-align: center;
    }

    .navbar-timer {
        right: 5px;
        transform: translateY(-50%) scale(0.85);
    }

    .navbar-cta {
        padding: 6px 8px;
        gap: 4px;
        min-width: 80px;
    }

    .navbar-cta-icon {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .navbar-cta-label {
        font-size: 0.5rem;
    }

    .navbar-cta-value {
        font-size: 0.6rem;
    }

    .logo-img {
        width: 80%;
        max-height: 50px;
    }
}

/* Mobile Small (320px to 479px) */
@media (max-width: 479px) {
    .hero-section {
        width: 98%;
        margin-top: calc(4rem + 50px);
        padding: 25px 10px;
        border-radius: 12px;
    }

    .mobile-timer {
        top: calc(45px + 1rem);
        padding: 6px 0;
    }

    .mobile-timer-content {
        padding-right: 5px;
    }

    .mobile-timer .navbar-cta {
        padding: 6px 12px;
        margin: 0;
        gap: 6px;
    }

    .mobile-timer .navbar-cta-icon {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .mobile-timer .navbar-cta-label {
        font-size: 0.6rem;
    }

    .mobile-timer .navbar-cta-value {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.8rem;
        text-align: center;
        direction: rtl;
        line-height: 1.4;
    }

    .hero-badge {
        text-align: center;
        margin-bottom: 15px;
    }

    .badge-text {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .hero-cta-bottom,
    .hero-place-bottom {
        position: static;
        margin: 10px auto;
        display: flex;
        justify-content: center;
    }

    .hero-cta {
        padding: 10px;
        gap: 6px;
        flex-direction: column;
        text-align: center;
        min-width: 140px;
    }

    .cta-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin: 0 auto;
    }

    .cta-text {
        text-align: center;
    }

    .cta-label {
        font-size: 0.7rem;
    }

    .cta-value {
        font-size: 0.8rem;
    }

    .invitation-title {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .invitation-subtitle {
        font-size: 1.1rem;
    }

    .invitation-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .invitation-card {
        padding: 25px 15px;
        margin: 0;
        border-radius: 20px;
    }

    .invitation-icon i {
        font-size: 2.5rem;
    }

    .invitation-details {
        flex-direction: column;
        gap: 12px;
    }

    .detail-item {
        justify-content: center;
        padding: 10px 15px;
        min-width: 160px;
        font-size: 0.9rem;
    }

    .invitation-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .text-grids-section {
        padding: 40px 0;
    }

    .text-grid-card {
        padding: 18px 10px;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .grid-text {
        font-size: 0.8rem;
        text-align: center;
        line-height: 1.4;
    }

    .highlight-brand {
        font-size: 0.9rem;
    }

    .navbar-timer {
        right: 2px;
        transform: translateY(-50%) scale(0.75);
    }

    .navbar-cta {
        padding: 4px 6px;
        gap: 3px;
        min-width: 70px;
        border-radius: 8px;
    }

    .navbar-cta-icon {
        width: 20px;
        height: 20px;
        font-size: 0.6rem;
    }

    .navbar-cta-label {
        font-size: 0.45rem;
    }

    .navbar-cta-value {
        font-size: 0.55rem;
    }

    .logo-img {
        width: 85%;
        max-height: 45px;
    }

    .modern-navbar {
        padding: 1rem 0;
    }

    .event-invitation-section {
        padding: 60px 0;
    }

    footer {
        margin-top: 60px;
        padding: 30px 0 25px 0;
    }

    .footer-brand h5 {
        font-size: 1.3rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .social-links {
        gap: 10px;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Mobile CTA Styles */
.mobile-cta {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px 10px;
    transition: all 0.3s ease;
    direction: rtl;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.mobile-cta:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: inherit;
    text-decoration: none;
}

.mobile-cta .cta-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin: 0 auto 5px auto;
}

.mobile-cta .cta-text {
    text-align: center;
    direction: rtl;
}

.mobile-cta .cta-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-cta .cta-value {
    font-size: 0.85rem;
    color: white;
    font-weight: 600;
}

/* Ultra-wide screens (1600px and up) */
@media (min-width: 1600px) {
    .hero-section {
        width: 80%;
        margin-top: 12rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-description {
        font-size: 1.3rem;
    }

    .invitation-title {
        font-size: 4rem;
    }

    .invitation-card {
        padding: 100px 80px;
    }

    .text-grid-card {
        padding: 60px 50px;
    }

    .grid-text {
        font-size: 1.3rem;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        margin-top: 3rem;
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .hero-cta-bottom,
    .hero-place-bottom {
        position: static;
        margin: 10px auto;
        display: inline-flex;
    }

    .modern-navbar {
        padding: 0.5rem 0;
    }

    .navbar-timer {
        right: 5px;
        transform: translateY(-50%) scale(0.7);
    }

    .navbar-cta {
        padding: 3px 5px;
        gap: 2px;
        min-width: 60px;
    }

    .navbar-cta-icon {
        width: 18px;
        height: 18px;
        font-size: 0.5rem;
    }

    .navbar-cta-label {
        font-size: 0.4rem;
    }

    .navbar-cta-value {
        font-size: 0.5rem;
    }

    .logo-img {
        max-height: 35px;
    }

    .event-invitation-section {
        padding: 40px 0;
    }

    .invitation-card {
        padding: 25px 20px;
    }
}