/* NIL Integrity Group - Modern Theme Styles */

/* Visually hidden but accessible to screen readers and crawlers */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Brand Colors */
:root {
    --navy-primary: #1a2744;
    --navy-dark: #0f172a;
    --navy-light: #243656;
    --gold-primary: #d4a84b;
    --gold-dark: #c49a3d;
    --gold-light: #f5e6c8;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #e5e7eb;
}

/* =============================================
   HERO SLIDER SECTION
   ============================================= */
.hero-slider-section {
    margin-top: 77px; /* Account for fixed header */
}

.hero-swiper {
    height: calc(100vh - 77px);
    min-height: 600px;
}

.hero-swiper .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.9) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.slide-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 2rem;
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Slider Animations */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

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

/* Slider Navigation */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: #fff;
    width: 60px;
    height: 60px;
    background-color: rgba(212, 168, 75, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background-color: var(--gold-primary);
    color: var(--navy-primary);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 1.25rem;
    font-weight: bold;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
    background-color: var(--gold-primary);
    transform: scale(1.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    color: #fff;
    font-size: 2rem;
    opacity: 0.7;
}

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

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.light h2,
.section-header.light .section-subtitle {
    color: #fff;
}

.section-subtitle {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    color: var(--navy-primary);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-dark));
    border-radius: 2px;
}

.section-title.left-align {
    display: block;
}

.section-title.left-align::after {
    left: 0;
    transform: none;
}

.section-header.light .section-title {
    color: #fff;
}

/* =============================================
   INTRO SECTION
   ============================================= */
.intro-section {
    padding-top: 6rem;
}

.intro-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-text .lead-text {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.highlight-box {
    background: linear-gradient(135deg, var(--gold-light) 0%, rgba(245, 230, 200, 0.5) 100%);
    border-left: 5px solid var(--gold-primary);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 0 12px 12px 0;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin: 0;
}

.intro-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.visual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-light) 0%, rgba(245, 230, 200, 0.5) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.25rem;
}

.visual-card h4 {
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
}

.visual-card p {
    color: #666;
    margin: 0;
    font-size: 0.9375rem;
}

/* =============================================
   SERVICES CARDS
   ============================================= */
.services-section {
    overflow: hidden;
}

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

.service-card-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.service-card-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.service-card-modern.featured {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--navy-primary);
    transform: scale(1.05);
}

.service-card-modern.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.card-icon-gold {
    background: rgba(212, 168, 75, 0.15);
    color: var(--gold-primary);
    border: 2px solid rgba(212, 168, 75, 0.3);
}

.service-card-modern:hover .card-icon-wrapper {
    transform: scale(1.1);
}

.service-card-modern:hover .card-icon-gold {
    background: rgba(212, 168, 75, 0.25);
    border-color: var(--gold-primary);
}

.service-card-modern.featured .card-icon-wrapper {
    background: rgba(212, 168, 75, 0.15);
    color: var(--gold-primary);
    border: 2px solid rgba(212, 168, 75, 0.3);
}

.service-card-modern h3 {
    margin-bottom: 1rem;
}

.service-card-modern p {
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}

.service-card-modern.featured .card-link {
    color: var(--navy-primary);
}

.card-link:hover {
    gap: 0.75rem;
}

.section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* =============================================
   PARALLAX / TRUST SECTION
   ============================================= */
.parallax-section {
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.92) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.trust-section .container {
    position: relative;
    z-index: 1;
}

.trust-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.trust-content .section-subtitle {
    color: var(--gold-primary);
}

.trust-content .section-title {
    color: #fff;
}

.trust-text {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.trust-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    color: var(--gold-primary);
    font-size: 1.5rem;
}

.feature-text {
    font-weight: 600;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
    background-color: var(--gray-light);
    padding: 4rem 0;
}

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

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--navy-primary);
    line-height: 1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* =============================================
   CTA SECTION MODERN
   ============================================= */
.cta-section-modern {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.cta-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.cta-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.1) 0%, rgba(212, 168, 75, 0.05) 100%);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
}

.cta-content-modern {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content-modern h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-modern p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* CTA Section with Background Image */
.cta-section-modern[style*="background-image"] {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.9) 0%, rgba(15, 23, 42, 0.85) 100%);
}

/* =============================================
   PAGE HEADERS
   ============================================= */
.page-header-modern {
    position: relative;
    padding: 10rem 0 5rem;
    margin-top: 77px;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.9) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.page-header-modern .container {
    position: relative;
    z-index: 1;
}

.header-content {
    color: #fff;
}

.page-subtitle {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--gold-primary);
}

.breadcrumb .separator {
    margin: 0 0.75rem;
}

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
}

.about-intro-content .lead-text {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.visual-box {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: 20px;
}

.visual-box .visual-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 168, 75, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.visual-box h4 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.visual-box p {
    opacity: 0.9;
    margin: 0;
}

/* Standards Section Modern */
.standards-section-modern {
    text-align: center;
}

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

.standard-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.standard-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    margin: 0 auto 1.5rem;
}

.standard-card h4 {
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.standard-card p {
    color: #666;
    margin: 0;
}

/* Founder Section Modern */
.founder-content-modern {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.founder-photo-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.founder-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.founder-info-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.founder-header {
    border-bottom: 2px solid var(--gold-light);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.founder-header h3 {
    font-size: 2rem;
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--gold-primary);
    font-weight: 600;
    margin: 0;
}

.founder-bio p {
    color: #555;
    margin-bottom: 1.25rem;
}

.founder-bio strong {
    color: var(--navy-primary);
}

.founder-credentials {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: 20px;
}

.founder-credentials h4 {
    color: var(--gold-primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.credentials-list-modern {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.credential-item.highlight {
    background: rgba(212, 168, 75, 0.2);
}

.credential-icon {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.credential-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

.credential-text span {
    font-size: 0.875rem;
    opacity: 0.8;
}

.founder-credentials-full {
    margin-top: 3rem;
    border-radius: 20px 20px 0 0;
}

.founder-credentials-full .credentials-list-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.founder-credentials-full .credential-item {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
}

.founder-credentials-full .credential-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.founder-credentials-full .credential-text {
    text-align: center;
}

/* Mission Section Modern */
.mission-section-modern {
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.mission-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(26, 39, 68, 0.88) 100%);
}

.mission-section-modern .container {
    position: relative;
    z-index: 1;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.mission-card {
    padding: 2.5rem;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--navy-primary);
    margin: 0 auto 1.5rem;
}

.mission-card h3 {
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.mission-card p {
    opacity: 0.9;
    margin: 0;
}

/* =============================================
   SERVICES PAGE STYLES
   ============================================= */
.services-intro-modern {
    text-align: center;
}

.intro-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content-centered .lead-text {
    font-size: 1.25rem;
    color: #555;
}

/* Service Detail Modern */
.service-detail-modern {
    padding: 6rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.service-detail-grid.reverse {
    grid-template-columns: 1fr 300px;
}

.service-detail-grid.reverse .service-visual {
    order: 2;
}

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

.service-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.service-icon-box {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    margin: 0 auto;
}

.service-icon-box.gold {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--navy-primary);
}

.service-icon-box.navy {
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-primary) 100%);
}

.service-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--gray-medium);
    line-height: 1;
    margin-top: 1rem;
}

.service-info h2 {
    color: var(--navy-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-lead {
    font-size: 1.125rem;
    color: #555;
}

.service-features {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 16px;
}

.service-features h4 {
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.feature-list.columns-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #555;
}

.feature-list li .icon-check {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-top: 0.25rem;
}

/* Why Choose Modern */
.why-choose-modern {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
}

.why-choose-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.95) 0%, rgba(15, 23, 42, 0.92) 100%);
}

.why-choose-modern .container {
    position: relative;
    z-index: 1;
}

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

.why-feature-card {
    text-align: center;
    padding: 2rem;
    color: #fff;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--navy-primary);
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.why-feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.why-feature-card h3 {
    color: var(--gold-primary);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.why-feature-card p {
    opacity: 0.85;
    font-size: 0.9375rem;
    margin: 0;
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */
.contact-intro-modern {
    text-align: center;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
}

/* Contact Form Modern */
.contact-form-wrapper-modern {
    background: #fff;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h2 {
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.form-group-modern label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--navy-primary);
    font-size: 0.9375rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1rem;
}

.textarea-wrapper .input-icon {
    top: 1.25rem;
    transform: none;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3rem;
    font-size: 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 4px rgba(212, 168, 75, 0.1);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: #999;
}

/* Contact Side Image */
.contact-side-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.contact-side-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Contact Info Modern */
.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-dark) 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: 24px;
}

.info-header h2 {
    color: #fff;
    margin-bottom: 2rem;
}

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

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

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 168, 75, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.info-content h4 {
    color: var(--gold-primary);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.info-content a {
    color: #fff;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--gold-primary);
}

.info-content p {
    margin: 0;
    opacity: 0.9;
}

.info-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
}

.info-note h4 {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-note p {
    font-size: 0.9375rem;
    opacity: 0.85;
    margin-bottom: 0.75rem;
}

.info-note p:last-child {
    margin-bottom: 0;
}

.disclaimer-card {
    background: var(--gold-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--gold-primary);
}

.disclaimer-card p {
    color: var(--navy-primary);
    margin: 0;
    font-size: 0.9375rem;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 1200px) {
    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .slide-title {
        font-size: 3rem;
    }

    .intro-grid,
    .about-intro-grid,
    .contact-grid-modern {
        grid-template-columns: 1fr;
    }

    .intro-image {
        max-width: 400px;
        margin: 0 auto 2rem;
    }

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

    .founder-photo-wrapper {
        max-width: 300px;
        margin: 0 auto 2rem;
    }

    .intro-visual {
        flex-direction: row;
    }

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

    .service-card-modern.featured {
        transform: none;
        order: -1;
    }

    .service-card-modern.featured:hover {
        transform: translateY(-10px);
    }

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

    .founder-credentials-full .credentials-list-modern {
        grid-template-columns: 1fr;
    }

    .service-detail-grid,
    .service-detail-grid.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-detail-grid.reverse .service-visual {
        order: 0;
    }

    .feature-list.columns-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        margin-top: 67px;
    }

    .hero-swiper {
        height: calc(100vh - 67px);
        min-height: 500px;
    }

    .slide-title {
        font-size: 2.25rem;
    }

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

    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }

    .page-header-modern {
        padding: 8rem 0 4rem;
        margin-top: 67px;
    }

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

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

    .intro-visual {
        flex-direction: column;
    }

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

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

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

    .why-features-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form-wrapper-modern {
        padding: 2rem;
    }

    .trust-features {
        flex-direction: column;
        gap: 1.5rem;
    }
}
