/* =============================================
   BOGARE İLETİŞİM - Inner Pages Styles
   ============================================= */

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: -1;
}

.page-hero-content {
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--gold);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--gray);
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Company Overview Section */
.company-overview {
    padding: var(--section-padding);
    background: var(--black);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-text {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-box {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 25px;
    text-align: center;
    transition: var(--transition-normal);
}

.stat-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.stat-icon {
    display: block;
    margin-bottom: 10px;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.stat-text {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-image {
    position: relative;
}

.image-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold);
    border-radius: var(--radius-md);
    padding: 25px 35px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.badge-year {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
}

.badge-text {
    font-size: 0.8rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vision & Mission */
.vision-mission {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--black) 0%, var(--black-light) 100%);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vm-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: var(--transition-normal);
}

.vm-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.vm-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.vm-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.vm-list {
    text-align: left;
}

.vm-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--gray-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vm-list li:last-child {
    border-bottom: none;
}

.vm-list li i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Timeline Section */
.timeline-section {
    padding: var(--section-padding);
    background: var(--black);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), rgba(255, 215, 0, 0.1));
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 30px 50px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
    padding-right: 80px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    top: 30px;
    width: 60px;
    height: 60px;
    background: var(--black);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -30px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -30px;
}

.timeline-marker span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
}

.timeline-content {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 25px;
    transition: var(--transition-normal);
}

.timeline-item:hover .timeline-content {
    border-color: var(--gold);
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.timeline-content img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.timeline-item.current .timeline-marker {
    background: var(--gold);
}

.timeline-item.current .timeline-marker span {
    color: var(--black);
}

/* Leadership Section */
.leadership-section {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--black-light) 0%, var(--black) 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
}

.team-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: var(--transition-normal);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 10px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: var(--transition-fast);
}

.team-social a:hover {
    background: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.team-role {
    display: block;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.team-info p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    padding: var(--section-padding);
    background: var(--black);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.cert-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition-normal);
}

.cert-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.cert-card.award {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
}

.cert-icon {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.cert-icon img {
    max-height: 60px;
    max-width: 100%;
}

.cert-icon i {
    font-size: 2.5rem;
    color: var(--gold);
}

.cert-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.cert-card p {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Sustainability Page Styles */
.sustainability-intro {
    padding: var(--section-padding);
    background: var(--black);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-quote {
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--gold);
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.intro-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 10px;
}

.intro-quote cite {
    font-size: 0.9rem;
    color: var(--gold);
}

.esg-badges {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.esg-badge {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    flex: 1;
}

.esg-badge i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.esg-badge span {
    font-size: 0.85rem;
    color: var(--gray-light);
    font-weight: 500;
}

.intro-video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.intro-video img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: var(--shadow-gold);
}

.play-button i {
    font-size: 1.5rem;
    color: var(--black);
    margin-left: 5px;
}

/* Focus Areas / Pillars */
.focus-areas {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--black) 0%, var(--black-light) 100%);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
}

.pillar-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.pillar-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.pillar-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.pillar-subtitle {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.pillar-card > p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.pillar-metrics {
    margin-bottom: 25px;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.metric-row:last-child {
    border-bottom: none;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--gray);
}

.metric-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
}

.pillar-initiatives h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.pillar-initiatives ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.pillar-initiatives ul li i {
    color: var(--gold);
    margin-top: 3px;
}

/* Metrics Dashboard */
.metrics-dashboard {
    padding: var(--section-padding);
    background: var(--black);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.dashboard-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.dashboard-card:hover {
    border-color: var(--gold);
}

.dashboard-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.dashboard-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.dashboard-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.dashboard-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.dashboard-change {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 50px;
}

.dashboard-change.positive {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.dashboard-change.negative {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

/* Charts Section */
.charts-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.chart-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.chart-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.chart-placeholder {
    height: 250px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Case Studies */
.case-studies {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--black-light) 0%, var(--black) 100%);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.case-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    transition: var(--transition-normal);
}

.case-card:hover {
    border-color: var(--gold);
}

.case-image {
    height: 100%;
    min-height: 300px;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    padding: 30px;
}

.case-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.case-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.case-content p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.case-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.result-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: var(--radius-sm);
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.result-label {
    font-size: 0.75rem;
    color: var(--gray);
}

/* Future Targets */
.future-targets {
    padding: var(--section-padding);
    background: var(--black);
}

.targets-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.targets-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--gold), rgba(255, 215, 0, 0.2));
    transform: translateY(-50%);
}

.targets-grid {
    display: flex;
    justify-content: space-between;
}

.target-item {
    position: relative;
    text-align: center;
    padding: 0 20px;
}

.target-marker {
    width: 80px;
    height: 80px;
    background: var(--black);
    border: 4px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.target-marker span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.target-item.achieved .target-marker {
    background: var(--gold);
}

.target-item.achieved .target-marker span {
    color: var(--black);
}

.target-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.target-content p {
    font-size: 0.85rem;
    color: var(--gray);
    max-width: 200px;
    margin: 0 auto;
}

/* Download Report Section */
.download-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.download-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.download-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.download-info p {
    font-size: 1rem;
    color: var(--gray);
    max-width: 500px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 20px 40px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-normal);
}

.download-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.download-btn i {
    font-size: 1.5rem;
}

/* Accordion */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.accordion-header:hover {
    background: rgba(255, 215, 0, 0.05);
}

.accordion-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-header h4 i {
    color: var(--gold);
}

.accordion-icon {
    color: var(--gold);
    transition: var(--transition-fast);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: 0 25px 25px;
    color: var(--gray);
    line-height: 1.7;
}

/* Sector Pages */
.sector-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.sector-intro {
    padding: var(--section-padding);
    background: var(--black);
}

.sector-services {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--black) 0%, var(--black-light) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition-normal);
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Gallery Section */
.gallery-section {
    padding: var(--section-padding);
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--gold);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
}

/* Contact Form Styles */
.contact-section {
    padding: var(--section-padding);
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-details p,
.contact-details a {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-details a:hover {
    color: var(--gold);
}

.contact-form-wrapper {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--black);
    border: 1px solid var(--gray-dark);
    border-radius: var(--radius-sm);
    padding: 15px;
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

/* Blog/News Page */
.blog-section {
    padding: var(--section-padding);
    background: var(--black);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.blog-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: var(--transition-fast);
}

.blog-card:hover .blog-title {
    color: var(--gold);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--gold);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-sm);
    color: var(--gray);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.pagination a:hover,
.pagination span.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Career Page */
.career-section {
    padding: var(--section-padding);
    background: var(--black);
}

.job-listings {
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: var(--black-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.job-card:hover {
    border-color: var(--gold);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.job-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.job-tag {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.job-description {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.job-location i {
    color: var(--gold);
}

/* Map Section */
.map-section {
    height: 400px;
    background: var(--black-soft);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* Responsive Styles for Inner Pages */
@media (max-width: 1200px) {
    .cert-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .overview-grid,
    .intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .vm-grid,
    .pillars-grid,
    .services-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
    }
    
    .timeline-marker {
        left: 0 !important;
        right: auto !important;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .case-card {
        grid-template-columns: 1fr;
    }
    
    .case-image {
        min-height: 200px;
    }
    
    .targets-grid {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }
    
    .targets-timeline::before {
        display: none;
    }
    
    .download-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .vm-grid,
    .pillars-grid,
    .services-grid,
    .blog-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
    }
    
    .esg-badges {
        flex-direction: column;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .charts-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .case-results {
        grid-template-columns: 1fr;
    }
}
