/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --royal-blue: #0052CC;
    --orange: #FF8800;
    --dark-gray: #2C3E50;
    --light-gray: #F8F9FA;
    --white: #FFFFFF;
    --border: #E5E7EB;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 16px;
    background: var(--white);
}

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

/* Navigation */
.navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

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


.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--royal-blue);
}

.btn-nav {
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-nav:hover {
    background: #E67700;
}

/* Location Badge */
.location-badge {
    background: var(--royal-blue);
    color: var(--white);
    padding: 8px 0;
    text-align: center;
}

.location-badge p {
    font-size: 14px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    color: #6B7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #E67700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 136, 0, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--royal-blue);
    border: 2px solid var(--royal-blue);
}

.btn-secondary:hover {
    background: var(--royal-blue);
    color: var(--white);
}

.btn-text {
    color: var(--royal-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.3s;
}

.btn-text:hover {
    gap: 8px;
}

.btn-full {
    width: 100%;
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
}

.problem-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto 48px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.problem-item {
    background: var(--light-gray);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.problem-item:hover {
    transform: translateY(-4px);
}

.problem-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.problem-item p {
    font-weight: 500;
    color: var(--dark-gray);
}

/* Solution Section */
.solution-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.solution-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.solution-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.solution-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.solution-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.solution-card p {
    color: #6B7280;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    color: var(--royal-blue);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 48px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 40px;
}

.service-number {
    color: var(--orange);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
}

.service-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark-gray);
}

.service-list {
    list-style: none;
    margin-bottom: 24px;
}

.service-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: #6B7280;
}

.service-list li:before {
    content: "✓ ";
    color: var(--orange);
    font-weight: 700;
    margin-right: 12px;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.pricing-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border: 2px solid var(--orange);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--royal-blue);
    margin-bottom: 8px;
}

.price span {
    font-size: 18px;
    font-weight: 500;
    color: #6B7280;
}

.price-description {
    color: #6B7280;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 12px 0;
    color: #6B7280;
}

.pricing-features li:before {
    content: "✓ ";
    color: var(--orange);
    font-weight: 700;
    margin-right: 12px;
}

.pricing-note {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    margin-top: 48px;
}

.pricing-note h3 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.package-item {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
}

.package-item strong {
    display: block;
    color: var(--royal-blue);
    margin-bottom: 8px;
    font-size: 16px;
}

.package-item p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

.special-offers {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.special-offers p {
    color: #6B7280;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-badges {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
}

.badge-item {
    background: var(--white);
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.badge-icon {
    font-size: 20px;
}

.about-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--royal-blue);
    margin-bottom: 8px;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark-gray);
}

.about-content p {
    color: #6B7280;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.about-content strong {
    color: var(--dark-gray);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.contact-item p {
    font-size: 16px;
    color: #6B7280;
}

.contact-item a {
    color: var(--royal-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
}

.contact-item a:hover {
    color: var(--orange);
}

.contact-item small {
    display: block;
    margin-top: 4px;
    font-size: 14px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-row {
    margin-bottom: 20px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--royal-blue);
}

.form-row textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 40px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-image {
    height: 28px;
    width: auto;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-legal {
    font-size: 14px;
    opacity: 0.7;
    line-height: 1.8;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .about-badges {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .section-header h2,
    .problem-section h2,
    .solution-section h2,
    .pricing-section h2,
    .contact-section h2 {
        font-size: 32px;
    }
}
