/* CSS Custom Properties */
:root {
    /* Colors */
    --primary-color: #00C6FB;
    --primary-dark: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #00C6FB;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --border-radius-sm: 0.25rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

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

a:hover {
    color: var(--primary-dark);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    border: none;
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(90deg, #00C6FB 0%, #005BEA 100%);
    border: none;
    color: #fff;
}

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

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--background-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: var(--background-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    padding: 80px 0 var(--spacing-3xl);
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-title {
    font-size: var(--font-size-5xl);
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
}

.hero-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 16px;
}

.hero-bg-svg,
section > svg {
    z-index: 0;
    pointer-events: none;
    position: absolute;
}

section > .container,
section > .container * {
    position: relative;
    z-index: 1;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-xl);
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-header h3 {
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* What We Do Section */
.what-we-do {
    background-image: url('../images/bg.png');
    background-repeat: repeat;
    background-size: contain;
    background-position: center;
    padding: var(--spacing-3xl) 0;
}

.what-we-do-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.what-we-do-text h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.feature-img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Features Section */
.features {
    padding: var(--spacing-3xl) 0;
    background-color: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
}

.feature-card {
    background-color: var(--background-white);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(90deg, #00C6FB 0%, #005BEA 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #fff;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature-card h4 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    line-height: 1.2;
}

/* About Section */
.about {
    padding: var(--spacing-3xl) 0 0 0;
    background-color: var(--background-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-text h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
}

.about-img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Contact Section */
.contact {
    padding: var(--spacing-3xl) 0;
    background-color: var(--background-light);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--spacing-3xl);
}

.contact-form {
    background-color: var(--background-white);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.contact-img {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: var(--background-white);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

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

.footer-logo-img {
    border-radius: 10px;
    height: 40px;
    width: auto;
}

.footer-section h4 {
    color: var(--background-white);
    margin-bottom: var(--spacing-lg);
}

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

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--text-light);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--background-white);
}

.footer-bottom {
    border-top: 1px solid var(--text-secondary);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--text-light);
}

.footer-logo-link span {
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
}

.footer-logo-link:hover span,
.footer-logo-link:focus span {
    color: #fff;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.header-logo-link .header-logo-text {
    color: #1e293b;
    font-weight: 600;
    font-size: 1.3em;
    letter-spacing: 0.01em;
    line-height: 1;
}

.header-logo-link svg {
    display: block;
}

.card-colorful {
    /* border: 2px solid #00C6FB; */
} 

/* Cookie Banner Styles */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #f6f9ff;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.07);
  border-radius: 18px 18px 0 0;
  padding: 0 0.5rem;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: inherit;
  font-size: 1rem;
  min-height: 72px;
  box-sizing: border-box;
  outline: none;
  border: none;
}
#cookie-banner:focus {
  outline: none;
  border: none;
}
/* --- Centered Cookie Banner Content --- */
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 16px;
  gap: 24px;
  text-align: center;
}
.cookie-banner-text {
  color: #222;
  line-height: 1.5;
  flex: 1 1 0%;
  text-align: center;
}
.cookie-policy-link {
  color: #005BEA;
  text-decoration: underline;
  font-weight: 500;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  justify-content: center;
  width: 100%;
  margin: 12px auto 0 auto;
}
.cookie-btn {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border 0.15s;
  outline: none;
}
.cookie-btn-accept {
  background: linear-gradient(90deg, #005BEA 0%, #00C6FB 100%);
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(0,198,251,0.08);
}
.cookie-btn-accept:focus {
  outline: 2px solid #005BEA;
}
.cookie-btn-decline {
  background: #fff;
  color: #005BEA;
  border: 2px solid #005BEA;
}
.cookie-btn-decline:focus {
  outline: 2px solid #00C6FB;
}
@media (max-width: 700px) {
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 8px;
  }
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
  #cookie-banner {
    border-radius: 0;
    min-height: unset;
  }
} 
@media (min-width: 701px) {
  .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
  }
  .cookie-banner-text {
    text-align: left;
  }
  .cookie-banner-buttons {
    /* Remove left alignment, keep centered */
    justify-content: center;
    width: auto;
    margin: 0 auto 0 auto;
  }
} 