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

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

        .hero {
            background: linear-gradient(135deg, #D65E5E 0%, #151516 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: drift 20s linear infinite;
        }

        @keyframes drift {
            from { transform: translate(0, 0); }
            to { transform: translate(50px, 50px); }
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 1;
            padding: 20px;
            max-width: 800px;
        }

        .logo {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .tagline {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .description {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 40px;
            font-size: 1.1rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
        }

        .btn-primary {
            background: white;
            color: #D65E5E;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: #D65E5E;
        }

        .features {
            padding: 100px 20px;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #D65E5E;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            padding: 40px;
            border-radius: 20px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .feature-description {
            color: #666;
            line-height: 1.6;
        }

        .screenshots {
            padding: 100px 20px;
            background: linear-gradient(135deg, #D65E5E 0%, #151516 100%);
            color: white;
        }

        .screenshots-grid {
            display: flex;
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            overflow-x: auto;
            padding: 20px 0;
        }

        .screenshot-card {
            min-width: 300px;
            /* background: white; */
            border-radius: 20px;
            padding: 0px;
            /* box-shadow: 0 10px 30px rgba(0,0,0,0.3); */
        }



        .cta-section {
            padding: 100px 20px;
            text-align: center;
            background: white;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #D65E5E;
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #666;
        }

        .monuments {
            padding: 100px 20px;
        }

        .search-container {
            margin-bottom: 40px;
            justify-content: center;
            display: flex;
            gap: 10px;
        }

        .search-input {
            padding: 12px 20px;
            border: 2px solid #D65E5E;
            border-radius: 50px;
            outline: none;
            transition: border 0.3s ease;
            width: 100%;
            max-width: 400px;
        }

        .search-input:focus {
            border-color: #ff0000;
        }

        .search-button {
            padding: 12px 20px;
            border: 2px solid #D65E5E;
            border-radius: 50px;
            background: #D65E5E;
            color: white;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .search-button:hover {
            background: #ff0000;
            border-color: #ff0000;
        }

        .monuments-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        @media (max-width: 992px) {
            .monuments-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .monuments-grid {
                grid-template-columns: 1fr;
            }
        }

        .monument-card {
            padding: 20px;
            border-radius: 20px;
            transition: transform 0.3s ease;
            cursor: pointer;
            max-width: 350px;
        }

        .monument-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 10px;
            background: #f0f0f0;
        }

        .monument-card:hover {
            transform: translateY(-10px);
        }

        .load-more {
            text-align: center;
            margin-top: 40px;
        }

        .load-more-btn {
            text-align: center;
            padding: 12px 20px;
            border: 2px solid #D65E5E;
            border-radius: 50px;
            background: #D65E5E;
            color: white;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        /* Modal iOS Sheet Style */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-sheet {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-radius: 20px 20px 0 0;
            max-height: 85vh;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
            z-index: 1001;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .modal-overlay.active .modal-sheet {
            transform: translateY(0);
        }

        .modal-handle {
            width: 36px;
            height: 5px;
            background: #d1d1d6;
            border-radius: 3px;
            margin: 10px auto;
            flex-shrink: 0;
        }

        .modal-content {
            padding: 0 20px 40px;
            overflow-y: auto;
            flex: 1;
        }

        .modal-image {
            width: 100%;
            max-width: 400px;
            max-height: 300px;
            object-fit: cover;
            border-radius: 12px;
            margin: 0 auto 20px;
            display: block;
        }

        .modal-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1c1c1e;
            margin-bottom: 8px;
        }

        .modal-subtitle {
            font-size: 1rem;
            color: #8e8e93;
            margin-bottom: 20px;
        }

        .modal-description {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #3c3c43;
        }

        .modal-close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: rgba(118, 118, 128, 0.12);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #8e8e93;
            transition: background 0.2s;
        }

        .modal-close-btn:hover {
            background: rgba(118, 118, 128, 0.24);
        }

        @media (min-width: 768px) {
            .modal-sheet {
                left: 0;
                right: 0;
                transform: translateY(100%);
                width: 100%;
                max-height: 80vh;
                border-radius: 20px 20px 0 0;
            }

            .modal-overlay.active .modal-sheet {
                transform: translateY(0);
            }
        }

        footer {
            padding: 40px 20px;
            text-align: center;
            background: #333;
            color: white;
        }

        @media (max-width: 768px) {
            .logo {
                font-size: 2.5rem;
            }

            .tagline {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }