/* EXPO-2030 Landing Page Styles */

/* Global Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #007bff;
    --accent-color: #00a0e9;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --gradient-primary: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    --font-main: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fcfcfc;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

section {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #004494 0%, #0056b3 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
}

/* Header */
.header {
    padding: 20px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.tagline {
    font-size: 14px;
    color: var(--dark-color);
    opacity: 0.8;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 50%;
    float: left;
}

.hero-image {
    width: 45%;
    float: right;
    position: relative;
}

.hero::after {
    content: '';
    display: table;
    clear: both;
}

.hero h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #475569;
}

.highlight {
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background-color: rgba(0, 86, 179, 0.2);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.domain-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: 20px;
}

.domain-display {
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.domain-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.domain-name {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    display: block;
    margin-bottom: 20px;
}

.availability {
    display: inline-block;
    background-color: var(--success-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

/* Info Section */
.info-section {
    background-color: white;
}

.info-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #64748b;
    font-size: 15px;
}

/* Expo Info Section */
.expo-info {
    background-color: var(--dark-color);
    color: white;
}

.expo-info h2 {
    text-align: center;
    color: white;
    margin-bottom: 50px;
    font-size: 32px;
}

.expo-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.expo-text {
    flex: 1;
    min-width: 300px;
}

.expo-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.expo-stats {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.stat {
    flex: 1;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-color);
    text-align: center;
    padding: 80px 0;
}

.contact-section h2 {
    margin-bottom: 30px;
    font-size: 32px;
}

.contact-direct {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.contact-direct p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #475569;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.contact-link i {
    font-size: 24px;
    margin-right: 10px;
}

/* Success message */
.success-message {
    padding: 40px 20px;
    text-align: center;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 5px;
    color: white;
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-copyright {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content, .hero-image {
        width: 100%;
        float: none;
    }
    
    .hero-content {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .expo-content {
        flex-direction: column;
    }
    
    .domain-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright {
        margin-top: 20px;
    }
} 