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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: rgba(156, 163, 175, 0.15);
    color: #4b5563;
    border: 2px solid rgba(107, 114, 128, 0.4);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: rgba(107, 114, 128, 0.9);
    color: white;
    border: 2px solid #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.3);
}

.btn-secondary {
    background: rgba(156, 163, 175, 0.15);
    color: #4b5563;
    border: 2px solid rgba(107, 114, 128, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(107, 114, 128, 0.9);
    color: white;
    border: 2px solid #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.3);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img:hover {
    opacity: 0.9;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #667eea;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: #f8f9ff;
    color: #667eea;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6347 100%);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    animation: slideZoom 5s ease-in-out infinite;
}

@keyframes slideZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.85) 0%, rgba(255, 165, 0, 0.75) 25%, rgba(255, 69, 0, 0.8) 75%, rgba(255, 99, 71, 0.85) 100%);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.slideshow-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.slide-indicators {
    display: flex;
    gap: 10px;
    align-items: center;
}

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

.indicator.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9ff;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

.download-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

/* Services Section */
.services {
    padding: 100px 0;
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

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

.service-btn {
    margin-top: 1rem;
}

/* Secretarial Services Details Section */
.secretarial-details {
    padding: 100px 0;
    background: #f8f9ff;
}

.secretarial-title {
    color: #d2691e;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-btn {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.back-btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.secretarial-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.secretarial-sidebar {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

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

.secretarial-index li {
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.secretarial-index li:last-child {
    border-bottom: none;
}

.secretarial-index li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #d2691e;
    font-size: 0.8rem;
    font-weight: bold;
}

.secretarial-link {
    display: block;
    padding: 1rem 0 1rem 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.secretarial-link:hover {
    color: #667eea;
    background: #f8f9ff;
    border-left-color: #667eea;
    padding-left: 2rem;
}

.secretarial-link.active {
    color: #667eea;
    background: #f8f9ff;
    border-left-color: #667eea;
    font-weight: 600;
}

.secretarial-main {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 600px;
}

.service-detail {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.service-detail.active {
    display: block;
}

.service-detail h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #d2691e;
    position: relative;
}

.service-detail h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #667eea;
}

.service-detail p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
}

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

.service-detail ul li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.service-detail ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #d2691e;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-detail strong {
    color: #333;
    font-weight: 600;
}

/* Legal Services Details Section */
.legal-details {
    padding: 100px 0;
    background: #f8f9ff;
}

.legal-title {
    color: #d2691e;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.legal-sidebar {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

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

.legal-index li {
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.legal-index li:last-child {
    border-bottom: none;
}

.legal-index li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #d2691e;
    font-size: 0.8rem;
    font-weight: bold;
}

.legal-link {
    display: block;
    padding: 1rem 0 1rem 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.legal-link:hover {
    color: #667eea;
    background: #f8f9ff;
    border-left-color: #667eea;
    padding-left: 2rem;
}

.legal-link.active {
    color: #667eea;
    background: #f8f9ff;
    border-left-color: #667eea;
    font-weight: 600;
}

.legal-main {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-height: 600px;
}

.legal-service-detail {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.legal-service-detail.active {
    display: block;
}

.legal-service-detail h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #d2691e;
    position: relative;
}

.legal-service-detail h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #667eea;
}

.legal-service-detail p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
}

.legal-service-detail ul {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.legal-service-detail ul li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.legal-service-detail ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #d2691e;
    font-weight: bold;
    font-size: 1.2rem;
}

.legal-service-detail strong {
    color: #333;
    font-weight: 600;
}

/* LPO & Document Management Details Section */
.lpo-details {
    padding: 100px 0;
    background: #f8f9ff;
}

.lpo-title {
    color: #d2691e;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lpo-content {
    margin-top: 2rem;
}

.lpo-main {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.lpo-service-detail h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #d2691e;
    position: relative;
}

.lpo-service-detail h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #667eea;
}

.lpo-service-detail p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
}

.lpo-highlights {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #667eea;
}

.lpo-highlights h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.lpo-highlights ul {
    list-style: none;
    padding: 0;
}

.lpo-highlights ul li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.lpo-highlights ul li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.lpo-benefits {
    margin-top: 3rem;
}

.lpo-benefits h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.benefit-item h5 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.benefit-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Advisory Services Details Section */
.advisory-details {
    padding: 100px 0;
    background: #f8f9ff;
}

.advisory-title {
    color: #d2691e;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advisory-content {
    margin-top: 2rem;
}

.advisory-main {
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.advisory-service-detail h3 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #d2691e;
    position: relative;
}

.advisory-service-detail h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #667eea;
}

.advisory-service-detail p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
}

.advisory-highlights {
    background: #f8f9ff;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #667eea;
}

.advisory-highlights h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.advisory-highlights ul {
    list-style: none;
    padding: 0;
}

.advisory-highlights ul li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.advisory-highlights ul li::before {
    content: '⚖️';
    position: absolute;
    left: 0.5rem;
    font-size: 1rem;
}

.advisory-benefits {
    margin-top: 3rem;
}

.advisory-benefits h4 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.advisory-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.advisory-mission {
    margin-top: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 12px;
}

.advisory-mission h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.advisory-mission .mission-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.mission-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

.mission-point i {
    color: #ffd700;
    font-size: 1.2rem;
}

.mission-point span {
    color: white;
    font-weight: 500;
    font-size: 1rem;
}

/* Whom We Serve Section */
.whom-we-serve {
    padding: 100px 0;
    background: #f8f9ff;
}

.whom-we-serve-content {
    margin: 3rem 0;
}

.serve-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.serve-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.serve-description p:first-child {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a252f;
    text-align: center;
}

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

.client-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.client-category i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

/* News & Blog Section */
.news-blog {
    padding: 100px 0;
}

.news-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.news-section, .blog-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.news-section h3, .blog-section h3 {
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #667eea;
}

.news-item, .blog-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.news-item:last-child, .blog-item:last-child {
    border-bottom: none;
}

.news-date, .blog-date {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.news-item h4, .blog-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 1.1rem;
}

.news-item p, .blog-item p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.read-more:hover {
    text-decoration: underline;
}

.view-all {
    display: inline-block;
    margin-top: 1rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.view-all:hover {
    text-decoration: underline;
}

/* Careers/Interns Section */
.careers {
    padding: 100px 0;
    background: #f8f9ff;
}

.intern-application {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.intern-header {
    padding: 2rem 2rem 1rem;
}

.intern-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.intern-title i {
    color: #667eea;
    font-size: 1.5rem;
}

.intern-title h2 {
    color: #333;
    font-size: 2rem;
    margin: 0;
    font-weight: 600;
}

.intern-description {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.intern-form-container {
    padding: 1rem 2rem 2rem;
    border: 2px dashed #ddd;
    margin: 1rem 2rem 2rem;
    border-radius: 8px;
}

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

.form-section {
    background: #f0f0f0;
    padding: 1.5rem;
    border-radius: 8px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.intern-input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: border-color 0.3s ease;
}

.intern-input:focus {
    outline: none;
    border-color: #667eea;
}

.intern-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s ease;
}

.intern-textarea:focus {
    outline: none;
    border-color: #667eea;
}

.file-upload-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.file-input {
    display: none;
}

.file-upload-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    background: white;
    transition: border-color 0.3s ease;
}

.file-upload-label:hover {
    border-color: #667eea;
}

.file-upload-text {
    background: #e9ecef;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.file-upload-note {
    color: #666;
    font-size: 0.9rem;
}

.file-format-note {
    color: #666;
    font-size: 0.85rem;
    font-style: italic;
}

.intern-submit-btn {
    background: #d2691e;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: center;
    margin-top: 1rem;
}

.intern-submit-btn:hover {
    background: #c55a11;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9ff;
}

.our-location {
    margin-bottom: 4rem;
}

.location-title {
    color: #d2691e;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.5rem;
}

.availability-info {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.office-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.office-section:last-child {
    margin-bottom: 0;
}

.office-section-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
    display: inline-block;
}

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

.office-address {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.address-title {
    background: #d2691e;
    color: white;
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.address-details {
    padding: 1.5rem;
}

.address-details p {
    margin-bottom: 0.5rem;
    color: #333;
    line-height: 1.6;
}

.address-details p:last-child {
    margin-bottom: 0;
}

.phone-numbers {
    font-weight: 600;
    color: #667eea !important;
}

.email {
    color: #d2691e !important;
    font-weight: 500;
}

.map-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-details-section {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto 4rem;
}

.contacts-title {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: #f8f9ff;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

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

.contact-detail-item i {
    width: 20px;
    color: #d2691e;
    font-size: 1.2rem;
}

.contact-detail-item span {
    color: #333;
    font-weight: 500;
}

.contact-form-section {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-section h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-note {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    font-style: italic;
}

.form-note strong {
    color: #d2691e;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d2691e;
}

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

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #a0aec0;
    margin-bottom: 1rem;
}

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

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

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

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #5a67d8;
}



.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: white;
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }
    
    .logo-link {
        transform: none; /* Prevent double scaling on mobile */
    }
    
    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .slideshow-controls {
        bottom: 20px;
    }

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

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

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

    .office-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .office-section-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }



    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form-section {
        padding: 2rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 50px;
        max-width: 200px;
    }

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

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .intern-application {
        margin: 0 1rem;
    }

    .intern-header {
        padding: 1.5rem;
    }

    .intern-form-container {
        padding: 1rem;
        margin: 1rem;
    }

    .form-section {
        padding: 1rem;
    }

    .intern-title h2 {
        font-size: 1.5rem;
    }

    .serve-description {
        max-width: none;
        padding: 0 1rem;
    }

    .serve-description p {
        font-size: 1rem;
        text-align: left;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .secretarial-sidebar {
        position: static;
        order: -1;
    }

    .secretarial-main {
        padding: 2rem;
    }

    .secretarial-title {
        font-size: 2rem;
    }

    .service-detail h3 {
        font-size: 1.5rem;
    }

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

    .legal-sidebar {
        position: static;
        order: -1;
    }

    .legal-main {
        padding: 2rem;
    }

    .legal-title {
        font-size: 2rem;
    }

    .legal-service-detail h3 {
        font-size: 1.5rem;
    }

    .lpo-main {
        padding: 2rem;
    }

    .lpo-title {
        font-size: 2rem;
    }

    .lpo-service-detail h3 {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .advisory-main {
        padding: 2rem;
    }

    .advisory-title {
        font-size: 2rem;
    }

    .advisory-service-detail h3 {
        font-size: 1.5rem;
    }

    .advisory-benefits .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .mission-points {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        min-height: 60vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .slideshow-controls {
        bottom: 15px;
    }

    .indicator {
        width: 8px;
        height: 8px;
        gap: 8px;
    }

    .container {
        padding: 0 15px;
    }
    
    .logo-link {
        transform: none; /* Prevent double scaling on small mobile */
    }
    
    .logo-img {
        height: 35px;
        max-width: 120px;
    }
    
    .footer-logo-img {
        height: 45px;
        max-width: 180px;
    }

    .service-card,
    .feature,
    .client-category,
    .benefit {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .serve-description {
        padding: 0 0.5rem;
    }

    .serve-description p {
        font-size: 0.95rem;
    }

    .secretarial-main {
        padding: 1.5rem;
    }

    .secretarial-title {
        font-size: 1.8rem;
    }

    .service-detail h3 {
        font-size: 1.3rem;
    }

    .secretarial-link {
        font-size: 0.9rem;
        padding: 0.8rem 0 0.8rem 1.5rem;
    }

    .legal-main {
        padding: 1.5rem;
    }

    .legal-title {
        font-size: 1.8rem;
    }

    .legal-service-detail h3 {
        font-size: 1.3rem;
    }

    .legal-link {
        font-size: 0.9rem;
        padding: 0.8rem 0 0.8rem 1.5rem;
    }

    .lpo-main {
        padding: 1.5rem;
    }

    .lpo-title {
        font-size: 1.8rem;
    }

    .lpo-service-detail h3 {
        font-size: 1.3rem;
    }

    .lpo-highlights {
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefit-item {
        padding: 1rem;
    }

    .advisory-main {
        padding: 1.5rem;
    }

    .advisory-title {
        font-size: 1.8rem;
    }

    .advisory-service-detail h3 {
        font-size: 1.3rem;
    }

    .advisory-highlights {
        padding: 1.5rem;
    }

    .advisory-benefits .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .advisory-mission {
        padding: 1.5rem;
    }

    .mission-points {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .mission-point {
        padding: 0.6rem;
        gap: 0.8rem;
    }

    .location-title {
        font-size: 1.2rem;
    }

    .address-title {
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    .address-details {
        padding: 1rem;
    }

    .office-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .office-section-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .contact-form-section h3 {
        font-size: 1.2rem;
    }

    .service-link {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .contacts-title {
        font-size: 1.1rem;
    }

    .contact-details-section {
        padding: 1.5rem;
    }

    .intern-application {
        margin: 0 0.5rem;
    }

    .intern-header {
        padding: 1rem;
    }

    .intern-form-container {
        padding: 0.5rem;
        margin: 0.5rem;
    }

    .form-section {
        padding: 0.75rem;
    }

    .intern-title h2 {
        font-size: 1.3rem;
    }

    .intern-description {
        font-size: 0.9rem;
    }

    .intern-submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
} 