/*
========================================
STYLE GUIDE - MODIFY THESE VALUES
========================================
Primary Accent Color: #2c5f8d (Blue)
Secondary Color: #f39c12 (Orange)
Font Stack: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
Background Color: #f8f9fa (Light Gray)
Text Color: #333333 (Dark Gray)
========================================
*/

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #f8f9fa;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* ===== HEADER ===== */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

/* Logo - REPLACE logo-placeholder.png with your actual logo */
.logo img {
    height: 60px;
    width: auto;
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #333333;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffffff;
    background-color: #2c5f8d; /* ACCENT COLOR */
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333333;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%); /* ACCENT COLOR */
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: #f39c12; /* SECONDARY COLOR */
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.cta-button:hover {
    background-color: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

/* Secondary Button */
.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #2c5f8d; /* ACCENT COLOR */
    padding: 12px 35px;
    border: 2px solid #2c5f8d;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: #2c5f8d;
    color: #ffffff;
}

/* ===== SECTIONS ===== */
section {
    padding: 60px 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: #2c5f8d; /* ACCENT COLOR */
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 50px;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}

/* ===== SERVICES OVERVIEW (Home Page) ===== */
.services-overview {
    background-color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #2c5f8d; /* ACCENT COLOR */
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c5f8d; /* ACCENT COLOR */
}

.service-card p {
    color: #666666;
    line-height: 1.8;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #2c5f8d; /* ACCENT COLOR */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333333;
}

.feature-item p {
    color: #666666;
    line-height: 1.8;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%); /* ACCENT COLOR */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    background-color: #ffffff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    font-size: 2rem;
    color: #2c5f8d; /* ACCENT COLOR */
    margin-bottom: 20px;
    margin-top: 30px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: #666666;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mv-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid #2c5f8d; /* ACCENT COLOR */
}

.mv-card h3 {
    font-size: 1.6rem;
    color: #2c5f8d; /* ACCENT COLOR */
    margin-bottom: 15px;
}

.mv-card p {
    color: #666666;
    line-height: 1.8;
}

/* ===== SERVICES PAGE ===== */
.services-detail {
    background-color: #ffffff;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-detail-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #2c5f8d; /* ACCENT COLOR */
    background-color: #ffffff;
}

.service-detail-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-detail-card h3 {
    font-size: 1.6rem;
    color: #2c5f8d; /* ACCENT COLOR */
    margin-bottom: 15px;
}

.service-detail-card p {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #666666;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f8d; /* ACCENT COLOR */
    font-weight: bold;
}

/* Services CTA */
.services-cta {
    text-align: center;
    background: linear-gradient(135deg, #2c5f8d 0%, #1a3a52 100%); /* ACCENT COLOR */
    color: #ffffff;
    padding: 60px 40px;
    border-radius: 10px;
}

.services-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    background-color: #ffffff;
}

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

/* Contact Info */
.contact-info h2 {
    font-size: 2rem;
    color: #2c5f8d; /* ACCENT COLOR */
    margin-bottom: 20px;
}

.contact-info > p {
    color: #666666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 2rem;
    color: #2c5f8d; /* ACCENT COLOR */
    min-width: 40px;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 8px;
}

.contact-item p {
    color: #666666;
    line-height: 1.7;
}

/* Contact Form */
.contact-form-container h2 {
    font-size: 2rem;
    color: #2c5f8d; /* ACCENT COLOR */
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333333;
    font-weight: 500;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5f8d; /* ACCENT COLOR */
    box-shadow: 0 0 0 3px rgba(44, 95, 141, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Error Messages */
.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    min-height: 20px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

/* Success Message */
.success-message {
    background-color: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    text-align: center;
}

.success-message p {
    margin: 0;
    font-weight: 500;
}

/* Submit Button */
.submit-button {
    width: 100%;
    background-color: #2c5f8d; /* ACCENT COLOR */
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #1a3a52;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 141, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
}

.footer-content p {
    margin: 10px 0;
}

.footer-links a {
    color: #ffffff;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12; /* SECONDARY COLOR */
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Styles */
@media (max-width: 968px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-detail-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .main-nav.active {
        max-height: 400px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }
    
    .main-nav a {
        display: block;
        padding: 12px 15px;
        border-radius: 5px;
    }
    
    /* Hero Section */
    .hero {
        padding: 60px 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Sections */
    section {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 10px;
    }
}