* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Glassmorphism Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #1a1a1a;
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(26,26,26,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    text-align: center;
    color: #333;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    line-height: 1.2;
    color: #1a1a1a;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    color: #555;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.cta-button.primary {
    background: rgba(26, 26, 26, 0.9);
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(26, 26, 26, 0.3);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    border: 2px solid rgba(26, 26, 26, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 26, 26, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 26, 26, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(26, 26, 26, 0.01) 0%, transparent 50%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #1a1a1a, #333);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(26, 26, 26, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: rgba(255, 255, 255, 0.95);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.service-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
}

.service-header h3 {
    font-size: 1.8rem;
    color: #1a1a1a;
    font-weight: bold;
}

.service-description p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-highlights {
    list-style: none;
    margin-bottom: 2rem;
}

.service-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.service-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.detail-btn {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.detail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 26, 26, 0.3);
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: #f8f9fa;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(26, 26, 26, 0.02) 49%, rgba(26, 26, 26, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(26, 26, 26, 0.02) 49%, rgba(26, 26, 26, 0.02) 51%, transparent 52%);
    background-size: 100px 100px;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 26, 26, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, rgba(26, 26, 26, 0.1), transparent);
    border-radius: 15px 0 15px 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #f5f5f5;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: #e0e0e0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #ffffff;
}

.contact-item p {
    margin: 0;
    opacity: 0.9;
    color: #e0e0e0;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #f5f5f5;
    padding: 3rem 2rem 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p, .footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    opacity: 0.7;
}

/* Detail Pages Specific Styles */
.detail-page {
    background: #f8f9fa;
    min-height: 100vh;
}

.page-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-header p {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 2rem;
}

.problem-section {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.problem-section h3 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.problem-list {
    list-style: none;
    margin: 1rem 0;
}

.problem-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.problem-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0;
}

.solution-section {
    background: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.solution-section h3 {
    color: #28a745;
    margin-bottom: 1rem;
}

.solution-section p {
    color: #333;
}

.highlight {
    background: rgba(26, 26, 26, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #1a1a1a;
    font-weight: bold;
    color: #1a1a1a;
    margin: 1rem 0;
}

.price-table {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(26, 26, 26, 0.1);
}

.price-table h4 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 500;
    color: #333;
}

.price-value {
    font-weight: bold;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.service-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin: 1rem 0;
    color: #b8860b;
}

.subscription-box {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid rgba(26, 26, 26, 0.2);
}

.subscription-box h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.back-button {
    background: rgba(26, 26, 26, 0.1);
    color: #1a1a1a;
    border: 1px solid rgba(26, 26, 26, 0.3);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: rgba(26, 26, 26, 0.2);
    transform: translateY(-2px);
}

/* Scrolling Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Elements */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(26, 26, 26, 0.05);
    border-radius: 50%;
    animation: float-shape 8s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes float-shape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        padding: 1rem 0;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
}

/* Contact Page Specific Styles */
.contact-info-section {
    margin-bottom: 4rem;
}

.contact-info-section h3 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-method {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(26, 26, 26, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-method .contact-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.contact-details p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-details strong {
    color: #1a1a1a;
    font-size: 1.1rem;
}

.business-hours-section {
    margin-bottom: 4rem;
}

.business-hours-section h3 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.business-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.business-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(26, 26, 26, 0.1);
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.business-item .business-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.business-details h4 {
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.business-details p {
    color: #555;
    line-height: 1.6;
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .business-info {
        grid-template-columns: 1fr;
    }
    
    .contact-info-section h3,
    .business-hours-section h3 {
        font-size: 1.5rem;
    }

}

