/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2C3E50;
    background: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background: #FFFFFF;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #4A90E2;
    font-size: 1.6rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: #2C3E50;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #4A90E2;
}

.cta-btn {
    background: #4A90E2;
    color: #FFFFFF;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #3A7BC8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F4F8 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: #50E3C2;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.2rem;
    color: #2C3E50;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero p {
    font-size: 1.2rem;
    color: #5A6C7D;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-features span {
    color: #4A90E2;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #4A90E2 0%, #50E3C2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.2);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #4A90E2;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #3A7BC8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2C3E50;
    border: 2px solid #2C3E50;
}

.btn-secondary:hover {
    background: #2C3E50;
    color: #FFFFFF;
}

.btn-outline {
    background: transparent;
    color: #4A90E2;
    border: 2px solid #4A90E2;
}

.btn-outline:hover {
    background: #4A90E2;
    color: #FFFFFF;
}

.btn-light {
    background: #FFFFFF;
    color: #4A90E2;
}

.btn-light:hover {
    background: #F8F9FA;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.btn-outline-light {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-outline-light:hover {
    background: #FFFFFF;
    color: #4A90E2;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 4rem 2rem;
    background: #FFFFFF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #F8F9FA;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 3rem;
    color: #4A90E2;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #5A6C7D;
    font-weight: 500;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: #E8F4F8;
    color: #4A90E2;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #5A6C7D;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: 6rem 2rem;
    background: #F8F9FA;
}

.services-overview {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #E8F4F8;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #4A90E2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #2C3E50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #5A6C7D;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
}

.service-list li {
    color: #5A6C7D;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #50E3C2;
    font-weight: bold;
}

.service-link {
    color: #4A90E2;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: transform 0.3s;
}

.service-link:hover {
    transform: translateX(5px);
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-section {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.why-choose {
    padding: 6rem 2rem;
    background: #F8F9FA;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-content h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}

.why-content > p {
    font-size: 1.1rem;
    color: #5A6C7D;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-feature {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.why-feature h4 {
    color: #2C3E50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.why-feature p {
    color: #5A6C7D;
    line-height: 1.7;
}

.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.check-icon {
    color: #50E3C2;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item h4 {
    color: #2C3E50;
    margin-bottom: 0.3rem;
}

.feature-item p {
    color: #5A6C7D;
    font-size: 0.95rem;
}

.why-choose-image,
.why-image {
    display: flex;
    justify-content: center;
}

.placeholder-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #4A90E2 0%, #50E3C2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.2);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #4A90E2 0%, #3A7BC8 100%);
    color: #FFFFFF;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ========================================
   PAGE HERO (Internal pages)
   ======================================== */
.page-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F4F8 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #2C3E50;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #5A6C7D;
}

/* ========================================
   SERVICES DETAIL PAGE
   ======================================== */
.services-detail {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.service-detail-card {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 2px solid #E8F4F8;
}

.service-detail-card.highlight {
    background: linear-gradient(135deg, #E8F4F8 0%, #F8F9FA 100%);
    border-color: #4A90E2;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-detail-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.service-detail-header h2 {
    font-size: 2.2rem;
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.service-detail-header p {
    color: #5A6C7D;
    font-size: 1.1rem;
}

.service-detail-text h3 {
    font-size: 1.8rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.service-detail-text h4 {
    font-size: 1.3rem;
    color: #2C3E50;
    margin: 2rem 0 1.5rem;
}

.service-detail-text p {
    color: #5A6C7D;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item-small {
    display: flex;
    gap: 1rem;
}

.feature-item-small span {
    color: #50E3C2;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-item-small strong {
    display: block;
    color: #2C3E50;
    margin-bottom: 0.3rem;
}

.feature-item-small p {
    color: #5A6C7D;
    font-size: 0.95rem;
    margin: 0;
}

.pricing-note,
.pricing-highlight {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 10px;
    border-left: 4px solid #4A90E2;
}

.pricing-highlight {
    background: linear-gradient(135deg, #4A90E2 0%, #3A7BC8 100%);
    color: #FFFFFF;
    border-left: none;
    text-align: center;
    font-size: 1.2rem;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-story {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #5A6C7D;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-values {
    margin-top: 2.5rem;
    padding: 2rem;
    background: #F8F9FA;
    border-radius: 12px;
}

.about-values h3 {
    color: #2C3E50;
    margin-bottom: 1rem;
}

.about-values ul {
    list-style: none;
}

.about-values li {
    padding: 0.8rem 0;
    color: #5A6C7D;
    line-height: 1.7;
}

.about-values strong {
    color: #4A90E2;
}

.about-image {
    display: flex;
    justify-content: center;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
    padding: 6rem 2rem;
    background: #F8F9FA;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #E8F4F8;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: #4A90E2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
}

.team-image {
    margin-bottom: 1.5rem;
}

.image-placeholder-small {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, #4A90E2 0%, #50E3C2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700;
}

.team-card h3 {
    color: #2C3E50;
    margin-bottom: 0.5rem;
}

.team-title {
    color: #4A90E2;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: #5A6C7D;
    font-size: 0.9rem;
}

/* ========================================
   CERTIFICATIONS
   ======================================== */
.certifications-section {
    padding: 6rem 2rem;
    background: #FFFFFF;
    text-align: center;
}

.certifications-section h2 {
    font-size: 2.5rem;
    color: #2C3E50;
    margin-bottom: 3rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.cert-badge {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #E8F4F8;
}

.cert-badge h3 {
    color: #4A90E2;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cert-badge p {
    color: #5A6C7D;
    font-size: 0.9rem;
}

/* ========================================
   GALLERY PAGE
   ======================================== */
.gallery-section {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    background: #F8F9FA;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 2px solid #E8F4F8;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.image-placeholder-gallery {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4A90E2 0%, #50E3C2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h3 {
    color: #2C3E50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-info p {
    color: #5A6C7D;
    font-size: 0.95rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    padding: 6rem 2rem;
    background: #F8F9FA;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #E8F4F8;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #5A6C7D;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: #2C3E50;
}

.testimonial-author span {
    color: #5A6C7D;
    font-size: 0.9rem;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-page-section {
    padding: 6rem 2rem;
    background: #F8F9FA;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section h2 {
    color: #2C3E50;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-info-section > p {
    color: #5A6C7D;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 12px;
    border: 2px solid #E8F4F8;
}

.method-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.method-content h3 {
    color: #2C3E50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: #5A6C7D;
    margin-bottom: 0.3rem;
}

.method-content a {
    color: #4A90E2;
    font-weight: 600;
}

.method-content a:hover {
    text-decoration: underline;
}

.method-note {
    color: #5A6C7D !important;
    font-size: 0.9rem !important;
    font-weight: 500;
}

.emergency-box {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
    color: #FFFFFF;
    border-radius: 12px;
    text-align: center;
}

.emergency-box h3 {
    margin-bottom: 0.5rem;
}

.emergency-box a {
    color: #FFFFFF;
    font-weight: 700;
    text-decoration: underline;
}

/* ========================================
   CONTACT FORM (Modern Style)
   ======================================== */
.contact-form-section {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    color: #2C3E50;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #5A6C7D;
    font-size: 1.05rem;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    color: #2C3E50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 1rem;
    border: 2px solid #E8F4F8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #FFFFFF;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #4A90E2;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #B0BEC5;
}

.form-privacy {
    text-align: center;
    color: #5A6C7D;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ========================================
   SUCCESS PAGE
   ======================================== */
.success-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F4F8 100%);
    text-align: center;
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #50E3C2 0%, #4A90E2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 4rem;
    color: #FFFFFF;
    font-weight: bold;
}

.success-content h1 {
    font-size: 3rem;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.2rem;
    color: #5A6C7D;
    margin-bottom: 3rem;
}

.success-details {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 2px solid #E8F4F8;
}

.success-details h3 {
    color: #2C3E50;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.success-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.success-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4A90E2 0%, #50E3C2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.success-step p {
    color: #5A6C7D;
    font-size: 1.05rem;
    margin: 0;
}

.success-emergency {
    background: #FFF3CD;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 2px solid #FFE4A3;
}

.success-emergency p {
    color: #856404;
    margin: 0.5rem 0;
}

.success-emergency strong {
    font-weight: 700;
}

.success-emergency a {
    color: #4A90E2;
    font-weight: 700;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #2C3E50;
    color: #FFFFFF;
    padding: 4rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: #FFFFFF;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: #50E3C2;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #B0BEC5;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.footer-license {
    color: #50E3C2 !important;
    font-weight: 600;
    font-size: 0.9rem !important;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #B0BEC5;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #50E3C2;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #3A4D5C;
    text-align: center;
}

.footer-bottom p {
    color: #B0BEC5;
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-grid,
    .why-grid,
    .why-choose-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid,
    .cert-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}