/* CHP Milletvekili Sitesi - Styles */

/* Variables */
:root {
    --chp-red: #E30613;
    --chp-dark-red: #B8050F;
    --chp-light-red: #FF1A2A;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(227, 6, 19, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

/* Modern Navbar - Red Theme */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
    background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-dark-red) 100%);
    box-shadow: 0 4px 20px rgba(227, 6, 19, 0.3);
}

.navbar-backdrop {
    display: none;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled {
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-light-red) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo:hover .logo-wrapper::before {
    opacity: 0.1;
}

.chp-logo-img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
}

.navbar.scrolled .chp-logo-img {
    height: 55px;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text-main {
    font-weight: 700;
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-text-sub {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50px;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 0.15;
}

.nav-link-icon {
    font-size: 0.9rem;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.nav-link:hover .nav-link-icon,
.nav-link.active .nav-link-icon {
    transform: scale(1.1);
}

.nav-link-text {
    position: relative;
    z-index: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 36px);
}

/* CTA Button in Nav */
.nav-link-cta {
    background: var(--white);
    color: var(--chp-red) !important;
    padding: 12px 24px;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-link-cta::before {
    display: none;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta .nav-link-text {
    color: var(--chp-red);
    font-weight: 600;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--light-gray);
}

.nav-link-cta:hover .nav-link-arrow {
    transform: translateX(4px);
}

.nav-link-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    gap: 5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

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

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Hero Section */
.hero {
    min-height: auto;
    background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-dark-red) 100%);
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

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

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--white);
    color: var(--chp-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--chp-red);
}

.btn-full {
    width: 100%;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo-wrapper {
    position: relative;
    width: 420px;
    height: 520px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.hero-photo-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(227, 6, 19, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-photo-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.hero-photo-wrapper:hover .hero-photo {
    transform: scale(1.05);
}

.image-placeholder {
    width: 400px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.image-placeholder span {
    font-size: 1.1rem;
    opacity: 0.8;
}

.image-placeholder.large {
    width: 100%;
    height: 500px;
    background: var(--light-gray);
    border: none;
    color: var(--gray);
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave svg {
    width: 100%;
    height: auto;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-header h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.stats-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(227, 6, 19, 0.05);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--chp-red) 0%, var(--chp-light-red) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(227, 6, 19, 0.15);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.1) 0%, rgba(227, 6, 19, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
}

.stat-icon-wrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--chp-red);
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stat-card:hover .stat-icon-wrapper {
    background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-dark-red) 100%);
    transform: scale(1.1);
}

.stat-icon-wrapper i {
    font-size: 2rem;
    color: var(--chp-red);
    transition: color 0.3s ease;
}

.stat-card:hover .stat-icon-wrapper i {
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--chp-red);
    line-height: 1;
    margin-bottom: 15px;
}

.stat-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--chp-red) 0%, var(--chp-light-red) 100%);
    margin: 0 auto 15px;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.stat-card:hover .stat-divider {
    width: 80px;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-hover-effect {
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.03) 0%, transparent 70%);
    transition: all 0.5s ease;
    opacity: 0;
}

.stat-card:hover .stat-hover-effect {
    opacity: 1;
    bottom: -30%;
    left: -30%;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.light {
    color: var(--white);
}

.section-badge {
    display: inline-block;
    background: rgba(227, 6, 19, 0.1);
    color: var(--chp-red);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header.light .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.section-header.light h2 {
    color: var(--white);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

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

/* Modern About Section */
.about-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 50%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.about-bg-shape {
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.03) 0%, transparent 70%);
    border-radius: 50%;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-dark-red) 100%);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.about-header h2 {
    font-size: 3rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-weight: 700;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    font-style: italic;
}

.about-profile {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.about-photo-section {
    position: sticky;
    top: 100px;
}

.photo-container {
    position: relative;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.profile-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.photo-ring {
    position: absolute;
    inset: -10px;
    border: 3px dashed var(--chp-red);
    border-radius: 35px;
    opacity: 0.3;
    animation: rotateRing 30s linear infinite;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.photo-dots {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--chp-red) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.3;
}

.profile-quick-info {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.quick-item i {
    color: var(--chp-red);
}

.about-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card-main {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.info-quote {
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.05) 0%, rgba(227, 6, 19, 0.02) 100%);
    padding: 25px 30px;
    border-left: 4px solid var(--chp-red);
    border-radius: 0 15px 15px 0;
    margin-bottom: 30px;
    position: relative;
}

.info-quote i {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 2rem;
    color: var(--chp-red);
    opacity: 0.2;
}

.info-quote p {
    font-style: italic;
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    padding-left: 30px;
}

.info-text p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.info-text strong {
    color: var(--chp-red);
    font-weight: 600;
}

.career-timeline-mini {
    background: var(--white);
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.career-timeline-mini h4 {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.career-timeline-mini h4 i {
    color: var(--chp-red);
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step {
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--chp-red) 0%, transparent 100%);
}

.step-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.1) 0%, rgba(227, 6, 19, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-dark-red) 100%);
    transform: scale(1.1);
}

.step-icon i {
    font-size: 1.3rem;
    color: var(--chp-red);
    transition: color 0.3s ease;
}

.step:hover .step-icon i {
    color: var(--white);
}

.step-year {
    display: block;
    font-weight: 700;
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.step-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
}

.about-cta {
    text-align: center;
}

.btn-about-story {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-dark-red) 100%);
    color: var(--white);
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.3);
    transition: all 0.3s ease;
}

.btn-about-story:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 6, 19, 0.4);
}

.btn-about-story i {
    transition: transform 0.3s ease;
}

.btn-about-story:hover i {
    transform: translateX(5px);
}

/* Full Story Section */
.full-story {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-intro {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.story-intro .quote-icon {
    font-size: 4rem;
    color: var(--chp-red);
    opacity: 0.15;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.story-intro h3 {
    font-size: 2.2rem;
    color: var(--dark-gray);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.story-timeline {
    position: relative;
    padding-left: 40px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--chp-red) 0%, var(--chp-light-red) 50%, rgba(227, 6, 19, 0.2) 100%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
}

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

.timeline-icon {
    position: absolute;
    left: -40px;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 3px solid var(--chp-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(227, 6, 19, 0.2);
    z-index: 2;
}

.timeline-icon i {
    font-size: 1.2rem;
    color: var(--chp-red);
}

.timeline-content {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(227, 6, 19, 0.12);
}

.timeline-content h4 {
    font-size: 1.3rem;
    color: var(--chp-red);
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.timeline-content p:last-child {
    margin-bottom: 0;
}

.story-footer {
    margin-top: 60px;
    text-align: center;
}

.final-quote {
    background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-dark-red) 100%);
    padding: 50px 40px;
    border-radius: 25px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.final-quote::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.final-quote i {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 20px;
}

.final-quote p {
    font-size: 1.15rem;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.final-quote .final-text {
    font-size: 1rem;
    opacity: 0.95;
}

.final-quote h5 {
    font-size: 1.3rem;
    margin-top: 30px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 25px;
}

.about-intro {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--chp-red);
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid var(--chp-red);
}

/* Vision Section */
.vision {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-dark-red) 100%);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vision-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.vision-icon i {
    font-size: 2rem;
}

.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.vision-card p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Modern Projects Section */
.projects {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, var(--white) 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.projects-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e30613' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Filter Buttons */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid transparent;
    background: var(--white);
    color: var(--gray);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 6, 19, 0.15);
    color: var(--chp-red);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-dark-red) 100%);
    color: var(--white);
    border-color: transparent;
}

/* Projects Grid Modern */
.projects-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.project-card-modern {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.project-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(227, 6, 19, 0.15);
}

.project-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--chp-red) 0%, var(--chp-light-red) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.project-card-modern:hover::before {
    transform: scaleX(1);
}

.project-image-modern {
    height: 160px;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.05) 0%, rgba(227, 6, 19, 0.02) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-dark-red) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.project-card-modern:hover .project-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.project-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--white);
}

.project-category-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--chp-red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.project-content-modern {
    padding: 25px;
}

.project-content-modern h3 {
    font-size: 1.15rem;
    color: var(--dark-gray);
    margin-bottom: 12px;
    font-weight: 700;
}

.project-content-modern p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.project-features li i {
    color: var(--chp-red);
    font-size: 0.8rem;
}

/* Old styles for compatibility */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-dark-red) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-placeholder i {
    font-size: 3rem;
    color: var(--white);
}

.project-content {
    padding: 30px;
}

.project-tag {
    display: inline-block;
    background: rgba(227, 6, 19, 0.1);
    color: var(--chp-red);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Quote Section */
.quote {
    padding: 100px 0;
    background: var(--white);
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--chp-red);
    opacity: 0.2;
    margin-bottom: 20px;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 700;
    color: var(--chp-red);
    font-size: 1.2rem;
}

.author-title {
    color: var(--gray);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e30613' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-dark-red) 100%);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3);
}

.contact-header h2 {
    font-size: 2.8rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Contact Info Cards */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--chp-red) 0%, var(--chp-light-red) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(227, 6, 19, 0.15);
}

.info-card:hover::before {
    transform: scaleY(1);
}

.info-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.info-icon-bg {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.1) 0%, rgba(227, 6, 19, 0.05) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon-bg {
    background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-dark-red) 100%);
    transform: rotate(10deg) scale(1.1);
}

.info-icon-bg i {
    font-size: 1.5rem;
    color: var(--chp-red);
    transition: color 0.3s ease;
}

.info-card:hover .info-icon-bg i {
    color: var(--white);
}

.info-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: var(--chp-red);
    opacity: 0;
    z-index: 1;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.info-content h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--chp-red);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 8px;
    transition: gap 0.3s ease;
}

.info-link:hover {
    gap: 10px;
}

.info-note {
    display: block;
    color: var(--chp-red);
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 500;
}

/* Social Media Card */
.social-media-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.social-media-card h4 {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    text-align: center;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn.twitter { background: #1DA1F2; }
.social-btn.facebook { background: #4267B2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-btn.youtube { background: #FF0000; }

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-btn i {
    font-size: 1.2rem;
}

/* Contact Form Section */
.contact-form-section {
    position: relative;
}

.form-card {
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--chp-red) 0%, var(--chp-light-red) 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header i {
    font-size: 3rem;
    color: var(--chp-red);
    margin-bottom: 15px;
    opacity: 0.8;
}

.form-header h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Modern Form */
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    background: #fafafa;
    transition: all 0.3s ease;
    outline: none;
}

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

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--chp-red);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.1);
}

.form-field label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 0.95rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-field textarea ~ label {
    top: 25px;
    transform: none;
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--chp-red);
    background: var(--white);
}

.input-focus {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--chp-red) 0%, var(--chp-light-red) 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.form-field input:focus ~ .input-focus,
.form-field textarea:focus ~ .input-focus {
    width: calc(100% - 4px);
}

/* Submit Button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-dark-red) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 6, 19, 0.4);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px) rotate(-45deg);
}

.btn-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover .btn-overlay {
    left: 100%;
}

/* Footer */
.footer {
    background: var(--chp-red);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chp-logo-img-footer {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.footer-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.footer-title {
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-photo-wrapper {
        width: 350px;
        height: 430px;
    }

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

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .about-photo {
        height: 400px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-header h2 {
        font-size: 2.2rem;
    }

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

    .info-card:hover {
        transform: translateX(5px);
    }

    .about-image {
        order: 1;
    }

    .about-text {
        order: 2;
    }

    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Modern About Responsive */
    .about-profile {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-photo-section {
        position: relative;
        top: 0;
    }

    .photo-container {
        max-width: 300px;
        margin: 0 auto;
    }

    .profile-photo {
        height: 400px;
    }

    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .step:not(:last-child)::after {
        display: none;
    }

    /* Modern Projects Responsive */
    .projects-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--chp-red) 0%, var(--chp-dark-red) 100%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 15px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        z-index: 999;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 80%;
        justify-content: center;
        color: var(--white);
    }

    .nav-link-icon {
        font-size: 1.1rem;
        color: var(--white);
    }

    .nav-link::after {
        background: var(--white);
    }

    .nav-link-cta {
        margin-top: 10px;
        width: 80%;
        justify-content: center;
        background: var(--white);
        color: var(--chp-red) !important;
    }

    .nav-link-cta .nav-link-text {
        color: var(--chp-red);
    }

    .hamburger {
        display: flex;
    }

    .chp-logo-img {
        height: 55px;
    }

    .navbar.scrolled .chp-logo-img {
        height: 45px;
    }

    .logo-text-main {
        font-size: 1.1rem;
    }

    .logo-text-sub {
        font-size: 0.7rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
    }

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

    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
    }

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

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

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

    .image-placeholder {
        width: 280px;
        height: 350px;
    }

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

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

    .info-card {
        padding: 20px;
    }

    .info-icon-bg {
        width: 50px;
        height: 50px;
    }

    .form-card {
        padding: 30px 20px;
    }

    .social-icons {
        grid-template-columns: repeat(4, 1fr);
    }

    .social-btn span {
        display: none;
    }

    .social-btn {
        justify-content: center;
        padding: 15px;
    }

    blockquote {
        font-size: 1.2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        align-items: center;
        flex-direction: column;
    }

    .chp-logo-img-footer {
        height: 60px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .full-story {
        padding: 60px 0;
    }

    .story-timeline {
        padding-left: 30px;
    }

    .timeline-item {
        padding-left: 30px;
    }

    .timeline-content {
        padding: 25px;
    }

    .timeline-content h4 {
        font-size: 1.2rem;
    }

    .story-intro h3 {
        font-size: 1.6rem;
    }

    .final-quote {
        padding: 40px 30px;
    }

    .final-quote h5 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-photo-wrapper {
        width: 280px;
        height: 350px;
    }

    .stats {
        padding: 60px 0;
    }

    .about-photo {
        height: 350px;
    }

    .image-frame::before {
        top: -10px;
        left: -10px;
    }

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

    .stat-card {
        padding: 35px 25px;
    }

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

    /* Modern About Mobile */
    .about-modern {
        padding: 80px 0;
    }

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

    .profile-photo {
        height: 350px;
    }

    .profile-quick-info {
        flex-direction: column;
        align-items: center;
    }

    .quick-item {
        width: 100%;
        justify-content: center;
    }

    .info-card-main {
        padding: 25px;
    }

    .info-quote p {
        font-size: 1rem;
        padding-left: 0;
    }

    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .step {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }

    .step-icon {
        margin: 0;
        flex-shrink: 0;
    }

    .btn-about-story {
        width: 100%;
        justify-content: center;
    }

    /* Modern Projects Mobile */
    .projects {
        padding: 80px 0;
    }

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

    .projects-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .projects-filter::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-header h2 {
        font-size: 1.6rem;
    }

    .contact-subtitle {
        font-size: 0.95rem;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .info-icon-wrapper {
        margin-bottom: 10px;
    }

    .form-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .form-header i {
        font-size: 2.5rem;
    }

    .form-header h3 {
        font-size: 1.3rem;
    }

    .social-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-btn span {
        display: inline;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 16px 25px;
    }

    .story-timeline {
        padding-left: 0;
    }

    .story-timeline::before {
        display: none;
    }

    .timeline-item {
        padding-left: 0;
    }

    .timeline-icon {
        position: relative;
        left: auto;
        top: auto;
        margin: 0 auto 20px;
        width: 60px;
        height: 60px;
    }

    .timeline-content {
        text-align: center;
        padding: 25px 20px;
    }

    .timeline-content:hover {
        transform: none;
    }

    .story-intro h3 {
        font-size: 1.4rem;
    }

    .final-quote {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .final-quote p {
        font-size: 1rem;
    }

    .final-quote h5 {
        font-size: 1rem;
    }

    .about-intro {
        font-size: 1rem;
        padding-left: 15px;
    }
}
