/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    min-height: 100vh;
    transition: all 0.5s ease;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(250, 112, 154, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fa709a;
}

.nav-logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #fa709a, #fee140);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sale-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #fa709a, #fee140);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.element {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.element-1 { top: 20%; left: 10%; animation-delay: 0s; }
.element-2 { top: 30%; right: 15%; animation-delay: 1s; }
.element-3 { top: 50%; left: 20%; animation-delay: 2s; }
.element-4 { top: 60%; right: 25%; animation-delay: 3s; }
.element-5 { top: 40%; left: 70%; animation-delay: 4s; }
.element-6 { top: 70%; left: 60%; animation-delay: 5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.domain-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.domain-name {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.status-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
    animation: slideInUp 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.9; }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: slideInUp 1s ease-out 0.8s both;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #fa709a;
    transform: translateY(-3px);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mockup Section */
.mockup-section {
    margin-bottom: 80px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Tab Buttons */
.mockup-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    background: #f8f9fa;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.tab-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

/* Mockup Container */
.mockup-container {
    position: relative;
    min-height: 400px;
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mockup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: white;
}

.mockup.active {
    opacity: 1;
}

/* Mockup Header */
.mockup-header {
    background: #2c3e50;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-dots {
    display: flex;
    gap: 8px;
}

.nav-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #34495e;
}

.nav-dots span:first-child {
    background: #e74c3c;
}

.nav-dots span:nth-child(2) {
    background: #f39c12;
}

.nav-dots span:last-child {
    background: #27ae60;
}

.nav-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Mockup Content */
.mockup-content {
    padding: 30px;
    height: calc(100% - 60px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

/* Theme-specific hero sections */
body[data-theme="sports"] .hero-section {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

body[data-theme="tourism"] .hero-section {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

body[data-theme="ecommerce"] .hero-section {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

body[data-theme="blog"] .hero-section {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.hero-section h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Grid Layouts */
.product-grid,
.destination-grid,
.article-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* Service Highlights */
.service-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.service-item {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: #333;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.service-item:hover {
    background: linear-gradient(45deg, #e9ecef, #dee2e6);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-card,
.destination-card,
.article-card,
.feature-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #333;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover,
.destination-card:hover,
.article-card:hover,
.feature-card:hover {
    background: #e9ecef;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features-section {
    margin-bottom: 80px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
}

/* Theme-specific feature items */
.theme-feature {
    transition: all 0.5s ease;
    opacity: 0.6;
}

.theme-feature.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Theme-specific mockups */
.theme-mockup {
    transition: all 0.5s ease;
}

.theme-mockup.active {
    opacity: 1;
}

/* Theme-specific titles */
.theme-title {
    transition: all 0.5s ease;
}

.theme-subtitle {
    transition: all 0.5s ease;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.contact-card h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.contact-card p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-btn {
    display: inline-block;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.3);
    margin-bottom: 30px;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(39, 174, 96, 0.4);
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    backdrop-filter: blur(10px);
}

.footer p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .mockup-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .page-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link-page {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Why Buy Section */
.why-buy {
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fa709a, #fee140);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #fa709a;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fa709a, #fee140);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.use-case-card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.use-case-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.use-case-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.feature-tag {
    background: rgba(250, 112, 154, 0.1);
    color: #fa709a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* SEO Benefits Section */
.seo-benefits {
    background: #f8f9fa;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.seo-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.seo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.seo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fa709a, #fee140);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.seo-card:hover .seo-icon {
    transform: scale(1.1);
}

.seo-icon i {
    font-size: 2rem;
    color: white;
}

.seo-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.seo-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.seo-stats {
    background: rgba(250, 112, 154, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.seo-stats .stat {
    font-weight: 600;
    color: #fa709a;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .domain-badge {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-section h3 {
        font-size: 1.5rem;
    }
    
    .product-grid,
    .destination-grid,
    .article-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .use-cases-grid,
    .seo-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Contact Section Updates */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: #fa709a;
    width: 40px;
    text-align: center;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.contact-item p {
    color: #666;
    font-size: 0.9rem;
}

.social-links {
    text-align: center;
}

.social-links h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.email-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.facebook-btn {
    background: linear-gradient(135deg, #3b5998, #4c70ba);
}

.linkedin-btn {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sale-highlight {
    background: linear-gradient(135deg, #fa709a, #fee140);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.sale-highlight h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.sale-highlight p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}
