/* ========================================
   VARIABLES & RESET
   ======================================== */

:root {
    --primary-color: #c41e3a;
    --secondary-color: #1a1a1a;
    --accent-color: #d4af37;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #0a0a0a;
    --bg-light: #f5f5f5;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ========================================
   NAVIGATION
   ======================================== */

#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(196, 30, 58, 0.3);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 12px;
    color: var(--accent-color);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    background-image: 
        linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(196,30,58,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, transparent 100%);
}

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

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(196, 30, 58, 0.2);
    border: 2px solid var(--primary-color);
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: 120px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 50px;
    letter-spacing: 2px;
    animation: fadeIn 1s ease 0.4s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    animation: fadeIn 1s ease 0.6s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Rajdhani', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeIn 1s ease 0.8s backwards;
}

.btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

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

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* ========================================
   SECTION STYLING
   ======================================== */

section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-number {
    font-size: 80px;
    font-weight: 700;
    color: rgba(196, 30, 58, 0.1);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Rajdhani', sans-serif;
}

.section-title {
    font-size: 48px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.section-line {
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto 0;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
    background: var(--bg-light);
}

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

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(196, 30, 58, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-text {
    font-size: 72px;
    font-weight: 700;
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 5px;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.badge-title {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.badge-text {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-text {
    padding: 20px 0;
}

.about-heading {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-intro {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 500;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-list {
    margin: 30px 0;
    padding-left: 0;
}

.about-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.about-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
}

.about-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 30px;
    margin: 40px 0;
    line-height: 1.8;
}

.about-certifications {
    margin-top: 40px;
    padding: 30px;
    background: white;
    border: 2px solid var(--primary-color);
}

.about-certifications h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.cert-item {
    padding: 10px 15px;
    background: var(--bg-light);
    border-left: 3px solid var(--primary-color);
    font-size: 14px;
    color: #555;
}

/* ========================================
   TIMELINE SECTION
   ======================================== */

.timeline-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.timeline-section .section-title {
    color: var(--text-light);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.timeline-item {
    margin-bottom: 80px;
    position: relative;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid var(--bg-dark);
    border-radius: 50%;
    top: 0;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.timeline-item.highlight .timeline-marker {
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    box-shadow: 0 0 20px var(--accent-color);
}

.timeline-item:nth-child(odd).highlight .timeline-marker {
    right: -15px;
}

.timeline-item:nth-child(even).highlight .timeline-marker {
    left: -15px;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    transition: var(--transition);
}

.timeline-item.highlight .timeline-content {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.1);
}

.timeline-content:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.3);
}

.timeline-date {
    display: inline-block;
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.timeline-details {
    margin-top: 20px;
}

.timeline-details li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.timeline-details li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.mission-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.timeline-item.highlight .mission-badge {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.stats-summary {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--primary-color);
}

.stats-summary h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

.career-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid var(--primary-color);
}

.career-stat strong {
    font-size: 24px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 5px;
    font-family: 'Rajdhani', sans-serif;
}

.career-stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SKILLS SECTION
   ======================================== */

.skills {
    background: var(--bg-light);
}

.skills-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.skill-card {
    background: white;
    padding: 40px;
    border: 3px solid transparent;
    transition: var(--transition);
    position: relative;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.05;
    transition: var(--transition);
    z-index: 0;
}

.skill-card:hover::before {
    width: 100%;
}

.skill-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.skill-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.skill-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.skill-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.skill-progress {
    height: 100%;
    background: var(--primary-color);
    transition: width 1s ease;
}

.skill-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.skill-details {
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.skill-details li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #666;
    font-size: 14px;
}

.skill-details li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 16px;
}

.civil-skills {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: white;
    border: 3px solid var(--primary-color);
}

.subsection-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.civil-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.civil-skill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.civil-skill:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateX(10px);
}

.civil-skill-name {
    font-weight: 600;
    font-size: 15px;
}

.civil-skill-level {
    font-size: 12px;
    padding: 5px 15px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 20px;
    font-weight: 600;
}

.civil-skill:hover .civil-skill-level {
    background: white;
    color: var(--primary-color);
}

/* ========================================
   MISSIONS SECTION
   ======================================== */

.missions {
    background: white;
}

.missions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.mission-card {
    background: var(--bg-light);
    padding: 35px;
    border: 3px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 30, 58, 0.1), transparent);
    transition: left 0.5s ease;
}

.mission-card:hover::before {
    left: 100%;
}

.mission-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.mission-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.mission-location {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mission-year {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Rajdhani', sans-serif;
}

.mission-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.mission-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.mission-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 15px;
    background: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.mission-card:hover .tag {
    background: var(--primary-color);
    color: white;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-left: 5px solid var(--primary-color);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 0;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: #555;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 20px;
    border-top: 2px solid var(--bg-light);
}

.testimonial-author strong {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 700;
}

.testimonial-author span {
    color: #999;
    font-size: 13px;
    font-style: normal;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    background: var(--bg-dark);
    color: var(--text-light);
}

.contact .section-title {
    color: var(--text-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 32px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item strong {
    color: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a,
.contact-item span {
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.services-offered h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.services-offered ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services-offered li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    padding-left: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border: 2px solid var(--primary-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
    background: var(--secondary-color);
    color: var(--text-light);
}

.btn-submit {
    width: 100%;
    margin-top: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    text-align: center;
    border-radius: 0;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4caf50;
    color: #4caf50;
    display: block;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 2px solid #f44336;
    color: #f44336;
    display: block;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-motto {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 12px;
    font-style: italic;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

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

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

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 80px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 80px;
    }
    
    .timeline-marker {
        left: 21px !important;
        right: auto !important;
    }
    
    .career-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 40px 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .burger {
        display: flex;
    }
    
    .hero-title {
        font-size: 60px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .skills-grid,
    .missions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .civil-skills-grid {
        grid-template-columns: 1fr;
    }
    
    .career-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-number {
        font-size: 60px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}