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

html {
    height: 100%;
    width: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

body {
    min-height: 100vh;
    color: #2d3748;
    background: linear-gradient(135deg, #fdfcfc 0%, #f7f5f4 100%);
}

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

/* Header and Navigation */
.navbar {
    background: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    border-bottom: 1px solid #e7e5e4;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #57534e;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #c2410c;
    background: #fed7aa;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 50%, #b91c1c 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    text-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.cta-section {
    margin-top: 2.5rem;
}

.phone-highlight {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.phone-number {
    display: inline-block;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.phone-number:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.2) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafaf9 100%);
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #c2410c;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #44403c;
    line-height: 1.8;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef7ed 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(194, 65, 12, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 146, 60, 0.15);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fb923c, #ea580c);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(194, 65, 12, 0.12);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h3 {
    color: #c2410c;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.service-card p {
    color: #44403c;
    line-height: 1.7;
    font-weight: 400;
}

/* Call to Action Section */
.call-to-action {
    background: linear-gradient(135deg, #292524 0%, #44403c 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.call-to-action h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: white;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.25);
}

.cta-button:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(234, 88, 12, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.page-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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* About Page */
.about-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafaf9 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2,
.about-text h3 {
    color: #c2410c;
    margin-bottom: 1.5rem;
}

.about-text h2 {
    font-size: 2.3rem;
    font-weight: 700;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    font-weight: 600;
}

.about-text p {
    color: #44403c;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-highlights {
    background: linear-gradient(135deg, #ffffff 0%, #fef7ed 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(194, 65, 12, 0.08);
    border: 1px solid rgba(251, 146, 60, 0.15);
}

.about-highlights h3 {
    color: #c2410c;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.highlight-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.highlight-list li {
    padding: 0.8rem 0;
    color: #44403c;
    position: relative;
    padding-left: 2rem;
    font-weight: 500;
}

.highlight-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-box {
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(251, 146, 60, 0.25);
}

.contact-box h4 {
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.contact-phone {
    display: block;
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 0.8rem;
}

/* Privacy Policy Page */
.privacy-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-text h2 {
    color: #dc2626;
    font-size: 1.9rem;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 3px solid #ef4444;
    padding-bottom: 0.8rem;
    font-weight: 600;
}

.privacy-text h3 {
    color: #1e293b;
    font-size: 1.4rem;
    margin: 2.5rem 0 1.2rem 0;
    font-weight: 600;
}

.privacy-text ul {
    margin: 1.5rem 0 2rem 2rem;
}

.privacy-text li {
    margin-bottom: 0.8rem;
    color: #4b5563;
    font-weight: 400;
}

.contact-details {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid #ef4444;
    margin: 2.5rem 0;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.08);
}

.contact-details p {
    margin: 0.8rem 0;
    font-weight: 500;
}

.contact-details a {
    color: #ef4444;
    text-decoration: none;
    font-weight: 600;
}

.policy-note {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #ef4444;
    margin: 2.5rem 0;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.08);
}

.policy-note p {
    margin: 0;
    font-weight: 600;
    color: #dc2626;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #292524 0%, #44403c 100%);
    color: #e7e5e4;
    padding: 2.5rem 0;
    text-align: center;
    margin-top: auto;
}

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

footer a {
    color: #fb923c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fdba74;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .logo-container {
        gap: 8px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .phone-number {
        font-size: 2rem;
        padding: 1rem 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    footer .container {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .phone-number {
        font-size: 1.8rem;
        padding: 0.8rem 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
