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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0);
}
.section-heading-about{
     color: #1b2a41;
    font-size: 2.5rem !important;
}
.section-subtitle-about{
    font-size: 1.1rem;
    font-weight:200;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0);
}

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

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

.nav-logo img {
    height: 57px;
    width: auto;
    max-width: 161px;
}

.nav-logo h2 {
    color: #1b2a41;
    margin: 0;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #333;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: #934713;
}

.nav-link.active {
    color: #934713;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #934713;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

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

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

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
    color: #934713;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

/* Hero Section with Building Animation */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(27, 42, 65, 0.95), rgba(147, 71, 19, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

/* Building Animation Elements */
.buildings {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
}

.building {
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(27, 42, 65, 0.8), rgba(27, 42, 65, 0.9));
    animation: buildingRise 2s ease-out forwards;
    opacity: 0;
    transform: translateY(100%);
}

.building:nth-child(1) {
    left: 5%;
    width: 60px;
    height: 120px;
    animation-delay: 0.2s;
}

.building:nth-child(2) {
    left: 15%;
    width: 80px;
    height: 150px;
    animation-delay: 0.4s;
}

.building:nth-child(3) {
    left: 25%;
    width: 50px;
    height: 100px;
    animation-delay: 0.6s;
}

.building:nth-child(4) {
    right: 25%;
    width: 70px;
    height: 130px;
    animation-delay: 0.8s;
}

.building:nth-child(5) {
    right: 15%;
    width: 90px;
    height: 160px;
    animation-delay: 1s;
}

.building:nth-child(6) {
    right: 5%;
    width: 55px;
    height: 110px;
    animation-delay: 1.2s;
}

.building::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 20px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 8px,
        rgba(147, 71, 19, 0.3) 8px,
        rgba(147, 71, 19, 0.3) 12px
    );
}

.building::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 15px;
    background: rgba(147, 71, 19, 0.8);
}

.parallax {
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1.5s ease;
    z-index: 10;
    position: relative;
}

/* Floating Elements for Enhanced Effect */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 60px;
    height: 60px;
    background: rgba(147, 71, 19, 0.2);
    border-radius: 50%;
    animation: floatUp 8s ease-in-out infinite alternate;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    animation: floatUp 10s ease-in-out infinite alternate;
}

.floating-icon:nth-child(1) {
    top: 15%;
    right: 10%;
    animation-delay: 2s;
}

.floating-icon:nth-child(2) {
    top: 25%;
    right: 20%;
    animation-delay: 4s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 15%;
    animation-delay: 6s;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #934713;
    color: white;
}

.btn-primary:hover {
    background: #1b2a41;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #934713;
}

.btn-outline {
    background: transparent;
    color: #934713;
    border: 2px solid #934713;
}

.btn-outline:hover {
    background: #934713;
    color: white;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 3rem 0;
}

.section:nth-child(even) {
    background: #2c3e50;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.services-title{
    color: white !important;
}
.section-header h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}
.success-title{
    color:#fff !important;
}
.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced About Section */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.visual-element {
    text-align: center;
    position: relative;
}

.legal-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #934713, #1b2a41);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse 3s ease-in-out infinite;
}

.legal-icon-large i {
    font-size: 3rem;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #934713;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.about-content {
    text-align: left;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(147, 71, 19, 0.05);
    border-radius: 15px;
    border-left: 4px solid #934713;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(147, 71, 19, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #934713, #1b2a41);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h4 {
    color: #1b2a41;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.about-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Professional Who We Help Section */
.who-we-help {
    background: linear-gradient(135deg, #1b2a41 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.who-we-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(147,71,19,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.who-we-help .section-header {
    position: relative;
    z-index: 2;
}

.who-we-help .section-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.who-we-help .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.help-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #934713, #1b2a41);
}

.help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: white;
}

.help-icon {
    width: 64px;
    height: 64px;
    background: #934713;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.help-icon i {
    font-size: 1.8rem;
    color: white;
    z-index: 2;
    position: relative;
}

.help-card h3 {
    color: #1b2a41;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

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

/* Modern Industries Section */
.industries-preview {
    background: linear-gradient(135deg, #ffffff 0%, #cdcdcd 100%);
    position: relative;
    overflow: hidden;
}

.industries-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="industries-grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(147,71,19,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23industries-grid)"/></svg>');
    opacity: 0.4;
}

.industries-preview .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.industries-preview .section-header h2 {
    color: #1b2a41;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.industries-preview .section-header p {
    color: #1b2a41
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.industry-tag {
    background:#1b2a41;
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.industry-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #934713, #1b2a41);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-tag:hover {
    background: white;
    color: #934713;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.industry-tag:hover::before {
    opacity: 1;
}

.industries-note {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.industries-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #934713, #1b2a41);
    border-radius: 20px 20px 0 0;
}

.industries-note strong {
    color: #934713;
    font-size: 1.1rem;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #934713, #1b2a41);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #934713, #1b2a41);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

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

.service-link {
    color: #934713;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.service-link:hover {
    color: #1b2a41;
}





/* Case Studies */
.case-study-highlight {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.case-study-highlight h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1b2a41, #934713);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Modern Service Pages */
.service-hero {
    background: 
        linear-gradient(135deg, rgba(27, 42, 65, 0.8) 0%, rgba(44, 62, 80, 0.7) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><radialGradient id="warmLight" cx="0.3" cy="0.3"><stop offset="0%" stop-color="%23FFE4B5" stop-opacity="0.6"/><stop offset="100%" stop-color="%23DEB887" stop-opacity="0.3"/></radialGradient></defs><rect width="1200" height="800" fill="url(%23warmLight)"/><g opacity="0.8"><ellipse cx="150" cy="200" rx="60" ry="80" fill="%23CD853F" opacity="0.4" transform="rotate(-15 150 200)"/><rect x="120" y="160" width="60" height="8" rx="4" fill="%23A0522D" opacity="0.6"/><circle cx="150" cy="140" r="25" fill="%23DEB887" opacity="0.5"/><rect x="100" y="300" width="80" height="120" rx="8" fill="%23F5DEB3" opacity="0.3"/><rect x="110" y="320" width="60" height="4" fill="%23CD853F" opacity="0.4"/><rect x="110" y="340" width="60" height="4" fill="%23CD853F" opacity="0.4"/><rect x="110" y="360" width="60" height="4" fill="%23CD853F" opacity="0.4"/></g><g opacity="0.6"><ellipse cx="800" cy="300" rx="70" ry="90" fill="%23DEB887" opacity="0.4" transform="rotate(20 800 300)"/><rect x="770" y="260" width="70" height="10" rx="5" fill="%23A0522D" opacity="0.5"/><circle cx="800" cy="220" r="30" fill="%23F5DEB3" opacity="0.4"/><rect x="950" y="400" width="100" height="150" rx="10" fill="%23F5DEB3" opacity="0.2"/><rect x="960" y="420" width="80" height="5" fill="%23CD853F" opacity="0.3"/><rect x="960" y="450" width="80" height="5" fill="%23CD853F" opacity="0.3"/></g><g opacity="0.5"><ellipse cx="400" cy="600" rx="50" ry="70" fill="%23CD853F" opacity="0.3" transform="rotate(-30 400 600)"/><rect x="380" y="570" width="50" height="6" rx="3" fill="%23A0522D" opacity="0.4"/></g></svg>'),
        radial-gradient(circle at 20% 80%, rgba(255, 228, 181, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(222, 184, 135, 0.1) 0%, transparent 50%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover, 100% 100%, 100% 100%, 100% 100%;
    background-position: center, center, center, center;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="courthouse-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="none"/><path d="M20 80h60v5H20z" fill="%23334455" opacity="0.1"/><path d="M30 50h40v30H30z" fill="none" stroke="%23445566" stroke-width="0.5" opacity="0.1"/><path d="M35 55h30M35 60h25M35 65h30M35 70h20" stroke="%23556677" stroke-width="0.3" opacity="0.1"/><circle cx="50" cy="30" r="3" fill="%23667788" opacity="0.1"/></pattern></defs><rect width="200" height="200" fill="url(%23courthouse-pattern)"/></svg>');
    opacity: 0.2;
}

.service-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: 
        linear-gradient(to top, rgba(27, 42, 65, 0.8), transparent),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0 10 Q25 0 50 10 T100 10 V20 H0 Z" fill="%23934713" opacity="0.1"/></svg>');
    background-size: cover, 100px 20px;
    background-position: center bottom, center bottom;
}

/* Animated Background Particles */
.service-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(147, 71, 19, 0.4);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(odd) {
    background: rgba(255, 255, 255, 0.3);
    animation-duration: 20s;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: -2s; }
.particle:nth-child(3) { left: 30%; animation-delay: -4s; }
.particle:nth-child(4) { left: 40%; animation-delay: -6s; }
.particle:nth-child(5) { left: 50%; animation-delay: -8s; }
.particle:nth-child(6) { left: 60%; animation-delay: -10s; }
.particle:nth-child(7) { left: 70%; animation-delay: -12s; }
.particle:nth-child(8) { left: 80%; animation-delay: -14s; }
.particle:nth-child(9) { left: 90%; animation-delay: -16s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Enhanced Floating Elements */
.service-floating-element {
    position: absolute;
    color: rgba(147, 71, 19, 0.2);
    font-size: 2.5rem;
    z-index: 1;
    animation: floatEnhanced 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes floatEnhanced {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-20px) rotate(5deg) scale(1.1);
    }
    50% {
        transform: translateY(-10px) rotate(-3deg) scale(0.95);
    }
    75% {
        transform: translateY(-25px) rotate(8deg) scale(1.05);
    }
}

.service-hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
}

/* Floating Legal Elements for Service Pages */
.service-floating-element {
    position: absolute;
    color: rgba(147, 71, 19, 0.15);
    font-size: 2rem;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.service-floating-element:nth-child(2) {
    top: 15%;
    left: 10%;
    animation-delay: -1s;
}

.service-floating-element:nth-child(3) {
    top: 25%;
    right: 15%;
    animation-delay: -2s;
}

.service-floating-element:nth-child(4) {
    bottom: 30%;
    left: 15%;
    animation-delay: -3s;
}

.service-floating-element:nth-child(5) {
    bottom: 20%;
    right: 10%;
    animation-delay: -4s;
}

.service-floating-element:nth-child(6) {
    top: 40%;
    left: 5%;
    animation-delay: -2.5s;
}

.service-floating-element:nth-child(7) {
    top: 60%;
    right: 8%;
    animation-delay: -1.5s;
}

.service-icon-large {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #934713, #1b2a41);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulseEnhanced 4s ease-in-out infinite;
    position: relative;
    box-shadow: 0 0 40px rgba(147, 71, 19, 0.4);
}

.service-icon-large::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(147, 71, 19, 0.3);
    border-radius: 50%;
    animation: ripple 3s ease-out infinite;
}

.service-icon-large::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(147, 71, 19, 0.2);
    border-radius: 50%;
    animation: ripple 3s ease-out infinite 1s;
}

@keyframes pulseEnhanced {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 40px rgba(147, 71, 19, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 60px rgba(147, 71, 19, 0.6);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

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

.service-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.service-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #934713, #1b2a41);
    border-radius: 2px;
    animation: expandLine 1.5s ease-out 0.5s both;
}

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

@keyframes expandLine {
    0% {
        width: 0;
    }
    100% {
        width: 100px;
    }
}

.service-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
    transition: all 0.3s ease;
    animation: slideInStats 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.6s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@keyframes slideInStats {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Service Overview Section */
.service-overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-matters {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.why-matters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #934713, #1b2a41);
}

.why-matters h2 {
    color: #1b2a41;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.why-matters p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(147, 71, 19, 0.1), rgba(27, 42, 65, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #934713;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-box i {
    font-size: 1.5rem;
    color: #934713;
    margin-top: 0.2rem;
}

.highlight-box p {
    margin: 0;
    color: #2c3e50;
    font-weight: 500;
}

.what-we-do {
    background: linear-gradient(135deg, #1b2a41 0%, #2c3e50 100%);
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="service-pattern" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(147,71,19,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23service-pattern)"/></svg>');
    opacity: 0.4;
}

.what-we-do h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background: white;
}

.service-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #934713, #1b2a41);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.service-item-content h3 {
    color: #1b2a41;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-item-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="process-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(27,42,65,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23process-grid)"/></svg>');
    opacity: 0.5;
}

.process-section .section-header {
    position: relative;
    z-index: 2;
}

.process-section .section-header h2 {
    color: #1b2a41;
    font-size: 2.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.process-step {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #934713, #1b2a41);
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #934713, #1b2a41);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: #1b2a41;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #1b2a41;
    color: white;
    padding: 3rem 0 1rem;
}

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

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

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #934713;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.seo-footer {
    font-size: 0.9rem;
    font-style: italic;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        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;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .help-card {
        padding: 2rem;
    }

    .who-we-help .section-header h2 {
        font-size: 2rem;
    }



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

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

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .about-cta {
        flex-direction: column;
    }

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

    .industry-tag {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .industries-preview .section-header h2 {
        font-size: 2rem;
    }

    .industries-note {
        padding: 1.5rem;
    }

    .parallax {
        background-attachment: scroll;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .section {
        padding: 3rem 0;
    }

    .service-hero {
        min-height: 50vh;
        padding: 2rem 0;
    }

    .service-hero h1 {
        font-size: 2.2rem;
    }

    .service-hero p {
        font-size: 1.1rem;
    }

    .service-icon-large {
        width: 90px;
        height: 90px;
    }

    .service-icon-large i {
        font-size: 2.2rem;
    }

    .service-overview {
        gap: 2rem;
    }

    .why-matters,
    .what-we-do {
        padding: 2rem;
    }

    .why-matters h2,
    .what-we-do h2 {
        font-size: 1.8rem;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        padding: 2rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
        min-width: 100px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .service-floating-element {
        display: none;
    }

    .service-particles {
        display: none;
    }

    .service-icon-large {
        width: 100px;
        height: 100px;
    }

    .service-icon-large i {
        font-size: 2.5rem;
    }
}

/* Hero Background Decorative Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
    filter: blur(0px);
}

.bg-shape-1 {
    top: 5%;
    left: 2%;
    width: 300px;
    height: 300px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(147, 71, 19, 0.4) 0%, transparent 70%),
        linear-gradient(45deg, rgba(147, 71, 19, 0.3), rgba(27, 42, 65, 0.2));
    border-radius: 50%;
    animation-delay: 0s;
}

.bg-shape-2 {
    top: 30%;
    right: 5%;
    width: 250px;
    height: 250px;
    background: 
        linear-gradient(135deg, rgba(27, 42, 65, 0.4), rgba(147, 71, 19, 0.2)),
        radial-gradient(circle at 70% 70%, rgba(147, 71, 19, 0.3) 0%, transparent 60%);
    transform: rotate(45deg);
    border-radius: 30px;
    animation-delay: -5s;
}

.bg-shape-3 {
    bottom: 10%;
    left: 15%;
    width: 180px;
    height: 180px;
    background: 
        linear-gradient(90deg, rgba(147, 71, 19, 0.4), rgba(27, 42, 65, 0.3)),
        radial-gradient(circle at 50% 50%, rgba(147, 71, 19, 0.2) 0%, transparent 80%);
    border-radius: 20px;
    animation-delay: -10s;
}

.bg-building {
    position: absolute;
    opacity: 0.7;
    animation: sway 25s ease-in-out infinite;
}

.bg-building-1 {
    bottom: 0;
    left: 8%;
    width: 120px;
    height: 300px;
    background: 
        linear-gradient(to top, rgba(27, 42, 65, 0.6) 0%, rgba(27, 42, 65, 0.3) 60%, transparent 100%),
        linear-gradient(to right, rgba(147, 71, 19, 0.1) 0%, transparent 50%);
    animation-delay: 0s;
    border-radius: 0 0 5px 5px;
}

.bg-building-1::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 15px;
    right: 15px;
    height: 6px;
    background: rgba(147, 71, 19, 0.4);
    border-radius: 3px;
}

.bg-building-1::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: rgba(147, 71, 19, 0.3);
    border-radius: 2px;
}

.bg-building-2 {
    bottom: 0;
    right: 12%;
    width: 90px;
    height: 240px;
    background: 
        linear-gradient(to top, rgba(147, 71, 19, 0.6) 0%, rgba(147, 71, 19, 0.3) 60%, transparent 100%),
        linear-gradient(to left, rgba(27, 42, 65, 0.1) 0%, transparent 50%);
    animation-delay: -8s;
    border-radius: 0 0 8px 8px;
}

.bg-building-2::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 12px;
    right: 12px;
    height: 5px;
    background: rgba(27, 42, 65, 0.4);
    border-radius: 2px;
}

.bg-building-2::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 15px;
    right: 15px;
    height: 3px;
    background: rgba(27, 42, 65, 0.3);
    border-radius: 1px;
}

.bg-shape-4 {
    top: 60%;
    right: 25%;
    width: 160px;
    height: 160px;
    background: 
        radial-gradient(circle at 60% 40%, rgba(147, 71, 19, 0.3) 0%, transparent 70%),
        linear-gradient(60deg, rgba(27, 42, 65, 0.3), rgba(147, 71, 19, 0.2));
    border-radius: 50%;
    animation-delay: -15s;
}

.bg-building-3 {
    bottom: 0;
    left: 75%;
    width: 70px;
    height: 180px;
    background: 
        linear-gradient(to top, rgba(27, 42, 65, 0.5) 0%, rgba(27, 42, 65, 0.2) 70%, transparent 100%);
    animation-delay: -12s;
    border-radius: 0 0 4px 4px;
}

.bg-legal-symbols {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.symbol {
    position: absolute;
    font-size: 4rem;
    opacity: 0.4;
    animation: symbolFloat 30s ease-in-out infinite;
    color: #934713;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 0 10px rgba(147, 71, 19, 0.3));
}

.symbol-1 {
    top: 20%;
    left: 25%;
    animation-delay: 0s;
}

.symbol-2 {
    top: 70%;
    right: 30%;
    animation-delay: -7s;
}

.symbol-3 {
    top: 35%;
    left: 70%;
    animation-delay: -14s;
}

.symbol-4 {
    bottom: 40%;
    left: 40%;
    animation-delay: -21s;
}

@keyframes symbolFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.1;
    }
    25% {
        transform: translateY(-30px) rotate(5deg) scale(1.1);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-15px) rotate(-3deg) scale(0.9);
        opacity: 0.08;
    }
    75% {
        transform: translateY(-40px) rotate(8deg) scale(1.05);
        opacity: 0.12;
    }
}

/* High Contrast Legal Icons */
.hero-legal-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.legal-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(147, 71, 19, 0.7);
    border: 3px solid rgba(147, 71, 19, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconFloat 25s ease-in-out infinite;
    backdrop-filter: blur(3px);
    box-shadow: 0 4px 15px rgba(147, 71, 19, 0.4);
}

.legal-icon i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.icon-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 12%;
    animation-delay: -5s;
}

.icon-3 {
    bottom: 35%;
    left: 20%;
    animation-delay: -10s;
}

.icon-4 {
    bottom: 25%;
    right: 25%;
    animation-delay: -15s;
}

.icon-5 {
    top: 50%;
    left: 85%;
    animation-delay: -20s;
}

.icon-6 {
    top: 70%;
    left: 10%;
    animation-delay: -12s;
}

.icon-7 {
    top: 35%;
    right: 5%;
    animation-delay: -8s;
}

/* Document Background */
.document-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.doc-paper {
    position: absolute;
    background: rgba(255, 248, 220, 0.8);
    border: 1px solid rgba(222, 184, 135, 0.6);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: paperFloat 30s ease-in-out infinite;
}

.doc-1 {
    top: 20%;
    right: 8%;
    width: 120px;
    height: 160px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.doc-1::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 15px;
    right: 15px;
    height: 3px;
    background: rgba(147, 71, 19, 0.4);
    border-radius: 2px;
}

.doc-1::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: rgba(147, 71, 19, 0.3);
    border-radius: 1px;
}

.doc-2 {
    bottom: 30%;
    left: 5%;
    width: 100px;
    height: 140px;
    transform: rotate(-20deg);
    animation-delay: -10s;
}

.doc-2::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: rgba(147, 71, 19, 0.4);
    border-radius: 1px;
}

.doc-3 {
    top: 60%;
    right: 20%;
    width: 90px;
    height: 120px;
    transform: rotate(25deg);
    animation-delay: -20s;
}

@keyframes paperFloat {
    0%, 100% {
        transform: translateY(0px) rotate(15deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(20deg) scale(1.02);
    }
    50% {
        transform: translateY(-8px) rotate(10deg) scale(0.98);
    }
    75% {
        transform: translateY(-20px) rotate(22deg) scale(1.01);
    }
}

/* Modern What We Do Section */
.what-we-do-modern {
    background: 
    linear-gradient(135deg, #1b2a41 0%, #2c3e50 100%);
   
    padding: 5rem 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), inset 0 -1px 0 rgba(0,0,0,0.05);
}

.what-we-do-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1b2a41 0%, #934713 100%);
    z-index: 1;
}



/* Geometric Background Elements */
.bg-geometric-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    background: rgba(27, 42, 65, 0.02);
    border: 1px solid rgba(27, 42, 65, 0.05);
}

.geo-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    transform: rotate(45deg);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.geo-2 {
    top: 20%;
    right: 8%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(147, 71, 19, 0.03);
    border: 1px solid rgba(147, 71, 19, 0.08);
}

.geo-3 {
    bottom: 15%;
    left: 10%;
    width: 100px;
    height: 60px;
    transform: rotate(-15deg);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.geo-4 {
    bottom: 25%;
    right: 15%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(27, 42, 65, 0.02);
    background: transparent;
    border: none;
}

.modern-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.modern-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 248, 220, 0.9);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.header-accent {
    width: 80px;
    height: 4px;
    background: 
        
    margin: 0 auto;
    position: relative;
}

.header-accent::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 8px;
    background: #934713;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.modern-service-card {
    background: #ffffff;
    border: none;
    box-shadow: 0 8px 32px rgba(27, 42, 65, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0;
    padding: 2.5rem;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1b2a41 0%, #934713 100%);
    z-index: 1;
}

.modern-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(27, 42, 65, 0.15);
}

.modern-service-card:hover::after {
    transform: scaleX(1);
}

.modern-service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #934713 0%, #1b2a41 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(27, 42, 65, 0.3);
    line-height: 1;
    z-index: 0;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1b2a41 0%, #934713 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.card-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.modern-service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1b2a41;
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.card-divider {
    width: 50px;
    height: 2px;
    background: #934713;
    margin: 1rem 0 1.5rem 0;
    position: relative;
}

.card-divider::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -1px;
    width: 6px;
    height: 4px;
    background: #934713;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.modern-service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    position: relative;
    z-index: 2;
}

.timeline {
    background: rgba(147, 71, 19, 0.1);
    color: #934713;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(147, 71, 19, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .modern-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .modern-service-card {
        padding: 2rem;
    }

    .modern-header h2 {
        font-size: 2.5rem;
    }

    .card-number {
        font-size: 3rem;
        top: -5px;
        right: 15px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }
}

/* Professional Hero Section */
.professional-hero {
    background: linear-gradient(135deg, #1b2a41 0%, #2c3e50 50%, #34495e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23934713" stroke-width="0.3" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(147, 71, 19, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(147, 71, 19, 0.05) 0%, transparent 50%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147, 71, 19, 0.2);
    color: #934713;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(147, 71, 19, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.title-highlight {
    color: #934713;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-main {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: #934713;
    font-size: 1.2rem;
    width: 20px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-hero.primary {
    background: #934713;
    color: #ffffff;
    border-color: #934713;
}

.btn-hero.primary:hover {
    background: #7a3a0f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 71, 19, 0.4);
}

.btn-hero.secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-hero.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #934713;
    color: #934713;
}

.hero-stats-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 0;
    position: relative;
}

.hero-stats-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #934713 0%, #1b2a41 100%);
}

.stats-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.stat-card {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #934713;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.stat-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

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

.bg-element {
    position: absolute;
    background: rgba(147, 71, 19, 0.05);
    animation: heroElementFloat 20s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation-delay: -7s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    width: 120px;
    height: 60px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation-delay: -14s;
}

@keyframes heroElementFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    25% { transform: translateY(-20px) scale(1.1); opacity: 0.5; }
    50% { transform: translateY(-10px) scale(0.9); opacity: 0.2; }
    75% { transform: translateY(-25px) scale(1.05); opacity: 0.4; }
}

/* Success Highlights */
.success-highlights {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(27, 42, 65, 0.05);
    border-left: 3px solid #934713;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: 0;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item i {
    color: #934713;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.highlight-item span {
    color: #1b2a41;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Value Proposition Section */
.value-proposition {
    padding: 6rem 0;
    background: #1b2a41;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147, 71, 19, 0.2);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(147, 71, 19, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.value-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.value-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.risk-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.risk-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255);
    border-left: 4px solid #ff6b6b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.risk-item i {
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.risk-content h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.risk-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

.protection-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1b2a41 0%, #2c3e50 100%);
    color: #ffffff;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: #934713;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.highlight-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.value-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.protection-shield {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-center {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1b2a41 0%, #934713 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 3;
    position: relative;
}

.shield-center i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.shield-center span {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.shield-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    animation: shieldPulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 160px;
    height: 160px;
    border-color: rgba(147, 71, 19, 0.3);
    animation-delay: 0s;
}

.ring-2 {
    width: 220px;
    height: 220px;
    border-color: rgba(27, 42, 65, 0.2);
    animation-delay: -1s;
}

.ring-3 {
    width: 280px;
    height: 280px;
    border-color: rgba(147, 71, 19, 0.1);
    animation-delay: -2s;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.3; }
}

.verification-stats {
    display: flex;
    gap: 2rem;
}

.verification-item {
    text-align: center;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #eee;
    min-width: 120px;
}

.verification-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1b2a41;
    margin-bottom: 0.5rem;
}

.verification-label {
    color: #666;
    font-size: 0.9rem;
}

/* Revenue Verification Benefits Section */
.revenue-benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1b2a41 0%, #2c3e50 100%);
    position: relative;
    color: #ffffff;
}

.benefits-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.benefits-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.benefits-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.benefits-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.critical-protections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.protection-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.protection-icon {
    width: 60px;
    height: 60px;
    background: #934713;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.protection-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.protection-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.verification-value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.value-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.value-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.value-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.value-metric {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: #934713;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.metric-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.metric-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.verification-guarantee {
    background: linear-gradient(135deg, #934713 0%, #7a3a0f 100%);
    padding: 1.5rem;
    text-align: center;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.verification-guarantee p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0;
}

/* Mobile Responsiveness for Revenue Benefits */
@media (max-width: 768px) {
    .benefits-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-left h2 {
        font-size: 2rem;
    }
    
    .protection-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .verification-value-card {
        padding: 2rem;
    }
    
    .value-metric {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1.5rem;
    }
}

/* Business Impact Section */
.business-impact-section {
    padding: 6rem 0;
    background: #f8f9fa;
    position: relative;
}

.impact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.impact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1b2a41;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

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

.impact-card {
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.impact-card.primary {
    border-color: #1b2a41;
}

.impact-card.secondary {
    border-color: #934713;
}

.impact-card.tertiary {
    border-color: #28a745;
}

.impact-card.quaternary {
    border-color: #17a2b8;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.impact-header-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1b2a41 0%, #934713 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
}

.impact-metric {
    text-align: right;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #1b2a41;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.impact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b2a41;
    margin-bottom: 1rem;
}

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

.impact-outcome {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 600;
}

.impact-outcome i {
    font-size: 1rem;
}

.impact-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #1b2a41 0%, #2c3e50 100%);
    padding: 2rem;
    color: #ffffff;
}

.summary-content {
    flex-grow: 1;
    margin-right: 2rem;
}

.summary-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.summary-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.btn-impact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #934713;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #934713;
}

.btn-impact:hover {
    background: #7a3a0f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 71, 19, 0.4);
}

/* Mobile Responsiveness for Business Impact */
@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-summary {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .summary-content {
        margin-right: 0;
    }
    
    .impact-header-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .impact-metric {
        text-align: left;
    }
}

/* Modern Split Hero Section */
.split-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1b2a41 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 80px);
}

.hero-left {
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(27, 42, 65, 0.95) 0%, rgba(44, 62, 80, 0.95) 100%);
}

.hero-right {
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
}

.professional-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #934713 0%, #b8611a 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(147, 71, 19, 0.3);
}

.hero-title {
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-primary {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-secondary {
    display: block;
    font-size: 2.2rem;
    font-weight: 400;
    color: #ffd700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.guarantee-strip {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-weight: 500;
}

.guarantee-item i {
    width: 24px;
    height: 24px;
    background: #934713;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #ffffff;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #934713 0%, #b8611a 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(147, 71, 19, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(147, 71, 19, 0.4);
    background: linear-gradient(135deg, #b8611a 0%, #934713 100%);
}

.quick-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.performance-dashboard {
    width: 100%;
    max-width: 500px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-header h3 {
    color: #1b2a41;
    font-size: 1.3rem;
    font-weight: 700;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #666;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #28a745;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-left: 4px solid;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.metric-card.primary { border-color: #1b2a41; }
.metric-card.success { border-color: #28a745; }
.metric-card.warning { border-color: #934713; }

.metric-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.metric-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1b2a41 0%, #934713 100%);
    color: #ffffff;
    font-size: 1.2rem;
}

.metric-data {
    flex: 1;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1b2a41;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
}

.metric-trend.positive { color: #28a745; }
.metric-trend.neutral { color: #17a2b8; }

.certification-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #1b2a41 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 1.5rem;
}

.cert-icon {
    width: 50px;
    height: 50px;
    background: #934713;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cert-text h4 {
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.cert-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 0;
}

/* Problem Statement Section */
.problem-statement-section {
    padding: 6rem 0;
    background: #ffffff;
    border-top: 4px solid #1b2a41;

}

.problem-header {
    text-align: center;
    margin-bottom: 4rem;

}

.warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.problem-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1b2a41;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

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

.problem-card {
    background: #ffffff;
    border: 2px solid;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card.severe {
    border-color: #dc3545;
}

.problem-card.critical {
    border-color: #fd7e14;
}

.problem-card.moderate {
    border-color: #ffc107;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.problem-header-card {
    padding: 2rem 2rem 1rem;
    position: relative;
}

.problem-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1b2a41 0%, #934713 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-header-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b2a41;
    margin-bottom: 1rem;
}

.severity-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.severity-badge.severe { background: #dc3545; }
.severity-badge.critical { background: #fd7e14; }
.severity-badge.moderate { background: #ffc107; color: #1b2a41; }

.problem-list {
    padding: 0 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.problem-item i {
    color: #dc3545;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.impact-stat {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #1b2a41 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.solution-highlight {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 3rem;
    color: #ffffff;
}

.solution-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.solution-text {
    flex: 1;
}

.solution-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.solution-text p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.btn-solution {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #ffffff;
    color: #28a745;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-solution:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

/* Crisis Statement Section */
.crisis-statement-section {
    padding: 6rem 0;
    background: #ffffff;
}

.crisis-header {
    text-align: center;
    margin-bottom: 4rem;
}

.crisis-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.crisis-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1b2a41;
    margin-bottom: 1rem;
    line-height: 1.2;
}

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

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

.crisis-card {
    background: #ffffff;
    border: 2px solid;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.crisis-card.payment {
    border-color: #dc3545;
}

.crisis-card.documentation {
    border-color: #fd7e14;
}

.crisis-card.coordination {
    border-color: #ffc107;
}

.crisis-card.compliance {
    border-color: #fd7e14;
}

.crisis-card.update {
    border-color: #ffc107;
}

.crisis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.crisis-header-card {
    padding: 2rem 2rem 1rem;
    position: relative;
}

.crisis-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1b2a41 0%, #934713 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.crisis-header-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b2a41;
    margin-bottom: 1rem;
}

.crisis-list {
    padding: 0 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.crisis-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.crisis-item i {
    color: #dc3545;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Professional Services Section */
.professional-services-section {
    padding: 6rem 0;
    background: #1b2a41;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-category {
    background: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-category.primary-category {
    border-color: #1b2a41;
}

.service-category.secondary-category {
    border-color: #934713;
}

.service-category.tertiary-category {
    border-color: #28a745;
}

.service-category.quaternary-category {
    border-color: #17a2b8;
}

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

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1b2a41 0%, #934713 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.category-title h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b2a41;
    margin-bottom: 0.3rem;
}

.category-title p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-detail {
    padding: 1rem;
    background: rgba(27, 42, 65, 0.05);
    border: 1px solid rgba(27, 42, 65, 0.1);
}

.service-detail h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1b2a41;
    margin-bottom: 0.5rem;
}

.service-detail p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.9rem;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .split-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-left,
    .hero-right {
        padding: 3rem 2rem;
    }
    
    .title-primary {
        font-size: 2.5rem;
    }
    
    .title-secondary {
        font-size: 1.8rem;
    }
    
    .problems-grid,
    .crisis-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-category {
        padding: 2rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .problem-header h2 {
        font-size: 2rem;
    }
    
    .metric-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Mobile Responsiveness for Professional Hero */
@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-hero {
        justify-content: center;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .verification-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .protection-shield {
        width: 250px;
        height: 250px;
    }
}

/* Modern Process Section */
.modern-process-section {
    background: 
    radial-gradient(circle at 20% 20%, rgba(27, 42, 65, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(147, 71, 19, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 40% 60%, rgba(27, 42, 65, 0.02) 0%, transparent 25%),
    linear-gradient(135deg, rgba(248, 249, 250, 1) 0%, rgba(240, 244, 248, 1) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.modern-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #934713 0%, #1b2a41 100%);
    z-index: 2;
}

.modern-process-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1b2a41 0%, #934713 100%);
    z-index: 2;
}

/* Process Background Elements */
.process-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.process-geo {
    position: absolute;
    background: rgba(147, 71, 19, 0.08);
    border: 1px solid rgba(147, 71, 19, 0.15);
}

.process-geo-1 {
    top: 15%;
    left: 8%;
    width: 100px;
    height: 100px;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: processGeoFloat 20s ease-in-out infinite;
}

.process-geo-2 {
    top: 60%;
    right: 10%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: processGeoFloat 25s ease-in-out infinite reverse;
}

.process-geo-3 {
    bottom: 20%;
    left: 15%;
    width: 120px;
    height: 60px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 100%, 25% 100%, 0% 75%);
    animation: processGeoFloat 30s ease-in-out infinite;
}

@keyframes processGeoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); opacity: 0.6; }
    25% { transform: translateY(-20px) rotate(5deg) scale(1.1); opacity: 0.8; }
    50% { transform: translateY(-10px) rotate(-5deg) scale(0.9); opacity: 0.4; }
    75% { transform: translateY(-25px) rotate(8deg) scale(1.05); opacity: 0.7; }
}

/* Process Header */
.modern-process-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.modern-process-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: ##1b2a41;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.process-header-accent {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #934713 0%, #ffffff 50%, #934713 100%);
    margin: 0 auto 2rem;
    position: relative;
}

.process-header-accent::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 10px;
    background: #934713;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.modern-process-header p {
    color: #1b2a41;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Process Flow */
.modern-process-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}



.risk-item {

}

.risk-item i {
    color: #dc3545;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.risk-content h4 {
    color: #1b2a41;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.risk-content p {
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.process-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-left: 4px solid #dc3545;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.process-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
   
}



.process-icon-wrapper {
    flex-shrink: 0;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #934713 0%, #1b2a41 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(147, 71, 19, 0.3);
}

.process-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.process-content {
    flex-grow: 1;
    position: relative;
}

.process-step-num {
    position: absolute;
    top: -10px;
    right: 0;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: ##1b2a41;
    margin-bottom: 0.5rem;
}

.process-content p {
    color: #666;
    line-height: 1.6;
}

.process-arrow {
    flex-shrink: 0;
    color: #934713;
    font-size: 1.5rem;
    animation: processArrowPulse 2s ease-in-out infinite;
}

.process-final .process-arrow {
    display: none;
}

@keyframes processArrowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(0px); }
    50% { opacity: 1; transform: translateX(5px); }
}

/* Mobile Process Responsiveness */
@media (max-width: 768px) {
    .modern-process-header h2 {
        font-size: 2.5rem;
    }

    .process-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .process-step-num {
        position: static;
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) scale(0.95);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-30px) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes sway {
    0%, 100% {
        transform: translateX(0px) scale(1);
    }
    50% {
        transform: translateX(10px) scale(1.02);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .help-card,
    .service-card,

    .case-study-highlight {
        padding: 2rem;
    }
}

/* Focus and Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #934713;
    outline-offset: 2px;
}

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
        color: #fff;
    }

    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes buildingRise {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 0.6;
        transform: translateY(-100px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(147, 71, 19, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(147, 71, 19, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(147, 71, 19, 0);
    }
}


/* Modal backdrop */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

/* Modal content container */
.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease;
}

/* Close button */
.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: #000;
}

/* Form input fields */
.modal-content input,
.modal-content textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.modal-content input:focus,
.modal-content textarea:focus {
  border-color: #3b82f6; /* Tailwind blue or your brand primary */
  outline: none;
}

/* Form buttons */
.modal-content button {
  width: 100%;
  background-color: #3b82f6; /* Your brand primary */
  color: #ffffff;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.modal-content button:hover {
  background-color: #2563eb; /* Darker shade on hover */
}

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

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

    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.process-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.process-arrow {
    flex-shrink: 0;
    color: #934713;
    font-size: 1.5rem;
    animation: processArrowPulse 2s ease-in-out infinite;
}

.process-final .process-arrow {
    display: none;
}

@keyframes processArrowPulse {
    0%, 100% { opacity: 0.6; transform: translateX(0px); }
    50% { opacity: 1; transform: translateX(5px); }
}

/* Mobile Process Responsiveness */
@media (max-width: 768px) {
    .modern-process-header h2 {
        font-size: 2.5rem;
    }
    
    .process-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .process-step-num {
        position: static;
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) scale(0.95);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-30px) scale(1.05);
        opacity: 0.7;
    }
}

@keyframes sway {
    0%, 100% {
        transform: translateX(0px) scale(1);
    }
    50% {
        transform: translateX(10px) scale(1.02);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .help-card,
    .service-card,

    .case-study-highlight {
        padding: 2rem;
    }
}

/* Focus and Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid #934713;
    outline-offset: 2px;
}

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
        color: #fff;
    }
    
    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes buildingRise {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 0.6;
        transform: translateY(-100px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(147, 71, 19, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(147, 71, 19, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(147, 71, 19, 0);
    }
}


/* Modal backdrop */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

/* Modal content container */
.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: slideIn 0.3s ease;
}

/* Close button */
.close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: #000;
}

/* Form input fields */
.modal-content input,
.modal-content textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.modal-content input:focus,
.modal-content textarea:focus {
  border-color: #3b82f6; /* Tailwind blue or your brand primary */
  outline: none;
}

/* Form buttons */
.modal-content button {
  width: 100%;
  background-color: #3b82f6; /* Your brand primary */
  color: #ffffff;
  padding: 0.9rem 1.2rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.modal-content button:hover {
  background-color: #2563eb; /* Darker shade on hover */
}

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

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

/* ==================== MODERN TESTIMONIALS PAGE STYLES ==================== */

/* Testimonials Hero Section */
.testimonials-hero {
    background: linear-gradient(135deg, #1b2a41 0%, rgba(27, 42, 65, 0.95) 100%);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.testimonials-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.testimonials-hero .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, #934713 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, #934713 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    animation: patternMove 20s linear infinite;
}

.testimonials-hero .hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.testimonials-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147, 71, 19, 0.2);
    border: 1px solid rgba(147, 71, 19, 0.3);
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    color: #934713;
    font-weight: 500;
}

.testimonials-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-hero p {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #934713;
    display: block;
    margin-bottom: 0.5rem;
}

.trust-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 500;
}

/* Featured Stories Section */
.featured-stories-section {
    padding: 6rem 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(27, 42, 65, 0.08);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(27, 42, 65, 0.15);
}

.story-card.primary {
    border-color: #1b2a41;
}

.story-card.secondary {
    border-color: #934713;
}

.story-card.accent {
    border-color: rgba(147, 71, 19, 0.5);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.client-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1b2a41, #934713);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-icon i {
    font-size: 1.5rem;
    color: white;
}

.client-info {
    flex-grow: 1;
}

.client-info h3 {
    color: #1b2a41;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.client-info p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.location {
    color: #934713;
    font-size: 0.9rem;
    font-weight: 500;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border: 1px solid #e9ecef;
}

.stars {
    color: #934713;
    font-size: 0.9rem;
}

.rating-badge span {
    font-weight: 600;
    color: #1b2a41;
}

.story-content {
    position: relative;
}

.quote-mark {
    position: absolute;
    top: -10px;
    left: -5px;
    font-size: 4rem;
    color: rgba(147, 71, 19, 0.2);
    line-height: 1;
    font-family: serif;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    font-style: italic;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.story-metrics {
    display: flex;
    gap: 2rem;
    padding-left: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #934713;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Client Categories Section */
.client-categories-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1b2a41 0%, rgba(27, 42, 65, 0.95) 100%);
    color:  #1b2a41 ;
}

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

.category-block {
    background: white;
    border: 2px solid #f8f9fa;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(27, 42, 65, 0.1);
    border-color: #934713;
}

.category-header {
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1b2a41, #934713);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.category-icon i {
    font-size: 1.3rem;
    color: white;
}

.client-categories-section .section-header h2 {
    color: white;
}

.client-categories-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.category-header h3 {
    color: #1b2a41 ;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-header p {
    color: #1b2a41 ;
    font-size: 0.95rem;
    line-height: 1.5;
}

.testimonial-mini p {
    font-style: italic;
    color: #1b2a41 ;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.mini-author strong {
    color:  #1b2a41 ;
    font-weight: 600;
    display: block;
    font-size: 0.9rem;
}

.mini-author span {
    color: #934713;
    font-size: 0.85rem;
}

/* Results & Impact Section */
.results-impact-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.impact-card {
    background: white;
    padding: 2.5rem;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 42, 65, 0.1);
    border-color: #934713;
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1b2a41, #934713);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.impact-icon i {
    font-size: 1.5rem;
    color: white;
}

.impact-content h3 {
    color: #1b2a41;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.impact-stat {
    margin-bottom: 1rem;
}

.impact-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #934713;
    display: block;
    line-height: 1;
}

.impact-stat .stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.impact-content > p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.client-quote {
    background: rgba(147, 71, 19, 0.05);
    padding: 1rem;
    border-left: 3px solid #934713;
    margin-top: 1.5rem;
}

.client-quote p {
    font-style: italic;
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.client-quote span {
    color: #934713;
    font-weight: 500;
    font-size: 0.85rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonials-hero h1 {
        font-size: 2.5rem;
    }

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

    .story-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .story-metrics {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .impact-stat .stat-number {
        font-size: 2rem;
    }
}

/* ===== MODERN FAQ PAGE STYLES ===== */

/* FAQ Hero Section */
.faq-hero {
    position: relative;
    background: linear-gradient(135deg, #1b2a41 0%, #2c3e50 100%);
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.faq-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.faq-hero .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 20px
    );
}

.faq-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.faq-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147, 71, 19, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.faq-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-search {
    margin-top: 2rem;
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 2;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: none;
    border-radius: 3rem;
    background: white;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* FAQ Categories Navigation */
.faq-nav-section {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid #e1e5e9;
    color: #666;
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-btn i {
    font-size: 1rem;
}

.category-btn:hover,
.category-btn.active {
    background: #1b2a41;
    color: white;
    border-color: #1b2a41;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 42, 65, 0.3);
}

/* FAQ Content Sections */
.faqs-content-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.faq-category-content {
    display: none;
    max-width: 900px;
    margin: 0 auto;
}

.faq-category-content.active {
    display: block;
    animation: fadeInUp 0.6s ease forwards;
}

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

.faq-category-content h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1b2a41;
    margin-bottom: 3rem;
    position: relative;
}

.faq-category-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #934713, #1b2a41);
    border-radius: 2px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: linear-gradient(90deg, rgba(27, 42, 65, 0.02) 0%, rgba(147, 71, 19, 0.02) 100%);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(27, 42, 65, 0.05) 0%, rgba(147, 71, 19, 0.05) 100%);
    border-left-color: #934713;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1b2a41;
    line-height: 1.4;
    margin: 0;
}

.faq-question i {
    color: #934713;
    font-size: 1rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    padding-top: 0;
}

.faq-answer a {
    color: #934713;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.faq-answer a:hover {
    color: #1b2a41;
    border-bottom-color: #934713;
    text-decoration: none;
    transform: translateY(-1px);
}

.faq-answer a:visited {
    color: #934713;
}

/* Contact FAQ Section */
.contact-section {
    background: linear-gradient(135deg, #1b2a41 0%, #2c3e50 100%);
    color: white;
    padding: 4rem 0;
}

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

.contact-faq-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.contact-faq-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(147, 71, 19, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: white;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-details p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.contact-details span {
    font-size: 0.85rem;
    opacity: 0.7;
    font-style: italic;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-hero {
        padding: 4rem 0 3rem;
    }

    .faq-hero h1 {
        font-size: 2.5rem;
    }

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

    .faq-categories {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .category-btn span {
        display: none;
    }

    .faq-category-content h2 {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }

    .contact-faq {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-faq-content h2 {
        font-size: 2rem;
    }

    .contact-options {
        flex-direction: column;
    }

    .contact-item {
        padding: 1rem;
    }
}

/* ===== MODERN ABOUT PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #1b2a41 0%, #2c3e50 100%);
    padding: 8rem 0 5rem;
    margin-top: 70px;
    overflow: hidden;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.about-hero .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 20px
    );
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147, 71, 19, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #934713;
    display: block;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Vision & Mission Section */
.vision-mission {
    background: #f8f9fa;
    padding: 5rem 0;
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-card,
.mission-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1b2a41, #934713);
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1b2a41, #2c3e50);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-header .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.card-header h2 {
    color: #1b2a41;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.vision-card p,
.mission-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

/* Our Story Section */
.our-story {
    padding: 5rem 0;
}

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

.section-badge {
    display: inline-block;
    background: rgba(147, 71, 19, 0.1);
    color: #934713;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1b2a41;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.story-description p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: rgba(147, 71, 19, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.2rem;
    color: #934713;
}

.highlight-content h4 {
    color: #1b2a41;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.story-visual {
    position: sticky;
    top: 100px;
}

.visual-card {
    background: linear-gradient(135deg, #1b2a41 0%, #2c3e50 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(147, 71, 19, 0.1);
    border-radius: 50%;
}

.visual-content {
    position: relative;
    z-index: 2;
}

.visual-content h3 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.unique-points li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.unique-points i {
    color: #934713;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Values Section */
.values-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.section-header.text-center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1b2a41;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-top-color: #934713;
}

.value-card .value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(27, 42, 65, 0.1), rgba(147, 71, 19, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-card .value-icon i {
    font-size: 1.8rem;
    color: #1b2a41;
}

.value-card h3 {
    color: #1b2a41;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1b2a41, #934713);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.advantage-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1b2a41, #2c3e50);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.advantage-content h3 {
    color: #1b2a41;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.4rem;
}

.advantage-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.advantage-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.advantage-features li::before {
    content: '•';
    color: #934713;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Mobile Responsiveness for About Page */
@media (max-width: 768px) {
    .about-hero {
        padding: 6rem 0 4rem;
    }

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

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

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-card,
    .mission-card {
        padding: 2rem;
    }

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

    .story-visual {
        position: static;
    }

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

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

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

    .advantage-card {
        padding: 2rem;
    }

    .advantage-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ===== MODERN CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #1b2a41 0%, #2c3e50 100%);
    padding: 8rem 0 5rem;
    margin-top: 70px;
    overflow: hidden;
}

.contact-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.contact-hero .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.03) 0px,
        rgba(255, 255, 255, 0.03) 1px,
        transparent 1px,
        transparent 20px
    );
}

.contact-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147, 71, 19, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-stats .stat-item {
    text-align: center;
}

.contact-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #934713;
    display: block;
    line-height: 1;
}

.contact-stats .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* Contact Methods Section */
.contact-methods {
    background: #f8f9fa;
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1b2a41, #934713);
}

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

.contact-card .contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1b2a41, #2c3e50);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.contact-card h3 {
    color: #1b2a41;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.4rem;
}

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

.contact-info {
    text-align: center;
}

.contact-link {
    display: inline-block;
    color: #1b2a41;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(147, 71, 19, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.contact-link:hover {
    background: #934713;
    color: white;
    transform: translateY(-2px);
}

.availability {
    font-size: 0.85rem;
    color: #888;
    display: block;
    margin-top: 0.5rem;
}

/* Specialized Contact Section */
.specialized-contact {
    padding: 5rem 0;
}

.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.specialized-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.specialized-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1b2a41, #934713);
}

.specialized-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.specialized-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.specialized-card .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1b2a41, #2c3e50);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.specialized-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.specialized-card .card-info h3 {
    color: #1b2a41;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    font-size: 1.3rem;
}

.specialized-card .card-info p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-options {
    margin: 1.5rem 0;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #555;
}

.contact-option i {
    color: #934713;
    width: 16px;
    flex-shrink: 0;
}

.contact-option a {
    color: #1b2a41;
    text-decoration: none;
    font-weight: 500;
}

.contact-option a:hover {
    color: #934713;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature {
    background: rgba(147, 71, 19, 0.1);
    color: #934713;
    padding: 0.3rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.form-side {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 2rem;
}

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

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

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

.form-group label {
    color: #1b2a41;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #934713;
    box-shadow: 0 0 0 3px rgba(147, 71, 19, 0.1);
}

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

.form-submit {
    margin-top: 1rem;
}

.form-submit .btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Office Side */
.office-side {
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.office-header {
    margin-bottom: 2rem;
}

.office-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.office-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.office-item:hover {
    border-color: #934713;
    background: rgba(147, 71, 19, 0.02);
}

.office-item .office-icon {
    width: 50px;
    height: 50px;
    background: rgba(147, 71, 19, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.office-item .office-icon i {
    font-size: 1.3rem;
    color: #934713;
}

.office-details h3 {
    color: #1b2a41;
    margin-bottom: 1rem;
    font-weight: 600;
}

.office-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.info-row i {
    color: #934713;
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 14px;
}

.directions-btn {
    background: rgba(147, 71, 19, 0.1);
    color: #934713;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.directions-btn:hover {
    background: #934713;
    color: white;
}

.office-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.feature-item i {
    color: #934713;
    width: 16px;
    flex-shrink: 0;
}

/* Emergency Contact Section */
.emergency-contact {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    padding: 3rem 0;
}

.emergency-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.emergency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.emergency-content h3 {
    color: #1b2a41;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.emergency-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.emergency-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.emergency-btn {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.emergency-btn:first-child {
    background: #ff6b6b;
    color: white;
}

.emergency-btn:first-child:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.emergency-btn.whatsapp {
    background: #25d366;
    color: white;
}

.emergency-btn.whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 4rem;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

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

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

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

    .contact-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-side,
    .office-side {
        padding: 2rem;
    }

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

    .office-features {
        grid-template-columns: 1fr;
    }

    .emergency-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .emergency-actions {
        flex-direction: column;
        width: 100%;
    }

    .emergency-btn {
        justify-content: center;
    }
}

/* ===== TITLE DILIGENCE PAGE STYLES ===== */

/* Title Services Section */
.title-services {
    background: #1b2a41;
    padding: 5rem 0;
}

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

.service-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1b2a41, #934713);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-item .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1b2a41, #2c3e50);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.service-content h3 {
    color: #1b2a41;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.4rem;
}

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

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

.service-features i {
    color: #934713;
    font-size: 0.8rem;
}

/* Verification Process Section */
.verification-process {
    padding: 5rem 0;
    background: white;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #1b2a41, #934713);
    z-index: 1;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1b2a41, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.timeline-icon i {
    font-size: 2.5rem;
    color: white;
}

.timeline-item:hover .timeline-icon {
    background: linear-gradient(135deg, #934713, #b8621b);
    transform: scale(1.1);
}

.timeline-content h3 {
    color: #1b2a41;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .title-hero {
        padding: 6rem 0 4rem;
    }

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

    .title-hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

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

    .service-item {
        padding: 2rem;
    }

    .process-timeline {
        flex-direction: column;
        gap: 3rem;
    }

    .process-timeline::before {
        display: none;
    }

    .timeline-icon {
        width: 100px;
        height: 100px;
    }

    .timeline-icon i {
        font-size: 2rem;
    }
}
