/* ============================================
   Co-Vision Future (CVF) Website Styles
   配色方案：金色 #C8A96A + 黑白灰
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #C8A96A;
    --dark-black: #111111;
    --dark-gray: #444444;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Helvetica', 'Arial', sans-serif;
    color: var(--dark-gray);
    line-height: 1.8;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', '游ゴシック', 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: var(--dark-black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-left: 10px;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-gold);
}

.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark-black);
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-black) 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.98;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.4) 0%, rgba(42, 42, 42, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 40px;
    position: relative;
}

.hero-logo {
    margin-bottom: 20px;
}

.hero-logo img {
    height: 200px;
    width: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-title span {
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'Noto Sans JP', sans-serif;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--dark-black);
    border-color: var(--primary-gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-black);
}

.btn-outline-gold {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: var(--dark-black);
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.85rem;
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 100px 0;
}

.section-gray {
    background: var(--light-gray);
}

.section-dark {
    background: var(--dark-black);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   About Section
   ============================================ */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--dark-gray);
}

/* ============================================
   Service Cards
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* 5列布局 - 用于recruitment页面 */
.services-grid-5col {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
    .services-grid-5col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-5col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid-5col {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid #eee;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 15px;
}

/* ============================================
   Strengths Section
   ============================================ */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.strength-item {
    text-align: center;
    padding: 5px;
}

.strength-icon {
    width: 80px;
    height: 80px;
    background: rgba(200, 169, 106, 0.1);
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-gold);
}

.strength-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.strength-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ============================================
   Flow Section
   ============================================ */
.flow-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.flow-list::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gold);
    z-index: 0;
}

.flow-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.flow-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.flow-title {
    font-size: 1rem;
    font-weight: 600;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(200, 169, 106, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-black);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Page Hero (Subpages)
   ============================================ */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-black) 0%, #2a2a2a 100%);
    position: relative;
    padding-top: 80px;
    text-align: center;
    overflow: hidden;
}

/* Default page-hero background - can be overridden by page-specific classes */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: 0;
}

/* Page-specific backgrounds */
.page-hero--specific-skill::before {
    background-image: url('../images/specific-skill-bg.jpg');
}

.page-hero--recruitment::before {
    background-image: url('../images/recruitment-bg.jpg');
}

.page-hero--student-support::before {
    background-image: url('../images/student-support-bg.jpg');
}

.page-hero--consulting::before {
    background-image: url('../images/consulting-bg.jpg');
}

.page-hero--company::before {
    background-image: url('../images/company-bg.jpg');
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.4) 0%, rgba(42, 42, 42, 0.5) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Service Detail Page
   ============================================ */
.service-detail-section {
    padding: 70px 0;
}

.service-overview {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 2;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-features-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .service-features-4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-features-4col {
        grid-template-columns: 1fr;
    }
}

.feature-box {
    background: var(--white);
    padding: 40px;
    border-left: 4px solid var(--primary-gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #eee;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.service-benefits {
    background: var(--light-gray);
    padding: 60px;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
}

.benefit-check {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
}

.benefit-text {
    font-weight: 600;
    color: var(--dark-black);
}

/* ============================================
   Company Page
   ============================================ */
.company-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.company-info-table {
    width: 100%;
    border-collapse: collapse;
}

.company-info-table th,
.company-info-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.company-info-table th {
    width: 30%;
    font-weight: 600;
    color: var(--dark-black);
    background: var(--light-gray);
}

.company-vision {
    background: var(--dark-black);
    color: var(--white);
    padding: 60px;
    text-align: center;
    margin-top: 60px;
}

.company-vision-text {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--primary-gold);
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    color: var(--dark-black);
    margin-bottom: 30px;
}

.cta-btn {
    background: var(--dark-black);
    color: var(--white);
    border-color: var(--dark-black);
}

.cta-btn:hover {
    background: transparent;
    color: var(--dark-black);
}

/* ============================================
   Recruitment Page New Styles
   ============================================ */

/* Hero Label */
.hero-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 2;
}

/* PC Only Break */
.pc-only {
    display: inline;
}

@media (max-width: 768px) {
    .pc-only {
        display: none;
    }
    
    .page-hero-desc {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* Talent Grid */
.recruit-intro {
    text-align: center;
    margin-bottom: 50px;
}

.recruit-intro-text {
    font-size: 1.15rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.talent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.talent-card {
    background: var(--white);
    padding: 40px 25px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.talent-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.talent-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.talent-title {
    font-size: 1.1rem;
    color: var(--dark-black);
    line-height: 1.6;
}

.recruit-summary {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-left: 4px solid var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-black);
}

@media (max-width: 992px) {
    .talent-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .talent-grid {
        grid-template-columns: 1fr;
    }
}

/* Value Section */
.value-content {
    max-width: 800px;
    margin: 0 auto;
}

.value-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 2;
    margin-bottom: 50px;
}

.value-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.value-item {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background: var(--light-gray);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-black);
}

.value-check {
    width: 30px;
    height: 30px;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-size: 0.9rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .value-services {
        grid-template-columns: 1fr;
    }
}

/* Pattern Section */
.pattern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.pattern-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 106, 0.3);
    padding: 40px;
}

.pattern-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.pattern-header i {
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-right: 15px;
}

.pattern-header h3 {
    font-size: 1.4rem;
    color: var(--white);
}

.pattern-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 1rem;
}

.pattern-list {
    list-style: none;
}

.pattern-list li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
}

.pattern-list li i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.pattern-highlight {
    text-align: center;
    padding: 25px;
    background: rgba(200, 169, 106, 0.1);
    border: 1px solid rgba(200, 169, 106, 0.3);
    font-size: 1.1rem;
    color: var(--white);
}

@media (max-width: 768px) {
    .pattern-grid {
        grid-template-columns: 1fr;
    }
}

/* Strengths Grid New */
.strengths-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.strength-card {
    background: var(--white);
    padding: 40px 25px;
    text-align: center;
    border: 1px solid #eee;
    position: relative;
    transition: var(--transition);
}

.strength-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.strength-num {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.strength-icon-new {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.strength-title-new {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark-black);
}

.strength-desc-new {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

@media (max-width: 992px) {
    .strengths-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .strengths-grid-new {
        grid-template-columns: 1fr;
    }
}

/* Benefits Grid New */
.benefits-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 25px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.benefit-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.benefit-icon-new {
    width: 70px;
    height: 70px;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: var(--dark-black);
}

@media (max-width: 992px) {
    .benefits-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-grid-new {
        grid-template-columns: 1fr;
    }
}

/* CTA Section White */
.cta-section-white {
    background: var(--white);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.cta-title-dark {
    font-size: 2rem;
    color: var(--dark-black);
    margin-bottom: 40px;
}

.btn-lg {
    padding: 18px 50px;
    font-size: 1.1rem;
}

@media (max-width: 576px) {
    .cta-section-white {
        padding: 60px 20px;
    }
    
    .cta-title-dark {
        font-size: 1.5rem;
    }
}

/* ============================================
   Student Support Page New Styles
   ============================================ */

/* Education Section */
.edu-intro {
    text-align: center;
    margin-bottom: 50px;
}

.edu-intro-text {
    font-size: 1.15rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.edu-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.edu-item {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    background: var(--white);
    border: 1px solid #eee;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark-black);
    transition: var(--transition);
}

.edu-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.edu-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.edu-summary {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-left: 4px solid var(--primary-gold);
    font-size: 1.2rem;
    color: var(--dark-black);
}

@media (max-width: 768px) {
    .edu-features {
        grid-template-columns: 1fr;
    }
}

/* Flow Timeline */
.flow-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 169, 106, 0.3);
    padding: 30px 40px;
}

.flow-step-num {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-right: 30px;
    flex-shrink: 0;
}

.flow-step-content h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 8px;
}

.flow-step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.flow-arrow {
    text-align: center;
    padding: 15px 0;
    color: var(--primary-gold);
    font-size: 1.5rem;
}

@media (max-width: 576px) {
    .flow-step {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .flow-step-num {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Target Grid */
.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.target-card {
    background: var(--white);
    padding: 50px 30px;
    text-align: center;
    border: 1px solid #eee;
    transition: var(--transition);
}

.target-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.target-icon {
    width: 80px;
    height: 80px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-gold);
}

.target-card h3 {
    font-size: 1.15rem;
    color: var(--dark-black);
}

@media (max-width: 992px) {
    .target-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid,
    .company-info-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-list::before {
        display: none;
    }
    
    .flow-list {
        flex-direction: column;
        align-items: center;
    }
    
    .flow-item {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .service-benefits,
    .company-vision {
        padding: 40px 20px;
    }
}
