* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #f59e0b;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-subtext {
    font-size: 0.95rem;
    margin-top: 1.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #f59e0b;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #f59e0b;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border-top: 4px solid #f59e0b;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card h4 {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card .price {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: #16a34a;
    font-size: 1.1rem;
}

/* Calculator Section */
.calculator-section {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.calculator-section h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.calculator select {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
}

.calculator button {
    width: 100%;
    padding: 15px;
    background: #f59e0b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.calculator button:hover {
    background: #1e3a8a;
}

.result {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: #f0f9ff;
    border-radius: 8px;
    display: none;
}

.result.show {
    display: block;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f59e0b;
    margin: 1rem 0;
}

.note {
    font-size: 0.9rem;
    color: #666;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: white;
}

.why-us h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #f59e0b;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.feature:hover {
    background: #e8f4ff;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h4 {
    color: #f59e0b;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #f59e0b;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item strong {
    display: block;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.info-item a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 500;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f59e0b;
}

.contact-form button {
    padding: 15px;
    background: #f59e0b;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #1e3a8a;
}

#form-message {
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

#form-message.success {
    background: #dcfce7;
    color: #166534;
    display: block;
}

#form-message.error {
    background: #fee2e2;
    color: #991b1b;
    display: block;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-section h4 {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fbbf24;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.8;
    margin: 0.5rem 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

.footer-bottom p {
    margin: 0.25rem 0;
}

/* Floating Call Button */
.call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.call-button a {
    display: block;
    background: #16a34a;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.call-button a:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(22, 163, 74, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(22, 163, 74, 0.7);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #f59e0b;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .call-button {
        bottom: 10px;
        right: 10px;
    }
    
    .call-button a {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: white;
}

.about-section h3 {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 2rem;
    text-align: center;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Intro Section */
.intro-section {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.intro-section h3 {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 1.5rem;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-section .cta-button {
    margin-top: 2rem;
}

/* CTA Section */
.cta-section {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
}

.cta-section h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .page-header h2 {
        font-size: 1.8rem;
    }
    
    .about-section h3,
    .intro-section h3,
    .cta-section h3 {
        font-size: 1.6rem;
    }
}
