html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family: 'Montserrat', sans-serif;
  padding-top: 100px;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

a.nav-link:hover {
  color: #ffc107 !important;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

footer.footer {
  background-color: #f8f9fa;
  padding: 2rem 0;
  margin-top: auto;
}

/* Modern CV Site Tasarımı */

/* Font ve Temel Ayarlar */
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 100px;
  background-color: #f8f9fa;
}

/* Navbar Stilleri */
.navbar {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.5rem;
}

.nav-link {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #ffc107 !important;
  transform: translateY(-2px);
}

/* Modern Navbar Stilleri */
.modern-navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
  box-shadow: 0 2px 20px rgba(102, 126, 234, 0.15);
}

.modern-navbar .navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: #667eea !important;
  text-shadow: none;
  transition: all 0.3s ease;
}

.modern-navbar .navbar-brand:hover {
  transform: scale(1.05);
  color: #764ba2 !important;
}

.modern-navbar .nav-link {
  color: #667eea !important;
  font-weight: 500;
  padding: 0.8rem 1.2rem !important;
  border-radius: 25px;
  margin: 0 0.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.modern-navbar .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.5s;
}

.modern-navbar .nav-link:hover::before {
  left: 100%;
}

.modern-navbar .nav-link:hover {
  background: rgba(102, 126, 234, 0.1);
  color: #ffc107 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.modern-navbar .nav-link.active {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107 !important;
}

.modern-navbar .admin-link {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.2);
  color: #dc3545 !important;
}

.modern-navbar .admin-link:hover {
  background: rgba(220, 53, 69, 0.2);
  color: #ff6b6b !important;
}

.modern-navbar .navbar-toggler {
  border: 1px solid rgba(102, 126, 234, 0.3);
  padding: 0.25rem 0.5rem;
}

.modern-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.modern-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23667eea' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Navbar */
@media (max-width: 991px) {
  .modern-navbar .navbar-nav {
    margin-top: 1rem;
    text-align: center;
  }
  
  .modern-navbar .nav-link {
    margin: 0.2rem 0;
    border-radius: 5px;
  }
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding-top: 180px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-wave {
  pointer-events: none;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 40px;
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 90px;
    padding-bottom: 20px;
    min-height: 220px;
  }
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  opacity: 0.92;
  margin-bottom: 1.2rem;
}

.profile-image {
  margin-bottom: 1.5rem;
}

/* About Section */
.about-content {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  display: inline-block;
}

.about-image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.about-image:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

.about-text .lead {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0;
}

/* Responsive About Section */
@media (max-width: 768px) {
  .about-image {
    width: 200px;
    height: 200px;
  }
  
  .about-text {
    text-align: left;
    margin-top: 2rem;
  }
}

.profile-image {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.18), 0 2px 8px rgba(118, 75, 162, 0.10);
  transition: transform 0.3s, box-shadow 0.3s;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 6px;
}

.profile-image:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 16px 48px rgba(102, 126, 234, 0.25), 0 4px 16px rgba(118, 75, 162, 0.15);
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

/* Card Styles */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  background: white;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 1.5rem;
}

.card-body {
  padding: 2rem;
}

/* Service Cards */
.service-card {
  text-align: center;
  padding: 2rem;
  height: 100%;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #667eea;
}

/* Contact Section */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Method Cards */
.contact-method-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  background: white;
}

.contact-method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  color: white;
  font-size: 2rem;
}

.contact-method-card .card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-method-card .card-text {
  font-size: 1rem;
  line-height: 1.5;
}

.contact-method-card .btn {
  border-radius: 20px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
}

/* Button Styles */
.btn {
  border-radius: 25px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.btn-outline-primary {
  border: 2px solid #667eea;
  color: #667eea;
}

.btn-outline-primary:hover {
  background: #667eea;
  transform: translateY(-2px);
}

/* Form Styles */
.form-control {
  border-radius: 10px;
  border: 2px solid #e9ecef;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Contact Info */
.contact-info {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.contact-item i {
  font-size: 1.5rem;
  color: #667eea;
  margin-right: 1rem;
  width: 30px;
}

/* Footer */
.footer {
  background: #232946;
  color: #f3f3f3;
  border-top: 0;
  margin-top: 4rem;
  padding-top: 0;
  position: relative;
}

.footer-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.footer-social-fixed {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 100;
  display: flex;
  gap: 0.5rem;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 1.4rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(35,41,70,0.08);
}

.footer-social-icon:hover {
  background: #fff;
  color: #764ba2;
  transform: scale(1.12) translateY(-2px);
  text-decoration: none;
}

@media (max-width: 767px) {
  .footer-social-fixed {
    right: 12px;
    bottom: 12px;
    gap: 0.2rem;
  }
  .footer-name {
    font-size: 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .profile-image {
    width: 200px;
    height: 200px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Admin Panel Styles */
.admin-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.admin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.admin-navbar {
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-navbar .navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.admin-navbar .navbar-brand:hover {
  transform: scale(1.05);
}

.admin-navbar .nav-link {
  color: white !important;
  font-weight: 500;
  padding: 0.8rem 1.2rem !important;
  border-radius: 25px;
  margin: 0 0.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.admin-navbar .nav-link::before {
  content: '';
  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;
}

.admin-navbar .nav-link:hover::before {
  left: 100%;
}

.admin-navbar .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffc107 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.admin-navbar .logout-link {
  background: rgba(220, 53, 69, 0.2);
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.admin-navbar .logout-link:hover {
  background: rgba(220, 53, 69, 0.4);
  color: #ff6b6b !important;
}

.table {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.table thead {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.05"><polygon points="1000,100 1000,0 0,100"/></svg>');
  background-size: cover;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-section .lead {
  font-size: 1.4rem;
  opacity: 0.95;
}

/* Responsive CTA */
@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0 !important;
  }
  
  .cta-section h2 {
    font-size: 2.2rem;
  }
  
  .cta-section .lead {
    font-size: 1.2rem;
  }
}

/* FAQ Section (İletişim sayfası) */
.section.faq-section {
  background: #fff;
  padding: 80px 0 80px 0;
  margin-top: 48px;
  margin-bottom: 48px;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(35,41,70,0.06);
}
@media (max-width: 767px) {
  .section.faq-section {
    padding: 40px 0 40px 0;
    margin-top: 24px;
    margin-bottom: 24px;
    border-radius: 12px;
  }
}

/* MODERN ANASAYFA TASARIMI - YENİ STİLLER */

/* Hero Section Modern */
.hero-section-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-profile-container {
    position: relative;
    display: inline-block;
}

.hero-profile-image {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.hero-profile-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-profile-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    border-radius: 50%;
    opacity: 0.7;
    filter: blur(20px);
    animation: glowRotate 4s linear infinite;
    z-index: 1;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-greeting {
    margin-bottom: 1rem;
}

.hero-greeting-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-roles {
    margin-bottom: 2rem;
}

.hero-role {
    font-size: 1.5rem;
    color: #ffc107;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.typing-animation::after {
    content: '|';
    animation: blink 1s infinite;
    color: #ffc107;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons .btn {
    margin: 0.5rem;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary-modern {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
    background: linear-gradient(45deg, #ff5252, #ff7979);
}

.btn-outline-modern {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
}

.btn-outline-modern:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-wave-modern {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 2;
}

.wave-svg {
    width: 100%;
    height: 120px;
}

.wave-path {
    animation: waveAnimation 6s ease-in-out infinite alternate;
}

@keyframes waveAnimation {
    0% { d: path("M0,32L60,37.3C120,43,240,53,360,58.7C480,64,600,64,720,53.3C840,43,960,21,1080,16C1200,11,1320,21,1380,26.7L1440,32L1440,120L1380,120C1320,120,1200,120,1080,120C960,120,840,120,720,120C600,120,480,120,360,120C240,120,120,120,60,120L0,120Z"); }
    100% { d: path("M0,64L60,58.7C120,53,240,43,360,37.3C480,32,600,32,720,42.7C840,53,960,75,1080,80C1200,85,1320,75,1380,69.3L1440,64L1440,120L1380,120C1320,120,1200,120,1080,120C960,120,840,120,720,120C600,120,480,120,360,120C240,120,120,120,60,120L0,120Z"); }
}

/* About Section Elegant */
.about-section-elegant {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.about-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 193, 7, 0.02) 0%, transparent 50%);
    background-size: 800px 800px, 600px 600px, 400px 400px;
    animation: patternFloat 30s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(1deg); }
    66% { transform: translate(-20px, 20px) rotate(-1deg); }
}

.about-content-wrapper {
    position: relative;
    z-index: 2;
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    gap: 2rem;
}

.about-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
    position: relative;
}

.about-divider::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin: 0;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.about-text-elegant {
    font-size: 1.25rem;
    line-height: 2.2;
    color: #34495e;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
}

.about-text-elegant::before {
    content: '"';
    font-size: 4rem;
    color: rgba(102, 126, 234, 0.2);
    position: absolute;
    top: -20px;
    left: -40px;
    font-family: Georgia, serif;
    font-weight: bold;
}

.about-text-elegant::after {
    content: '"';
    font-size: 4rem;
    color: rgba(102, 126, 234, 0.2);
    position: absolute;
    bottom: -40px;
    right: -40px;
    font-family: Georgia, serif;
    font-weight: bold;
}

/* CTA Section Modern */
.cta-section-modern {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-background-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(360deg); }
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border: none;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.6);
    background: linear-gradient(45deg, #c0392b, #a93226);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 13px 33px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-profile-image {
        width: 250px;
        height: 250px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .hero-section-modern {
        min-height: auto;
        padding: 140px 0 80px;
    }
    
    .about-section-elegant {
        padding: 80px 0;
    }
    
    .about-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-divider {
        width: 40px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-text-elegant {
        font-size: 1.1rem;
        line-height: 2;
        padding: 0 1rem;
    }
    
    .about-text-elegant::before,
    .about-text-elegant::after {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-name {
        font-size: 2rem;
    }
    
    .hero-profile-image {
        width: 200px;
        height: 200px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .about-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .about-text-elegant {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}