 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --primary: #6366f1;
      --secondary: #ec4899;
      --accent: #f59e0b;
      --dark: #0f172a;
      --darker: #020617;
      --light: #f8fafc;
      --gray: #64748b;
      --card-bg: #1e293b;
      --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--darker);
      color: var(--light);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Animated Background */
    .bg-animation {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      background: var(--darker);
      overflow: hidden;
    }

    .bg-animation::before {
      content: '';
      position: absolute;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                  radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
      animation: drift 20s ease-in-out infinite;
    }

    @keyframes drift {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      50% { transform: translate(-50px, -50px) rotate(180deg); }
    }

    /* Sakura Petals Falling Effect */
    .sakura-petals {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
      z-index: 9998;
    }

    .petal {
      position: absolute;
      top: -10%;
      font-size: 1.5rem;
      opacity: 0.7;
      animation: petal-fall linear infinite;
      will-change: transform;
    }

    @keyframes petal-fall {
      0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.7;
      }
      50% {
        transform: translateY(50vh) translateX(50px) rotate(180deg);
        opacity: 0.5;
      }
      100% {
        transform: translateY(110vh) translateX(0) rotate(360deg);
        opacity: 0.2;
      }
    }

    /* Individual petal styling with staggered animations */
    .petal:nth-child(1) { left: 5%; animation-duration: 12s; animation-delay: 0s; }
    .petal:nth-child(2) { left: 15%; animation-duration: 10s; animation-delay: 2s; }
    .petal:nth-child(3) { left: 25%; animation-duration: 14s; animation-delay: 1s; }
    .petal:nth-child(4) { left: 35%; animation-duration: 11s; animation-delay: 3s; }
    .petal:nth-child(5) { left: 45%; animation-duration: 13s; animation-delay: 0s; }
    .petal:nth-child(6) { left: 55%; animation-duration: 9s; animation-delay: 2s; }
    .petal:nth-child(7) { left: 65%; animation-duration: 12s; animation-delay: 1s; }
    .petal:nth-child(8) { left: 75%; animation-duration: 10s; animation-delay: 3s; }
    .petal:nth-child(9) { left: 85%; animation-duration: 14s; animation-delay: 0s; }
    .petal:nth-child(10) { left: 10%; animation-duration: 11s; animation-delay: 2s; }
    .petal:nth-child(11) { left: 40%; animation-duration: 13s; animation-delay: 1s; }
    .petal:nth-child(12) { left: 70%; animation-duration: 9s; animation-delay: 3s; }
    .petal:nth-child(13) { left: 20%; animation-duration: 12s; animation-delay: 0s; }
    .petal:nth-child(14) { left: 60%; animation-duration: 10s; animation-delay: 2s; }
    .petal:nth-child(15) { left: 90%; animation-duration: 14s; animation-delay: 1s; }

    .petal::before {
      content: "🌸";
    }

    /* Petal color variations */
    .petal:nth-child(3n+1)::before { filter: hue-rotate(0deg) brightness(1.1); }
    .petal:nth-child(3n+2)::before { filter: hue-rotate(10deg) brightness(0.9); }
    .petal:nth-child(3n)::before { filter: hue-rotate(-10deg) brightness(1); }

    /* Performance optimizations */
    @media (prefers-reduced-motion: reduce) {
      .petal {
        animation: none;
        opacity: 0;
      }
    }

    /* Hide some petals on mobile for performance */
    @media screen and (max-width: 768px) {
      .petal:nth-child(n+11) {
        display: none;
      }
    }

    /* Modern Navigation */
    nav {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      backdrop-filter: blur(20px);
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50px;
      padding: 8px 12px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 4px;
    }

    nav a {
      display: block;
      padding: 10px 20px;
      color: var(--light);
      text-decoration: none;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
    }

    nav a:hover {
      background: rgba(99, 102, 241, 0.2);
      color: #fff;
    }

    nav a.active {
      background: var(--gradient);
      color: #fff;
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 100px 20px 60px;
      position: relative;
    }

    .hero-content {
      text-align: center;
      max-width: 900px;
      animation: fadeInUp 1s ease-out;
    }

    .hero-image {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      margin: 0 auto 30px;
      border: 4px solid transparent;
      background: var(--gradient);
      padding: 4px;
      position: relative;
      overflow: hidden;
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      background: var(--card-bg);
    }

    .hero h1 {
      font-size: clamp(2.5rem, 8vw, 5rem);
      font-weight: 800;
      margin-bottom: 10px;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero h2 {
      font-size: clamp(1.2rem, 4vw, 2rem);
      font-weight: 600;
      color: var(--secondary);
      margin-bottom: 15px;
    }

    .hero p {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--gray);
      margin-bottom: 40px;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .form-card {
        max-width: 500px;
        background: var(--card-bg);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 32px;
        padding: 50px 40px;
        backdrop-filter: blur(20px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        margin: 0 auto; /* Center horizontally */
    }

    .form-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient);
    }

    .tools-content {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    /* Tools List */
    .tools-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    /* Tool Item */
    .tool-item {
      background: var(--card-bg);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 12px 16px;
      width: 250px;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .tool-item::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image:
      linear-gradient(90deg, rgba(99,102,241,0.07) 1px, transparent 1px),
      linear-gradient(180deg, rgba(99,102,241,0.07) 1px, transparent 1px);
      background-size: 32px 32px;
      pointer-events: none;
    }

    .tool-item > * {
      position: relative;
      z-index: 1;
    }

    .tool-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    /* Header */
    .form-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .form-header h1 {
      font-size: 2.5rem;
      font-weight: 700;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 10px;
    }

    .form-header p {
      color: var(--gray);
      font-size: 1rem;
    }

    /* Form Groups */
    .form-group {
      margin-bottom: 25px;
      position: relative;
    }

    label {
      display: block;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--light);
      margin-bottom: 8px;
      transition: color 0.3s ease;
    }

    .input-wrapper {
      position: relative;
    }

    input,
    textarea {
      width: 100%;
      padding: 16px 20px;
      background: rgba(255, 255, 255, 0.05);
      border: 2px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      color: var(--light);
      font-size: 1rem;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s ease;
      outline: none;
    }

    input:focus,
    textarea:focus {
      border-color: var(--primary);
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    }

    textarea {
      resize: vertical;
      min-height: 150px;
    }

    input::placeholder,
    textarea::placeholder {
      color: var(--gray);
    }

    /* Floating Petals in Input */
    .petal-decoration {
      position: absolute;
      font-size: 1rem;
      opacity: 0.3;
      pointer-events: none;
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-10px) rotate(180deg); }
    }

    .petal-decoration.petal-1 {
      top: 50%;
      right: 15px;
      animation-delay: 0s;
    }

    .petal-decoration.petal-2 {
      top: 30%;
      right: 20px;
      animation-delay: 1s;
    }

    /* Submit Button */
    .submit-btn {
      width: 100%;
      padding: 18px;
      background: var(--gradient);
      border: none;
      border-radius: 16px;
      color: white;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
    }

    .submit-btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .submit-btn:hover::before {
      width: 300px;
      height: 300px;
    }

    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
    }

    .submit-btn:active {
      transform: translateY(-1px);
    }

    .submit-btn:disabled {
      opacity: 0.6;
      cursor: not-allowed;
    }

    .submit-btn span {
      position: relative;
      z-index: 1;
    }

    .btn-icon {
      font-size: 1.2rem;
      position: relative;
      z-index: 1;
    }

    /* Loading Spinner */
    .spinner {
      display: inline-block;
      width: 20px;
      height: 20px;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      border-top-color: white;
      animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Alert Messages */
    .alert {
      padding: 16px 20px;
      border-radius: 12px;
      margin-bottom: 20px;
      display: none;
      align-items: center;
      gap: 12px;
      animation: slideIn 0.4s ease-out;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .alert.show {
      display: flex;
    }

    .alert-success {
      background: rgba(16, 185, 129, 0.15);
      border: 1px solid rgba(16, 185, 129, 0.3);
      color: var(--success);
    }

    .alert-error {
      background: rgba(239, 68, 68, 0.15);
      border: 1px solid rgba(239, 68, 68, 0.3);
      color: var(--error);
    }

    .alert-icon {
      font-size: 1.5rem;
    }

    /* Error Messages */
    .error-message {
      color: var(--error);
      font-size: 0.85rem;
      margin-top: 6px;
      display: none;
    }

    .error-message.show {
      display: block;
    }

    .form-group.error input,
    .form-group.error textarea {
      border-color: var(--error);
    }

    /* Responsive */
    @media (max-width: 600px) {
      .form-card {
        padding: 40px 25px;
        border-radius: 24px;
      }

      .form-header h1 {
        font-size: 2rem;
      }

      input,
      textarea {
        padding: 14px 18px;
      }

      .submit-btn {
        padding: 16px;
        font-size: 1rem;
      }
    }


    .tool-card {
      background: var(--card-bg);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 20px 30px;
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
      max-width: 250px; 
      gap: 5px;
      cursor: pointer;
    }

    .tool-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
      box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
    }

    /* Tools grid layout */
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      align-items: start;
      margin-top: 20px;
    }

    .tool-card {
      flex-direction: column;
      text-align: center;
      padding: 24px;
      gap: 12px;
      max-width: 320px;
      margin: 0 auto;
      text-decoration: none;
      color: inherit;
    }

    .tool-card .tool-img {
      width: 100%;
      max-width: 220px;
      border-radius: 12px;
      object-fit: cover;
    }

    .tool-card h3 {
      margin: 0;
      font-size: 1.05rem;
      font-weight: 600;
    }

    .tool-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .tool-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* Section Styles */
    section {
      padding: 80px 20px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-title {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 700;
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--gradient);
      border-radius: 2px;
    }

    /* Skills Section */
    .skills-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .skill-card {
      background: var(--card-bg);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 40px 30px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .skill-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--gradient);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .skill-card:hover::before {
      transform: scaleX(1);
    }

    .skill-card:hover {
      transform: translateY(-10px);
      border-color: var(--primary);
      box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
    }

    .skill-card h3 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .progress-bar {
      width: 100%;
      height: 12px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      overflow: hidden;
      margin-top: 15px;
    }

    .progress-fill {
      height: 100%;
      background: var(--gradient);
      border-radius: 10px;
      transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
      width: 0;
    }

    .skill-card.visible .progress-fill {
      width: var(--progress);
    }

    /* About Section */
    .about-content {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .about-image {
      width: 280px;
      height: 280px;
      margin: 0 auto 40px;
      border-radius: 24px;
      overflow: hidden;
      border: 4px solid transparent;
      background: var(--gradient);
      padding: 4px;
      box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
      position: relative;
    }

    .about-image::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .about-image:hover::after {
      opacity: 1;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
      background: var(--card-bg);
      transition: transform 0.3s ease;
    }

    .about-image:hover img {
      transform: scale(1.05);
    }

    .about-content h3 {
      font-size: 1.8rem;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .about-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--gray);
    }

    /* Portfolio Grid */
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .portfolio-item {
      background: var(--card-bg);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .portfolio-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
      border-color: var(--secondary);
    }

    .portfolio-image {
      width: 100%;
      height: 300px;
      background: rgba(255, 255, 255, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      padding: 20px;
    }

    .portfolio-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.4s ease;
    }

    .portfolio-item:hover .portfolio-image img {
      transform: scale(1.1);
    }

    .portfolio-label {
      padding: 25px;
      font-size: 1.2rem;
      font-weight: 600;
      text-align: center;
    }

    /* Contact Section */
    .contact-content {
      text-align: center;
      max-width: 600px;
      margin: 0 auto;
    }

    .contact-email {
      display: inline-block;
      font-size: 1.3rem;
      color: var(--primary);
      text-decoration: none;
      padding: 15px 35px;
      background: rgba(99, 102, 241, 0.1);
      border: 2px solid var(--primary);
      border-radius: 50px;
      margin: 30px 0;
      transition: all 0.3s ease;
    }

    .contact-email:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    }

    .social-links {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 30px;
    }

    .social-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--card-bg);
      border: 2px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .social-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .social-icon:hover {
      transform: translateY(-5px) rotate(5deg);
      border-color: var(--secondary);
      box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
    }

    /* Footer */
    footer {
      background: rgba(15, 23, 42, 0.8);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 30px 20px;
      text-align: center;
      color: var(--gray);
      margin-top: 80px;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in {
      opacity: 0;
      animation: fadeInUp 0.8s ease-out forwards;
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav {
        width: 95%;
        padding: 6px 8px;
      }

      nav a {
        padding: 8px 12px;
        font-size: 12px;
      }

      .hero {
        padding: 120px 20px 40px;
      }

      .tools-grid {
        gap: 15px;
      }

      .tool-card {
        padding: 15px 20px;
        flex-direction: column;
        gap: 10px;
      }

      .about-image {
        width: 220px;
        height: 220px;
      }

      section {
        padding: 60px 15px;
      }

      .portfolio-grid,
      .skills-grid {
        grid-template-columns: 1fr;
      }

      .social-links {
        flex-wrap: wrap;
      }
    }

    /* Modern Footer Styles */
    .footer {
      background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(2, 6, 23, 0.95) 100%);
      border-top: 1px solid rgba(99, 102, 241, 0.2);
      padding: 4rem 2rem 2rem;
      margin-top: 6rem;
      position: relative;
      overflow: hidden;
    }

    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
      pointer-events: none;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-section h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, #6366f1, #ec4899);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-section h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: var(--light);
    }

    .footer-section p {
      color: var(--gray);
      margin-bottom: 1rem;
      line-height: 1.8;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      color: var(--gray);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      position: relative;
    }

    .footer-links a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #6366f1, #ec4899);
      transition: width 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--light);
    }

    .footer-links a:hover::after {
      width: 100%;
    }

    /* Social Links */
    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
      flex-wrap: wrap;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(99, 102, 241, 0.1);
      color: var(--primary);
      transition: all 0.3s ease;
      border: 1px solid rgba(99, 102, 241, 0.2);
    }

    .social-icon svg {
      width: 20px;
      height: 20px;
    }

    .social-icon:hover {
      background: linear-gradient(135deg, #6366f1, #ec4899);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
      border-color: transparent;
    }

    /* Contact Info */
    .contact-info {
      color: var(--gray);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    .contact-info .label {
      display: block;
      font-weight: 600;
      color: var(--light);
      margin-bottom: 0.25rem;
    }

    .contact-info a {
      color: var(--primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-info a:hover {
      color: var(--secondary);
    }

    /* Footer Bottom */
    .footer-bottom {
      text-align: center;
    }

    .footer-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
      margin-bottom: 2rem;
    }

    .footer-credit {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
    }

    .footer-credit p {
      color: var(--gray);
      font-size: 0.9rem;
      margin: 0;
    }

    .footer-links-bottom {
      display: flex;
      align-items: center;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .footer-links-bottom a {
      color: var(--gray);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

    .footer-links-bottom a:hover {
      color: var(--primary);
    }

    .footer-links-bottom .divider {
      color: rgba(99, 102, 241, 0.3);
    }

    /* Footer Responsive */
    @media (max-width: 768px) {
      .footer {
        padding: 3rem 1.5rem 1.5rem;
        margin-top: 4rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .footer-credit {
        gap: 0.75rem;
      }

      .social-links {
        gap: 0.75rem;
      }
    }