/*
Theme Name: CampusFlow Premium
Theme URI: https://campusflow.pl
Author: AI Assistant
Description: Nowoczesny motyw Glassmorphism dla CampusFlow przygotowany specjalnie pod WordPressa.
Version: 1.0
Text Domain: campusflow
*/
:root {
  --primary: #4f46e5;
  --primary-light: #818cf8;
  --secondary: #ec4899;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 12px;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: linear-gradient(-45deg, #f0fdfa, #e0e7ff, #fce7f3, #f3e8ff);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Glassmorphism utility */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow);
}

/* Header */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1280px;
  z-index: 100;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area img {
  height: 40px;
  border-radius: 50%;
}

.site-title {
  font-size: 1.5rem;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.main-nav a:hover {
  color: var(--text-dark);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-btn, .lang-btn {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-btn {
  width: 40px;
  color: var(--primary);
}

.lang-btn {
  padding: 0 16px;
  gap: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}

.search-btn:hover, .lang-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background: white;
}

/* Hero Section */
.hero {
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

.btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 25px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.7);
  color: var(--text-dark);
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.hero-visual {
  flex: 1.2;
  position: relative;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: all 0.5s ease;
}

.hero-visual:hover img {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.floating-badge {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Features Grid */
.features-section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

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

.feature-card {
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}

/* Showcase Section */
.showcase {
  padding: 100px 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.showcase-box {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.showcase-box.img-box {
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.showcase-box img {
  border-radius: var(--radius-lg);
  width: 100%;
  transition: transform 0.5s ease;
}

.showcase-box:hover img {
  transform: scale(1.03);
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(79, 70, 229, 0.1);
  color: var(--primary);
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.showcase-box h2 {
  font-size: 2.5rem;
  margin-bottom: 0;
}

.showcase-box p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* App Download section inside showcase */
.download-app {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.5);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.6);
}

.qr-wrapper {
  width: 180px;
  height: 180px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  flex-shrink: 0;
}

.qr-code {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Testimonial */
.testimonial {
  padding: 32px;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: 20px;
  right: 32px;
  font-size: 4rem;
  color: rgba(79, 70, 229, 0.1);
  font-family: serif;
  line-height: 1;
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #f472b6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

/* Footer */
.site-footer {
  margin-top: 100px;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-glass {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(30px);
  border-top: 1px solid rgba(255,255,255,0.5);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 300px;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
}

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

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content { flex-direction: column; text-align: center; }
  .hero-text p { margin: 0 auto 40px; }
  .hero-btns { justify-content: center; }
  .floating-badge { left: 20px; bottom: 20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .header-actions { gap: 8px; }
  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    padding: 0 20px;
  }
  .main-nav.active {
    max-height: 400px;
    opacity: 1;
    padding: 20px;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px 0;
  }
  .hero-text h1 { font-size: 3rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .site-title { display: none; }
  .lang-btn { font-size: 0; padding: 0 10px; }
  .lang-btn svg { display: none; }
  .header-actions { gap: 4px; }
}


/* Styles from preview-o-aplikacji.html */

        .page-header {
            padding: 160px 0 40px;
            text-align: center;
        }
        
        .section-title-box {
            background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.5);
            color: var(--primary);
            padding: 20px 40px;
            border-radius: 50px;
            display: inline-block;
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 30px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            font-family: 'Outfit', sans-serif;
        }

        .badges-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 60px;
        }

        .badge-box {
            border-radius: var(--radius-xl);
            padding: 40px 24px;
            text-align: center;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 240px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.5);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .badge-box::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.5s;
        }

        .badge-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
        }

        .badge-box:hover::before {
            opacity: 1;
        }

        .badge-number {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Outfit', sans-serif;
            position: relative;
            z-index: 1;
        }

        .badge-text {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-muted);
            position: relative;
            z-index: 1;
        }

        .grid-bento {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 80px;
        }

        .bento-left {
            padding: 50px;
            min-height: 400px;
            display: flex;
            align-items: flex-end;
            background: url('assets/images/ksiazki-baner.png') center/cover no-repeat !important;
            position: relative;
            overflow: hidden;
        }
        
        .bento-left::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
        }

        .bento-left .bento-title {
            position: relative;
            z-index: 2;
            color: white;
            font-size: 2.5rem;
        }

        .bento-right-wrapper {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .bento-box-small {
            padding: 40px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: transform 0.3s;
        }
        
        .bento-box-small:hover { transform: scale(1.02); }

        .bento-title {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 12px;
            font-family: 'Outfit', sans-serif;
        }

        .bento-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
        }

        .premium-section {
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(30px);
            border-radius: var(--radius-xl);
            padding: 60px;
            margin-bottom: 60px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
        }

        .premium-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 50px;
            font-family: 'Outfit', sans-serif;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .team-member {
            background: rgba(255,255,255,0.7);
            border-radius: var(--radius-lg);
            display: flex;
            padding: 20px;
            gap: 20px;
            color: var(--text-dark);
            box-shadow: 0 10px 20px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.5);
            align-items: center;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(79, 70, 229, 0.1);
            background: white;
        }

        .team-photo {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .team-info {
            flex: 1;
        }

        .team-name {
            font-weight: 800;
            font-size: 1.3rem;
            margin-bottom: 4px;
            font-family: 'Outfit', sans-serif;
        }

        @media (max-width: 900px) {
            .badges-container { grid-template-columns: repeat(2, 1fr); }
            .grid-bento { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: 1fr; }
        }
    
/* Styles from preview-uniwersytet.html */

        .page-header {
            padding: 160px 0 40px;
            text-align: center;
        }
        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 16px;
            color: var(--text-dark);
            font-family: 'Outfit', sans-serif;
        }
        .uni-subtitle {
            text-align: center;
            font-size: 2rem;
            font-weight: 800;
            margin: 0 0 50px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .uni-images {
            display: flex;
            gap: 32px;
            margin-bottom: 60px;
        }
        .uni-image-box {
            background: rgba(255,255,255,0.6);
            padding: 16px;
            border-radius: var(--radius-xl);
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            border: 1px solid rgba(255,255,255,0.5);
            backdrop-filter: blur(20px);
            transition: transform 0.4s ease;
            overflow: hidden;
        }
        .uni-image-box:hover {
            transform: translateY(-10px);
        }
        .uni-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--radius-lg);
            min-height: 350px;
        }
        .uni-map { flex: 2; }
        .uni-statue { flex: 1; }
        
        .uni-description {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(30px);
            padding: 60px;
            border-radius: var(--radius-xl);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            margin-bottom: 80px;
            border: 1px solid rgba(255,255,255,0.8);
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--text-muted);
            position: relative;
        }

        .uni-description::before {
            content: '🏛️';
            position: absolute;
            top: -30px;
            left: 50px;
            font-size: 4rem;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            width: 80px; height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        @media (max-width: 900px) {
            .uni-images { flex-direction: column; }
        }
    
/* Styles from preview-faq.html */

        .page-header {
            padding: 160px 0 60px;
            text-align: center;
        }
        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 16px;
            color: var(--text-dark);
        }
        .page-header p {
            font-size: 1.2rem;
            color: var(--text-muted);
        }
        .faq-section {
            max-width: 800px;
            margin: 0 auto 100px;
        }
        .faq-category-title {
            font-size: 1.5rem;
            font-family: 'Outfit', sans-serif;
            color: var(--primary);
            margin: 40px 0 20px;
            border-bottom: 2px solid rgba(79, 70, 229, 0.2);
            padding-bottom: 10px;
        }
        details {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: var(--radius-lg);
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        }
        details[open] {
            background: rgba(255, 255, 255, 0.85);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transform: translateY(-2px);
        }
        summary {
            padding: 24px;
            font-weight: 600;
            cursor: pointer;
            list-style: none;
            font-size: 1.1rem;
            color: var(--text-dark);
            position: relative;
            padding-right: 50px;
        }
        summary::-webkit-details-marker { display: none; }
        summary::after {
            content: '+';
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--primary);
            transition: transform 0.3s;
        }
        details[open] summary::after {
            transform: translateY(-50%) rotate(45deg);
        }
        .faq-content {
            padding: 0 24px 24px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .faq-footer {
            text-align: center;
            margin-top: 60px;
            padding: 30px;
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(236, 72, 153, 0.1));
        }
        .faq-footer a {
            color: var(--primary);
            font-weight: 700;
            font-size: 1.1rem;
        }
    
/* Styles from preview-kontakt.html */

        .page-header {
            padding: 160px 0 60px;
            text-align: center;
        }
        .page-header h1 {
            font-size: 3.5rem;
            margin-bottom: 16px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .page-header p {
            font-size: 1.2rem;
            color: var(--text-muted);
        }
        .contact-grid { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 32px; 
            margin-bottom: 100px; 
        }
        .contact-card {
            padding: 40px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .contact-card:hover { 
            transform: translateY(-8px); 
            box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
        }
        .contact-card h3 { 
            font-size: 1.6rem; 
            margin-bottom: 24px; 
            color: var(--text-dark); 
            display: flex; 
            align-items: center; 
            gap: 12px; 
        }
        .contact-card h3::before { 
            content: ''; 
            display: block; 
            width: 14px; 
            height: 14px; 
            background: linear-gradient(135deg, var(--primary), var(--secondary)); 
            border-radius: 50%; 
        }
        .contact-card p { 
            color: var(--text-muted); 
            line-height: 1.8; 
            margin-bottom: 16px; 
            font-size: 1.05rem;
        }
        .contact-card a { 
            color: var(--primary); 
            font-weight: 700; 
        }
        .contact-card a:hover { 
            text-decoration: underline; 
            color: var(--secondary); 
        }
        .social-links { 
            display: flex; 
            gap: 16px; 
            margin-top: 24px; 
        }
        .social-links a { 
            display: inline-block; 
            padding: 10px 24px; 
            background: rgba(255,255,255,0.7); 
            border-radius: 30px; 
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.5);
            color: var(--text-dark);
            transition: all 0.3s ease;
        }
        .social-links a:hover { 
            background: var(--primary); 
            color: white;
            text-decoration: none; 
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
        }
        @media (max-width: 768px) {
            .contact-grid { grid-template-columns: 1fr; }
        }
    
/* Styles from wrotce.html */

        .coming-soon-wrapper {
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px;
        }
        .coming-soon-box {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: var(--radius-xl);
            padding: 80px 40px;
            max-width: 600px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.05);
        }
        .coming-soon-icon {
            font-size: 5rem;
            margin-bottom: 24px;
            display: inline-block;
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .coming-soon-title {
            font-size: 3rem;
            margin-bottom: 16px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .coming-soon-text {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 32px;
        }
        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 32px;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .back-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
            color: white;
        }
    

