/* ============================================
   FSPConsult Website - Stylesheet
   ============================================ */

/* Reset and 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: #333;
    background-color: #f8f9fa;
}

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

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #0066cc;
    border-bottom-color: #0066cc;
}

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 500px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 10;
}

/* Slide 1: Dark Blue - Transform Message */
.hero-slide-1 {
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.7) 0%, rgba(38, 70, 83, 0.7) 100%), 
                url('../images/hero/solutions_blue.jpg') center/cover;
    background-size: cover;
}

.hero-slide-1 h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    max-width: 900px;
}

.hero-slide-1 p {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Slide 2: City Skyline - Compliance */
.hero-slide-2 {
    background: linear-gradient(rgba(0, 120, 150, 0.6), rgba(0, 150, 180, 0.6)), 
                url('../images/hero/banner02.jpg') center/cover;
    background-size: cover;
}

.hero-slide-2 .slide-content {
    z-index: 5;
}

.compliance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compliance-list li {
    font-size: 2rem;
    font-weight: 700;
    margin: 1.5rem 0;
    line-height: 1.4;
    max-width: 900px;
}

/* Slide 3: Keyboard/Coffee - What We Do */
.hero-slide-3 {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('../images/hero/cupacoffee.jpg') center/cover;
    background-size: cover;
    justify-content: center;
    align-items: center;
}

.hero-slide-3 .slide-content {
    text-align: left;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-slide-3 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    animation: slideDown 0.8s ease-out 0.2s both;
}

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

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.services-list li {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0;
    animation: slideDown 0.8s ease-out forwards;
    opacity: 0;
}

.services-list li:nth-child(1) { animation-delay: 0.4s; }
.services-list li:nth-child(2) { animation-delay: 0.6s; }
.services-list li:nth-child(3) { animation-delay: 0.8s; }
.services-list li:nth-child(4) { animation-delay: 1s; }

.services-list li i {
    margin-right: 0.8rem;
    color: #00d4ff;
    font-size: 1.2rem;
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.slider-control:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.slider-control.prev {
    left: 20px;
}

.slider-control.next {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 20;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.indicator.active {
    background-color: white;
    transform: scale(1.3);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
}
.hero-about {
    padding: 5rem 0;
    background-color: #ffffff;
}

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

.hero-about-image {
    overflow: hidden;
    border-radius: 4px;
}

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

.hero-about-text h1 {
    font-size: 2.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.hero-highlight {
    margin: 2rem 0;
    padding: 1rem 0;
}

.hero-highlight p {
    color: #333;
    font-size: 1rem;
    margin: 0;
}

.hero-about-text .link-arrow {
    color: #0066cc;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    margin-top: 1rem;
}

.hero-about-text .link-arrow:hover {
    text-decoration: underline;
}

/* ============================================
   About Section (About Page)
   ============================================ */
.about-section {
    padding: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.about-section h2 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.about-section p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    font-size: 0.95rem;
}

/* ============================================
   Team Section
   ============================================ */
.team-section {
    padding: 10px 0;
    background-color: #ffffff;
}

.team-intro {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 2rem;
    text-align: justify;
    line-height: 1.8;
}

.team-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.team-image {
    width: 300px;
    height: auto;
    flex-shrink: 0;
}

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

.team-info h3 {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-info p {
    color: #555;
    line-height: 1.5;
    text-align: justify;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.regulations-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.regulations-list li {
    padding: 0.1rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    font-size: 0.85rem;
}

.regulations-list li:before {
    content: "◉";
    position: absolute;
    left: 0;
    color: #0066cc;
}

/* ============================================
   Services Details (Services Page)
   ============================================ */
.services-details {
    padding: 3rem 0;
    background-color: #ffffff;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-col {
    padding: 0;
}

.service-col h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.service-col p {
    color: #555;
    line-height: 1.8;
    text-align: justify;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-image {
    margin-top: 0;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.about h2 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 3rem;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
}

.highlights {
    background-color: #f0f7ff;
    padding: 1.5rem;
    border-left: 4px solid #0066cc;
    margin-top: 2rem;
}

.highlight-text {
    color: #0066cc;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================
   What We Do Section
   ============================================ */
.what-we-do {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.what-we-do h2 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 2rem;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #555;
    margin-right: auto;
}

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

.service-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 5rem 0;
    background-color: #ffffff;
}

.services h2 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 3rem;
    text-align: center;
}

.services-list {
    max-width: 600px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.service-item:last-child {
    border-bottom: none;
}

.service-bullet {
    color: #0066cc;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    font-weight: bold;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f7ff 100%);
}

.contact h2 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 3rem;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    color: #0066cc;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.address, .phone, .email {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #0066cc;
    color: white;
    width: 100%;
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: #667187; 
    color: white;
    padding: 1rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   About Preview (Home Page)
   ============================================ */
.about-preview {
    padding: 5rem 0;
    background-color: #ffffff;
}

.about-preview h2 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 3rem;
    text-align: center;
}

.preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.preview-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.preview-text p {
    margin-bottom: 1.5rem;
    color: #555;
}

.preview-text .highlight {
    color: #0066cc;
    font-weight: 600;
    margin: 2rem 0;
}

.link-arrow {
    display: inline-block;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.preview-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Services Preview (Home Page)
   ============================================ */
.services-preview {
    padding: 5rem 0;
    background-color: #f0f0f0;
}

.services-preview h2 {
    font-size: 2rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 400;
}

.intro-text {
    font-size: 1rem;
    text-align: justify;
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.8;
}

.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 0;
}

.service-preview-card {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    text-align: left;
}

.service-preview-card:hover {
    transform: none;
    box-shadow: none;
}

.service-preview-card .service-icon {
    display: none;
}

.service-preview-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.service-preview-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: justify;
}

.preview-footer {
    display: none;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    background-color: white;
    color: #0066cc;
    font-weight: 600;
}

.cta-section .btn:hover {
    background-color: #f0f0f0;
}

/* ============================================
   Detailed Services Section
   ============================================ */
.services-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.detailed-services {
    padding: 5rem 0;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 3rem;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.service-detail-header h2 {
    color: #0066cc;
    font-size: 1.6rem;
    margin: 0;
}

.service-detail-content h3 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.service-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

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

/* ============================================
   Core Values / Benefits Section
   ============================================ */
.core-values,
.why-choose-us {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.core-values h2,
.why-choose-us h2 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 3rem;
    text-align: center;
}

.values-grid,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item,
.benefit-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-item:hover,
.benefit-item:hover {
    transform: translateY(-5px);
}

.value-item h3,
.benefit-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-item p,
.benefit-item p {
    color: #666;
    line-height: 1.7;
}

/* ============================================
   Contact Map
   ============================================ */
.contact-map {
    width: 100%;
    height: 400px;
    margin-bottom: 3rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.contact-section h2 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-dot {
    color: #ff6b35;
    margin-right: 0.5rem;
}

.contact-info-col,
.contact-form-col {
    padding: 0;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #555;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

.info-item a {
    color: #0066cc;
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.contact-form-col h2 {
    margin-bottom: 1.5rem;
}

.contact-form {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
}

.form-group label {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.required {
    color: #e74c3c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* ============================================
   Additional Contact Methods
   ============================================ */
.additional-contact {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.additional-contact h2 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 3rem;
    text-align: center;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.connect-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.connect-card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.connect-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-secondary {
    background-color: #0066cc;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

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

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00d4ff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    text-align: center;
    color: #999;
}

/* ============================================
    Insights/Documents Section
    ============================================ */
.insights-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.document-item {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.document-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.document-icon {
    font-size: 2.5rem;
    color: #0066cc;
    flex-shrink: 0;
}

.document-info h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.document-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.document-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.btn-view,
.btn-download {
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
}

.btn-view {
    background-color: #0066cc;
    color: white;
}

.btn-view:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.btn-download {
    background-color: #00d4ff;
    color: #333;
}

.btn-download:hover {
    background-color: #00bcd4;
    transform: translateY(-2px);
}

.btn-view i,
.btn-download i {
    font-size: 1rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .hero-slider {
        height: 350px;
    }

    .hero-slide-1 h1 {
        font-size: 1.8rem;
    }

    .hero-slide-1 p {
        font-size: 1rem;
    }

    .compliance-list li {
        font-size: 1.3rem;
    }

    .hero-slide-3 h2 {
        font-size: 1.5rem;
    }

    .services-list li {
        font-size: 0.9rem;
    }

    .slider-control {
        padding: 0.75rem 1rem;
        font-size: 1.5rem;
    }

    .slider-control.prev {
        left: 10px;
    }

    .slider-control.next {
        right: 10px;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-about-content,
    .about-content,
    .preview-content,
    .contact-layout,
    .team-content,
    .service-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-map-wrapper {
        height: 300px;
    }

    .about h2,
    .what-we-do h2,
    .services h2,
    .contact h2,
    .page-header h1,
    .services-preview h2,
    .core-values h2,
    .why-choose-us h2,
    .additional-contact h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .values-grid,
    .benefits-grid,
    .connect-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .contact-map {
        height: 300px;
        margin-bottom: 2rem;
    }

    .team-image {
        width: 100%;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 280px;
    }

    .hero-slide-1 h1 {
        font-size: 1.3rem;
    }

    .hero-slide-1 p {
        font-size: 0.9rem;
    }

    .compliance-list li {
        font-size: 1rem;
    }

    .hero-slide-3 h2 {
        font-size: 1.2rem;
    }

    .services-list li {
        font-size: 0.85rem;
        padding-left: 1.5rem;
    }

    .services-list li:before {
        font-size: 0.9rem;
    }

    .slider-control {
        padding: 0.5rem 0.8rem;
        font-size: 1.2rem;
    }

    .slider-control.prev {
        left: 5px;
    }

    .slider-control.next {
        right: 5px;
    }

    .slider-indicators {
        bottom: 15px;
        gap: 0.5rem;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #f8f9fa;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .navbar .container {
        justify-content: space-between;
    }

    .hero-about-text h1 {
        font-size: 1.5rem;
    }

    .hero-about-text p {
        font-size: 0.95rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .services-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .document-actions {
        flex-direction: column;
    }

    .btn-view,
    .btn-download {
        width: 100%;
    }
}
