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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

/* Typography */
h1, h2, h3, h4 {
    color: #1A3263;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    color: #1A3263;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #FF7F11;
}

/* Navigation */
.main-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(26, 50, 99, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1A3263;
    display: flex;
    align-items: center;
}

.logo span {
    color: #FF7F11;
    margin-left: 5px;
}

.logo-symbol {
    color: #FF7F11;
    margin-right: 8px;
    font-weight: 900;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #1A3263;
    cursor: pointer;
    padding: 5px;
}

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

.main-nav a {
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.main-nav a:hover {
    background: #f0f5ff;
    color: #FF7F11;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #FF7F11;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    text-align: center;
}

.btn:hover {
    background: #e6710f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 127, 17, 0.3);
    color: white;
}

.btn-secondary {
    background: #1A3263;
}

.btn-secondary:hover {
    background: #15284f;
    box-shadow: 0 5px 15px rgba(26, 50, 99, 0.3);
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255, 127, 17, 0.1), transparent);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.3rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Services Grid */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #FF7F11;
    margin: 1rem auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 3rem 0;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(26, 50, 99, 0.08);
    transition: all 0.4s;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 50, 99, 0.15);
    border-color: #FF7F11;
}

.service-icon {
    font-size: 2.5rem;
    color: #FF7F11;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #1A3263;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}

.service-card p {
    color: #555;
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

/* Why Choose Us */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #f8faff;
    border-radius: 10px;
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #FF7F11;
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f8faff;
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-item:hover {
    background: #e6eeff;
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: #FF7F11;
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: #1A3263;
    margin-bottom: 1rem;
}

/* Forms */
.contact-form {
    max-width: 700px;
    margin: 3rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(26, 50, 99, 0.1);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1A3263;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e7ff;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #FF7F11;
    box-shadow: 0 0 0 3px rgba(255, 127, 17, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Service Page Specific */
.service-hero {
    background: linear-gradient(135deg, #1A3263 0%, #2a4a8a 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.service-hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.service-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.service-content {
    padding: 4rem 0;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0 3rem;
}

.benefits-list li {
    padding: 1rem 0 1rem 3rem;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.1rem;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF7F11;
    font-weight: bold;
    font-size: 1.5rem;
    top: 0.8rem;
}

.service-cta {
    background: linear-gradient(135deg, #f8faff 0%, #e6eeff 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin: 4rem 0;
    border: 2px solid #e0e7ff;
}

.service-cta h2 {
    color: #1A3263;
    margin-bottom: 1.5rem;
}

/* Footer */
.main-footer {
    background: #1A3263;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-logo span {
    color: #FF7F11;
}

.footer-about {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #FF7F11;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    display: inline-block;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: #FF7F11;
    transform: translateX(5px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.phone-link, .email-link {
    color: #FF7F11;
    font-weight: 600;
    text-decoration: none;
}

.copyright {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.4s, opacity 0.4s;
        visibility: hidden;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav a {
        display: block;
        padding: 1rem;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .service-hero h1 {
        font-size: 2.2rem;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .btn,
    .nav-toggle {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }
    
    .content-section {
        padding: 1rem 0;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .service-hero {
        background: none;
        color: #000;
        padding: 1rem 0;
    }
    
    .service-hero h1 {
        color: #000;
    }
    
    .service-hero p {
        color: #000;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.bg-light {
    background: #f8faff;
}

.highlight {
    color: #FF7F11;
    font-weight: 600;
}

.price-tag {
    background: #FF7F11;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 0;
}