:root {
  /* Core Branding Colors */
  --primary: #84bcdd;
  --primary-dark: #2c7bac;
  --primary-light: #A3D4EE;
  --secondary: #00E5D4;
  --accent: #FFC107;
  --dark: #000000;
  --light: #FFFFFF;
  --bg-light: #f1f2f4;
  --bg-white: #ffffff;

  /* Text Colors */
  --text-dark: #212121;
  --text-main: #424242;
  --text-medium: #555555;
  --text-light: #757575;
  --text-muted: rgba(255, 255, 255, 0.7);
  --text-white: #ffffff;
  --heading-color: var(--text-white);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #84bcdd 0%, #6BA4C5 100%);
  --gradient-secondary: linear-gradient(90deg, #212121 0%, #424242 100%);
  --gradient-hero: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  --gradient-cta: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
  --gradient-blue: linear-gradient(135deg, #3949ab, #5c6bc0);

  /* Layout & Spacing */
  --container-max-width: 1400px;
  --section-padding-large: 100px 0;
  --section-padding-medium: 80px 0;
  --section-padding-small: 50px 0;

  /* UI Elements */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-full: 50px;
  --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-text: 0 2px 4px rgba(0, 0, 0, 0.3);
  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
}

/* ================================
   footer.css
   Footer styles only (separated)
   ================================ */

footer {
    background: var(--dark);
    color: var(--text-white);
    padding: 100px 0 40px;
    position: relative;
}

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

/* Logo section */
.footer-logo {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .site-logo {
    width: 120px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-logo-text h3 {
    font-size: 26px;
    margin-bottom: 5px;
    color: white;
    font-weight: 900;
}

.footer-logo-text p {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* About */
.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--primary);
    font-weight: 800;
}

.footer-links ul {
    color: white;
    list-style: none;
}

.footer-links li {
     color: white;
    margin-bottom: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 16px;
}

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

/* Contact */
.footer-contact p {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* Social icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: 70px 0 30px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 20px;
    }
}

.address-link a{
    color: rgba(255, 255, 255, 0.9);
}