/* style.css - RPods Dubai Modern Design */
:root {
    --primary: #1a365d;
    --secondary: #2d3748;
    --accent: #e53e3e;
    --gold: #d4af37;
    --light: #f7fafc;
    --dark: #2d3748;
    --success: #38a169;
    --warning: #dd6b20;
    --info: #3182ce;
    --text: #2d3748;
    --text-light: #718096;
}

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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    margin: 30px auto;
    position: relative;
}

.header {
    background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
    color: white;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::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" opacity="0.05"><circle cx="20" cy="20" r="3" fill="white"/><circle cx="80" cy="40" r="2" fill="white"/><circle cx="40" cy="80" r="4" fill="white"/><circle cx="60" cy="20" r="2" fill="white"/></svg>') repeat;
}

.header h1 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header p {
    font-size: 1.3em;
    opacity: 0.95;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.nav-menu {
    background: var(--dark);
    padding: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 22px 28px;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    font-weight: 600;
    font-size: 1.05em;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.08);
    border-bottom-color: var(--gold);
    transform: translateY(-2px);
}

.content {
    padding: 50px 30px;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--light);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gold);
}

.page-header h2 {
    color: var(--primary);
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 600;
}

.seo-description {
    background: linear-gradient(135deg, #ebf8ff 0%, #fff5f5 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 6px solid var(--accent);
    margin: 40px 0;
    font-size: 1.15em;
    line-height: 1.8;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.feature-card h3 {
    color: var(--primary);
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05em;
}

.live-site-link {
    display: inline-block;
    background: linear-gradient(135deg, var(--success) 0%, #2f855a 100%);
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(72, 187, 120, 0.3);
    margin: 25px 0;
    border: none;
    cursor: pointer;
}

.live-site-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(72, 187, 120, 0.4);
}

.product-details {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
    border: 1px solid #e2e8f0;
}

.product-details h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.8em;
    font-weight: 600;
    text-align: center;
}

.product-details ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.product-details li {
    padding: 15px 0;
    border-bottom: 1px solid #cbd5e0;
    position: relative;
    padding-left: 35px;
    font-size: 1.1em;
}

.product-details li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.3em;
    top: 50%;
    transform: translateY(-50%);
}

.delivery-info {
    background: linear-gradient(135deg, #fffaf0 0%, #fed7d7 100%);
    padding: 35px;
    border-radius: 15px;
    margin: 40px 0;
    border-left: 6px solid var(--warning);
}

.delivery-info h3 {
    color: var(--warning);
    margin-bottom: 20px;
    font-size: 1.6em;
}

.internal-links {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    border-left: 6px solid var(--info);
}

.internal-links h3 {
    color: var(--info);
    margin-bottom: 20px;
    font-size: 1.5em;
}

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

.internal-link-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.internal-link-item:hover {
    transform: translateY(-3px);
}

.internal-link-item a {
    color: var(--info);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
}

.related-products {
    margin: 50px 0;
}

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

.related-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.related-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    display: block;
}

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

.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    text-align: center;
    padding: 40px 30px;
    margin-top: 60px;
}

.footer p {
    margin: 10px 0;
    opacity: 0.9;
    font-size: 1.05em;
}

.footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.footer a:hover {
    text-decoration: underline;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, #c53030 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: 700;
    margin-left: 15px;
    vertical-align: middle;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

.price-tag {
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2em;
    display: inline-block;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .container {
        margin: 15px;
        border-radius: 15px;
    }

    .header {
        padding: 40px 20px;
    }

    .header h1 {
        font-size: 2.3em;
    }

    .nav-menu ul {
        flex-direction: column;
    }

    .nav-menu a {
        padding: 18px 20px;
        text-align: center;
        border-bottom: 3px solid transparent;
        border-right: 4px solid transparent;
    }

    .nav-menu a:hover {
        border-right-color: var(--gold);
        border-bottom-color: transparent;
    }

    .content {
        padding: 40px 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-header h2 {
        font-size: 2em;
    }
}
