/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* .saudi-main-wrapper {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 50%, #0d3d2f 100%);
    min-height: 100vh;
} */

.saudi-main-wrapper {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
	background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 50%, #0d3d2f 100%);
	min-height: 100vh;
	margin: 40px 0;
	border-radius: 16px;
}

/* Hero Section */
.saudi-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f4c3a 0%, #1a5f4a 50%, #0d3d2f 100%);
    overflow: hidden;
}

.saudi-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    align-items: center;
    z-index: 2;
}

.saudi-hero-text {
    color: white;
    text-align: left;
}

.saudi-title-wrapper {
    margin-bottom: 1.5rem;
}

.saudi-main-title {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.saudi-subtitle {
    display: block;
    font-size: 1.5rem;
    color: #a8d5ba;
    font-weight: 400;
    direction: rtl;
    text-align: left;
}

.saudi-tagline {
    font-size: 1.25rem;
    color: #e8f5e8;
    font-weight: 300;
    font-style: italic;
}

/* Clock Container */
.saudi-clock-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.saudi-clock-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    animation: saudi-clock-glow 3s ease-in-out infinite alternate;
}

@keyframes saudi-clock-glow {
    0% { 
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.2),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    100% { 
        box-shadow: 
            0 0 50px rgba(255, 215, 0, 0.4),
            inset 0 0 30px rgba(255, 255, 255, 0.2);
    }
}

/* SVG Clock Styles */
.saudi-clock-svg {
    display: block;
}

.saudi-clock-face {
    fill: rgba(255, 255, 255, 0.95);
    stroke: none;
}

.saudi-clock-border {
    fill: none;
    stroke: #1a5f4a;
    stroke-width: 3;
}

.saudi-hour-markers .saudi-marker {
    stroke: #1a5f4a;
    stroke-width: 4;
    stroke-linecap: round;
}

.saudi-clock-number {
    fill: #1a5f4a;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-anchor: middle;
    dominant-baseline: central;
}

.saudi-hour-hand {
    stroke: #1a5f4a;
    stroke-width: 6;
    stroke-linecap: round;
    transform-origin: 150px 150px;
    transition: transform 0.5s ease-in-out;
}

.saudi-minute-hand {
    stroke: #0f4c3a;
    stroke-width: 4;
    stroke-linecap: round;
    transform-origin: 150px 150px;
    transition: transform 0.5s ease-in-out;
}

.saudi-second-hand {
    stroke: #dc143c;
    stroke-width: 2;
    stroke-linecap: round;
    transform-origin: 150px 150px;
    transition: transform 0.1s ease-out;
}

.saudi-center-dot {
    fill: #1a5f4a;
    stroke: white;
    stroke-width: 2;
}

/* Digital Time Display */
.saudi-digital-time {
    text-align: center;
    color: white;
}

.saudi-time-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.saudi-time-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    min-width: 80px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.saudi-time-box:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.saudi-hour-box {
    background: linear-gradient(135deg, rgba(255, 99, 71, 0.2), rgba(255, 99, 71, 0.1));
    border-color: rgba(255, 99, 71, 0.4);
}

.saudi-minute-box {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.2), rgba(50, 205, 50, 0.1));
    border-color: rgba(50, 205, 50, 0.4);
}

.saudi-second-box {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.2), rgba(30, 144, 255, 0.1));
    border-color: rgba(30, 144, 255, 0.4);
}

.saudi-time-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Inter', monospace;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.saudi-time-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.saudi-time-separator {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    animation: saudi-blink 2s ease-in-out infinite;
}

@keyframes saudi-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.saudi-timezone-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.saudi-timezone-text {
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: 600;
}

.saudi-date-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Decoration */
.saudi-hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.saudi-geometric-pattern {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 30%, rgba(255, 215, 0, 0.1) 70%, transparent 70%);
    border-radius: 20px;
    animation: saudi-rotate 20s linear infinite;
}

@keyframes saudi-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Content Grid */
.saudi-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Content Cards */
.saudi-content-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 95, 74, 0.1);
    position: relative;
    overflow: hidden;
}

.saudi-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a5f4a, #ffd700, #1a5f4a);
}

.saudi-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.saudi-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.saudi-card-icon {
    font-size: 2rem;
    color: #1a5f4a;
    background: linear-gradient(135deg, #a8d5ba, #e8f5e8);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(26, 95, 74, 0.2);
}

.saudi-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a5f4a;
}

.saudi-card-content {
    line-height: 1.7;
}

.saudi-card-description {
    display: block;
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Specific Card Styles */
.saudi-cultural-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.saudi-highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1a5f4a;
    font-weight: 500;
}

.saudi-highlight-item i {
    color: #ffd700;
}

.saudi-tourism-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.saudi-stat-item {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid rgba(26, 95, 74, 0.1);
}

.saudi-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f4a;
}

.saudi-stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.saudi-economy-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.saudi-metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(26, 95, 74, 0.05);
    border-radius: 8px;
    border-left: 4px solid #1a5f4a;
}

.saudi-metric-label {
    font-weight: 500;
    color: #666;
}

.saudi-metric-value {
    font-weight: 600;
    color: #1a5f4a;
}

.saudi-geography-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.saudi-feature-tag {
    background: linear-gradient(135deg, #1a5f4a, #0f4c3a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.saudi-timeline-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.saudi-timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fff8dc, #fafad2);
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.saudi-timeline-year {
    font-weight: 700;
    color: #1a5f4a;
    font-size: 1.1rem;
    min-width: 80px;
}

.saudi-timeline-event {
    color: #333;
    font-weight: 500;
}

.saudi-innovation-projects {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.saudi-project-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #e8f4fd, #dbeafe);
    border-radius: 10px;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.saudi-project-item i {
    color: #3b82f6;
    font-size: 1.2rem;
}

/* Footer */
.saudi-footer-section {
    background: linear-gradient(135deg, #0d3d2f, #1a5f4a);
    padding: 3rem 2rem;
    text-align: center;
}

.saudi-footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.saudi-footer-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.saudi-footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffd700;
}

.saudi-footer-motto {
    font-size: 1rem;
    color: #a8d5ba;
    font-style: italic;
}

.saudi-flag-representation {
    width: 80px;
    height: 50px;
    background: linear-gradient(to bottom, #006c35 0%, #006c35 100%);
    border-radius: 5px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .saudi-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .saudi-main-title {
        font-size: 3rem;
    }
    
    .saudi-content-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .saudi-hero-content {
        padding: 1.5rem;
    }
    
    .saudi-main-title {
        font-size: 2.5rem;
    }
    
    .saudi-subtitle {
        font-size: 1.2rem;
    }
    
    .saudi-time-display {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .saudi-time-separator {
        display: none;
    }
    
    .saudi-time-box {
        padding: 0.75rem 1rem;
        min-width: 120px;
    }
    
    .saudi-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .saudi-footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .saudi-footer-text {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .saudi-main-title {
        font-size: 2rem;
    }
    
    .saudi-clock-wrapper {
        padding: 0.5rem;
    }
    
    .saudi-clock-svg {
        width: 250px;
        height: 250px;
    }
    
    .saudi-content-card {
        padding: 1.5rem;
    }
    
    .saudi-card-title {
        font-size: 1.3rem;
    }
    
    .saudi-tourism-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .saudi-hero-content {
        padding: 1rem;
    }
    
    .saudi-main-title {
        font-size: 1.8rem;
    }
    
    .saudi-clock-svg {
        width: 200px;
        height: 200px;
    }
    
    .saudi-time-value {
        font-size: 1.5rem;
    }
    
    .saudi-content-card {
        padding: 1rem;
    }
    
    .saudi-card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}
