/* ==========================================
   Gregory Kinnamon - Personal Resume Website
   Color Palette: Dark Green (#2D4A3E) & White
   ========================================== */

/* CSS Variables */
:root {
    --primary-green: #2D4A3E;
    --primary-green-dark: #1F352C;
    --primary-green-light: #3D5F50;
    --accent-gold: #C4A962;
    --accent-gold-light: #D4BE82;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --text-dark: #212529;
    --text-light: #495057;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--light-gray);
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1rem;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

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

.nav-list a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-light);
}

.nav-list a:hover {
    color: var(--primary-green);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    filter: grayscale(20%);
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    max-width: 450px;
    background-color: var(--primary-green);
    border-radius: var(--border-radius);
    z-index: -1;
    opacity: 0.15;
}

.hero-subtitle {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.hero-title {
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--primary-green);
}

.hero-description {
    font-size: 1.0625rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--light-gray);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-green);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--gray);
    margin-top: 4px;
}

/* ==========================================
   BRAND BAR
   ========================================== */
.brand-bar {
    padding: 40px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--light-gray);
}

.brand-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: 0.9375rem;
    font-weight: 500;
}

.brand-item i {
    font-size: 1.25rem;
    color: var(--primary-green-light);
}

/* ==========================================
   STATS BANNER
   ========================================== */
.stats-banner {
    background-color: var(--primary-green);
    padding: 60px 0;
}

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

.stat-card {
    text-align: center;
    color: var(--white);
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 0.875rem;
    opacity: 0.85;
}

/* ==========================================
   SECTION STYLES
   ========================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-light);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.about-card {
    padding: 40px 32px;
    background-color: var(--off-white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.about-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: var(--border-radius);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.about-card h3 {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-green);
}

.card-link:hover {
    gap: 12px;
}

/* ==========================================
   SKILLS SECTION
   ========================================== */
.skills-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.skills-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.skills-header h2 {
    margin-bottom: 20px;
}

.skills-header p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.skill-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.skill-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.skill-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.125rem;
}

.skill-content h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.skill-content p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* ==========================================
   JOURNEY SECTION (TIMELINE)
   ========================================== */
.journey-section {
    padding: 100px 0;
    background-color: var(--white);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-green), var(--light-gray));
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 60px;
}

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

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border: 3px solid var(--primary-green);
    border-radius: 50%;
    color: var(--primary-green);
    font-size: 1.125rem;
    z-index: 1;
}

.timeline-marker.current {
    background-color: var(--primary-green);
    color: var(--white);
}

.timeline-content {
    background-color: var(--off-white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.timeline-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-green);
}

.timeline-badge {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.timeline-content h3 {
    color: var(--text-dark);
    margin-bottom: 4px;
}

.timeline-content h4 {
    color: var(--gray);
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 20px;
}

.timeline-list {
    list-style: disc;
    padding-left: 20px;
}

.timeline-list li {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.timeline-list strong {
    color: var(--text-dark);
}

/* ==========================================
   QUOTE SECTION
   ========================================== */
.quote-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.quote-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-image {
    flex-shrink: 0;
}

.quote-image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.main-quote {
    text-align: left;
    color: var(--white);
}

.main-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.main-quote cite {
    font-style: normal;
    font-size: 0.9375rem;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .quote-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .main-quote {
        text-align: center;
    }
    
    .quote-image img {
        width: 150px;
        height: 150px;
    }
}

/* ==========================================
   OUTCOMES SECTION
   ========================================== */
.outcomes-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.outcome-card {
    text-align: center;
    padding: 48px 32px;
    background-color: var(--off-white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.outcome-card:hover {
    box-shadow: var(--shadow-md);
}

.outcome-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.75rem;
    margin: 0 auto 24px;
}

.outcome-card h3 {
    margin-bottom: 16px;
    color: var(--text-dark);
}

.outcome-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

/* ==========================================
   TOOLS SECTION
   ========================================== */
.tools-section {
    padding: 80px 0;
    background-color: var(--off-white);
}

.tools-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.tools-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.tool-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.tool-item i {
    font-size: 2rem;
    color: var(--primary-green);
}

.tool-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
}

.contact-content h2 {
    margin-bottom: 16px;
}

.contact-content > p {
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 0.9375rem;
}

.contact-item i {
    font-size: 1.25rem;
    opacity: 0.8;
}

.contact-item:hover {
    opacity: 0.8;
}

.contact-info-side .btn-primary {
    background-color: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.contact-info-side .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Form button stays green */
.contact-form-side .btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.contact-form-side .btn-primary:hover {
    background-color: var(--primary-green-dark);
    color: var(--white);
    border-color: var(--primary-green-dark);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 40px 0;
    background-color: var(--text-dark);
    color: var(--white);
}

.footer-content {
    text-align: center;
}

.footer-content p {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    opacity: 0.5 !important;
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-image {
        order: -1;
        text-align: center;
    }
    
    .hero-image img {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-image-accent {
        max-width: 350px;
        right: calc(50% - 195px);
    }
    
    .about-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .skills-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .skills-header {
        text-align: center;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stat {
        text-align: center;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .brand-bar .container {
        gap: 32px;
    }
    
    .brand-item span {
        display: none;
    }
    
    .timeline::before {
        left: 16px;
    }
    
    .timeline-item {
        padding-left: 56px;
    }
    
    .timeline-marker {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .timeline-content {
        padding: 24px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .tools-grid {
        gap: 24px;
    }
    
    .tool-item {
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image img,
    .hero-image-accent {
        max-width: 280px;
    }
    
    .hero-image-accent {
        right: calc(50% - 160px);
    }
}

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

.hero-text > * {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.hero-text > *:nth-child(4) { animation-delay: 0.4s; }
.hero-text > *:nth-child(5) { animation-delay: 0.5s; }

/* ==========================================
   CONTACT FORM STYLES
   ========================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-side {
    color: var(--white);
}

.contact-info-side h2 {
    margin-bottom: 16px;
}

.contact-info-side > p {
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-side {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    color: var(--text-dark);
    margin-bottom: 24px;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    background-color: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 74, 62, 0.1);
}

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

.btn-full {
    width: 100%;
}

.form-success {
    display: none;
    text-align: center;
    color: var(--primary-green);
    font-weight: 500;
    margin-top: 16px;
    padding: 12px;
    background-color: rgba(45, 74, 62, 0.1);
    border-radius: var(--border-radius);
}

.form-success.show {
    display: block;
}

.form-success i {
    margin-right: 8px;
}

/* ==========================================
   MODAL STYLES
   ========================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 450px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--gray);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-header {
    text-align: center;
    margin-bottom: 16px;
}

.modal-header i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 16px;
}

.modal-header h3 {
    color: var(--text-dark);
}

.modal-content > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 24px;
}

.resume-form .btn i {
    margin-right: 8px;
}

/* ==========================================
   FLOATING DOWNLOAD BUTTON
   ========================================== */
.download-resume-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
}

.download-resume-btn:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(45, 74, 62, 0.3);
}

.download-resume-btn i {
    font-size: 1.25rem;
}

/* Tool Logos */
.tool-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* ==========================================
   RESPONSIVE CONTACT & MODAL
   ========================================== */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-side {
        text-align: center;
    }
    
    .contact-details {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .contact-form-side {
        padding: 30px 24px;
    }
    
    .modal-content {
        padding: 30px 24px;
    }
    
    .download-resume-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
    }
    
    .download-resume-btn span {
        display: none;
    }
    
    .download-resume-btn {
        border-radius: 50%;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .contact-form-side {
        padding: 24px 20px;
    }
}
