/*
Theme Name: Nomad Agency
Description: A custom WordPress theme for Nomad Agency - Assignment Edition
Author: Your Name
Version: 2.0.0
License: GPL v2 or later
Text Domain: nomad-agency
*/

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

html, body {
    height: 100%;
}

#page.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ====== ANIMATIONS ====== */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ====== CONTAINER ====== */

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

/* ====== HEADER ====== */

.site-header {
    background: #fff;
    padding: 2rem 0;
    position: relative;
    z-index: 1000;
}

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

.site-branding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.logo-icon svg {
    width: 80px;
    height: 56px;
    margin-bottom: 3rem;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0038D1;
    text-decoration: none;
    margin: 0;
}

.site-title a {
    color: #0038D1;
    text-decoration: none;
}

/* ====== HERO SECTION - BRAND BLUE ====== */

.hero-section {
    background: #0038D1;
    padding: 6rem;
    margin-bottom: 4rem;
    border-radius: 20px;
    border: 6px solid rgb(222 222 222 / 30%);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(253, 127, 17, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #FD7F11;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.hero-image img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* ====== CTA BUTTON ====== */

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #FD7F11 0%, #ff9933 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(253, 127, 17, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(253, 127, 17, 0.5);
    background: linear-gradient(135deg, #ff9933 0%, #FD7F11 100%);
}

/* ====== SERVICES SECTION - BRAND ORANGE ====== */

.services-section {
    background: linear-gradient(135deg, #FD7F11 0%, #ff9933 100%);
    padding: 4rem;
    margin-bottom: 4rem;
    border-radius: 20px;
    border: 6px solid rgba(11, 3, 59, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(253, 127, 17, 0.3);
    animation: fadeInUp 1s ease 0.2s both;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 56, 209, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.services-section .section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.service-box:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B033B;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    color: #4B5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #374151;
    font-size: 0.95rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FD7F11;
    font-weight: bold;
}

.service-link {
    color: #0038D1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    color: #FD7F11;
    transform: translateX(5px);
}

/* ====== WHY CHOOSE SECTION - DARK NAVY ====== */

.why-section {
    background: linear-gradient(135deg, #0B033B 0%, #1e1b4b 100%);
    padding: 4rem;
    margin-bottom: 4rem;
    border-radius: 20px;
    border: 6px solid rgba(253, 127, 17, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 3, 59, 0.4);
    animation: fadeInUp 1.2s ease 0.4s both;
}

.why-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 56, 209, 0.15) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

.why-section .section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.benefit-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.benefit-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B033B;
    margin-bottom: 1rem;
}

.benefit-box p {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
}

/* ====== SUCCESS SECTION ====== */

.success-section {
    margin-bottom: 4rem;
}

.success-section .section-title {
    font-size: 2rem;
    color: #0B033B;
    margin-bottom: 2rem;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-box {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #0038D1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #6B7280;
    font-weight: 500;
}

.testimonial-box {
    background: linear-gradient(135deg, #0038D1 0%, #0B033B 100%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 56, 209, 0.2);
}

.testimonial-quote {
    font-size: 1.25rem;
    color: white;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1rem;
    color: #FD7F11;
    font-weight: 600;
    font-style: normal;
}

/* ====== AUDIENCE SECTION ====== */

.audience-section {
    margin-bottom: 4rem;
}

.audience-section .section-title {
    font-size: 2rem;
    color: #0B033B;
    margin-bottom: 2rem;
    font-weight: 700;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.audience-box {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.audience-box:hover {
    transform: translateY(-5px);
    border-color: #FD7F11;
}

.audience-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B033B;
    margin-bottom: 1rem;
}

.audience-box p {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.6;
}

/* ====== CONTACT SECTION ====== */

.contact-section {
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #F9FAFB 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-top: 1rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B033B;
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #374151;
    font-size: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateX(5px);
}

.contact-detail-item svg {
    flex-shrink: 0;
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0038D1;
    box-shadow: 0 0 0 4px rgba(0, 56, 209, 0.1);
}

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

.submit-button {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* Form Messages */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 2px solid #10B981;
}

.form-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 2px solid #EF4444;
}

/* ====== FOOTER ====== */

.site-footer {
    background: linear-gradient(135deg, #F9FAFB 0%, #ffffff 100%);
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid #E5E7EB;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-branding {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-site-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0038D1;
    margin: 0;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #6B7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0038D1;
}

/* ====== MAIN CONTENT ====== */

.site-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1 0 auto;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999999;
}

.skip-link:focus {
    left: 6px;
    top: 7px;
    background: #0038D1;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
}

/* ====== MENU ====== */

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #0038D1;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.overlay-menu.active {
    opacity: 1;
    visibility: visible;
}

.overlay-menu-content {
    text-align: center;
    padding: 2rem;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 3rem;
    color: #0038D1;
    cursor: pointer;
}

.overlay-menu-list {
    list-style: none;
    padding: 0;
}

.overlay-menu-list li {
    margin-bottom: 2rem;
}

.overlay-menu-list a {
    font-size: 2rem;
    font-weight: 600;
    color: #0038D1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.overlay-menu-list a:hover {
    color: #FD7F11;
}

body.menu-open {
    overflow: hidden;
}

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

@media (max-width: 1024px) {
    .services-grid,
    .benefits-grid,
    .stats-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section,
    .services-section,
    .why-section {
        padding: 2rem;
        border-width: 4px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .services-grid,
    .benefits-grid,
    .stats-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
}

/* ====== ACCESSIBILITY ====== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ====== SCROLLBAR ====== */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #0038D1, #FD7F11);
    border-radius: 6px;
}

/* ====== SELECTION ====== */

::selection {
    background: #FD7F11;
    color: white;
}



/* ====================================
   SERVICES PAGE STYLES
   Add this to your style.css file
   ==================================== */

/* Page Header */
.page-header {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B033B;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #6B7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Detail Sections */
.services-detail-section {
    margin-bottom: 4rem;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.services-marketing-section {
    background: #fff;
    border: 3px solid #0038D1;
}

.services-design-section {
    background: #fff;
    border: 3px solid #FD7F11;
}

.services-consulting-section {
    background: #fff;
    border: 3px solid #0B033B;
}

.services-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-marketing-section .services-detail-title {
    color: #0038D1;
}

.services-design-section .services-detail-title {
    color: #FD7F11;
}

.services-consulting-section .services-detail-title {
    color: #0B033B;
}

.services-detail-intro {
    font-size: 1.125rem;
    color: #4B5563;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Service Items */
.service-items {
    display: grid;
    gap: 2.5rem;
}

.service-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2rem;
    background: #F9FAFB;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-item-icon {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.service-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B033B;
    margin-bottom: 0.75rem;
}

.service-item-description {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.service-item-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #374151;
    font-size: 0.95rem;
}

.service-item-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
}

.services-marketing-section .service-item-features li::before {
    color: #0038D1;
}

.services-design-section .service-item-features li::before {
    color: #FD7F11;
}

.services-consulting-section .service-item-features li::before {
    color: #0B033B;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0B033B;
    text-align: center;
    margin-bottom: 1rem;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-box {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-professional {
    border-color: #FD7F11;
    border-width: 3px;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #FD7F11;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0B033B;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 800;
    color: #0038D1;
    margin-bottom: 1rem;
}

.pricing-description {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #374151;
    font-size: 0.95rem;
    border-bottom: 1px solid #F3F4F6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.1rem;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #E5E7EB;
    color: #374151;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-button:hover {
    background: #D1D5DB;
    transform: translateY(-2px);
}

.pricing-button-featured {
    background: #FD7F11;
    color: white;
}

.pricing-button-featured:hover {
    background: #ff9933;
}

.pricing-note {
    text-align: center;
    font-size: 1rem;
    color: #6B7280;
    padding: 1.5rem;
    background: #F9FAFB;
    border-radius: 8px;
}

.pricing-note strong {
    color: #0B033B;
}

.pricing-note a {
    color: #0038D1;
    font-weight: 600;
    text-decoration: none;
}

.pricing-note a:hover {
    color: #FD7F11;
}

/* Services CTA Section */
.services-cta-section {
    background: #0038D1;
    padding: 4rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 56, 209, 0.2);
}

.services-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.services-cta-text {
    font-size: 1.125rem;
    color: white;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.services-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: #FD7F11;
    color: white;
}

.cta-primary:hover {
    background: #ff9933;
}

.cta-secondary {
    background: white;
    color: #0038D1;
}

.cta-secondary:hover {
    background: #F3F4F6;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B033B;
    margin-bottom: 0.75rem;
}

.faq-answer {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 2rem;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-item-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.125rem;
    }

    .services-detail-section {
        padding: 2rem;
    }

    .services-detail-title {
        font-size: 2rem;
    }

    .service-items {
        gap: 1.5rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .services-cta-section {
        padding: 2rem;
    }

    .services-cta-title {
        font-size: 2rem;
    }

    .services-cta-buttons {
        flex-direction: column;
    }

    .services-cta-buttons .cta-button {
        width: 100%;
    }
}